New commits:
commit d5540de6cd6b3c7a8513c01d438f2b34059ff03c
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>
gnu-efi: => 3.0.2
commit be7e94aa4e7ec6e29c338962e0b21a02610bc0c4
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>
add missing Changelog entry
commit 7acd0608c607a9e11a978511fd02cf1c1a52f377
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>
libs/pcre: switched to gcc with CXX in *SUB_DEPENDS
commit 17b17b8086837ec41563c106b55a6db1c462b505
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>
ncmpcpp: => 0.6.4
commit d21b663522e567b9a5c1ac6f1efebab6299e7bdd
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>
database/mongodb: version 3.0.2
commit ce591c43583b3ef277fee6cf372d11a64ac05962
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>
gnu/gcc: fixed syntax error
commit e86cc22c6df6d76355c7c37facd2f2b4f2a411dc
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>
gnu/gcc: improved the major release change check
commit 62da8d84b965743a72d2cb449badafb539014c4a
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Thomas Orgis <sobukus AT sourcemage.org>
merge 25594fe12d6f1fa2e8f426973d96297ade45ee6c for fixing qt5_build
commit 7d2bfc48dea8ad2fc9982579bb50711d98be70b8
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>
mdp: => 0.7.4
commit 1d82c2c44f3995bcc5cf7ee4159ed2483d2e2131
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>
2015-05-02 Vlad Glagolev <stealth AT sourcemage.org>
* perl-cpan/archive-tar: spell deprecated, it's a part of perl now
@@ -25,6 +26,9 @@
2015-04-30 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* graphics-libs/glfw: new spell, an event loop for OpenGL contexts
+2015-04-29 Treeve Jelbert <treeve AT sourcemage.org>
+ * FUNCTIONS: fix qt5_build
+
2015-04-27 Pavel Vinogradov <public AT sourcemage.org>
* http/webkitfltk: new spell, FLTK port of WebKit
* libs/urlmatch: new spell, URL Matcher library
diff --git a/audio-players/ncmpcpp/DETAILS b/audio-players/ncmpcpp/DETAILS
index 1b526d9..007e388 100755
--- a/audio-players/ncmpcpp/DETAILS
+++ b/audio-players/ncmpcpp/DETAILS
@@ -1,8 +1,8 @@
SPELL=ncmpcpp
- VERSION=0.6.3
+ VERSION=0.6.4
SOURCE="${SPELL}-${VERSION}.tar.bz2"
SOURCE_URL[0]=http://ncmpcpp.rybczak.net/stable/${SOURCE}
-
SOURCE_HASH=sha512:c3d05376bed2e0161f25ab6a491f46a568f0021f4003a3300423920b6b65d8ef3ace37daf1024db87054cfee4e92dd66bb57e5f705ee1bdfa55a142e442ff4f0
+
SOURCE_HASH=sha512:c60a6c2c89a9297d73360ec8819e8ae66ca53090c5ea5d3daf235e708467ee20006b1fff344c9312ccb0941c8307f3d84bcdc9cbf500955c74b10bd6a823c19f
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
WEB_SITE=http://ncmpcpp.rybczak.net/
LICENSE[0]=GPL
diff --git a/audio-players/ncmpcpp/HISTORY b/audio-players/ncmpcpp/HISTORY
index 5f7d870..f354b16 100644
--- a/audio-players/ncmpcpp/HISTORY
+++ b/audio-players/ncmpcpp/HISTORY
@@ -1,3 +1,6 @@
+2015-05-03 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 0.6.4
+
2015-04-27 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 0.6.3; updated source url, website,
descriptions
diff --git a/database/mongodb/BUILD b/database/mongodb/BUILD
index 73c97d7..e66ead0 100755
--- a/database/mongodb/BUILD
+++ b/database/mongodb/BUILD
@@ -4,15 +4,6 @@ if ! list_find "$LDFLAGS" "-s"; then
OPTS="--nostrip $OPTS"
fi &&
diff --git a/gnu/gcc/HISTORY b/gnu/gcc/HISTORY
index 2b59ff1..c588a02 100644
--- a/gnu/gcc/HISTORY
+++ b/gnu/gcc/HISTORY
@@ -1,3 +1,7 @@
+2015-05-03 Pavel Vinogradov <public AT sourcemage.org>
+ * UP_TRIGGERS: improved the major release change check, fixed
+ syntax error
+
2015-05-02 Pavel Vinogradov <public AT sourcemage.org>
* UP_TRIGGERS: added clumsy migration mechanism for C++ ABI
changes on major version update
diff --git a/gnu/gcc/UP_TRIGGERS b/gnu/gcc/UP_TRIGGERS
index dfe1d7a..a3ef25a 100755
--- a/gnu/gcc/UP_TRIGGERS
+++ b/gnu/gcc/UP_TRIGGERS
@@ -10,10 +10,11 @@ if [ "$VERSION" != "$OLD_SPELL_VERSION" ]; then
done &&
# for C++ ABI change in 5.1 and, probably, for each major version change
too
- if [[ ${OLD_SPELL_VERSION:0:1} != ${VERSION:0:1} ]]; then
+ if [[ ${OLD_SPELL_VERSION%%.*} != ${VERSION%%.*} ]]; then
for each in $(grep "gcc:CXX" "$SUB_DEPENDS_STATUS" | cut -f1 -d:); do
if spell_ok $each; then
up_trigger $each cast_self
+ fi
done
fi
fi
diff --git a/libs/pcre/HISTORY b/libs/pcre/HISTORY
index 80a3f21..0c93821 100644
--- a/libs/pcre/HISTORY
+++ b/libs/pcre/HISTORY
@@ -1,3 +1,6 @@
+2015-05-04 Pavel Vinogradov <public AT sourcemage.org>
+ * *SUB_DEPENDS: g++ -> gcc with CXX
+
2015-05-03 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 8.37
* PRE_BUILD, cve-2014-8964.patch: deleted, already included
diff --git a/libs/pcre/PRE_SUB_DEPENDS b/libs/pcre/PRE_SUB_DEPENDS
index 7236d16..1763f0e 100755
--- a/libs/pcre/PRE_SUB_DEPENDS
+++ b/libs/pcre/PRE_SUB_DEPENDS
@@ -3,6 +3,6 @@ case "$THIS_SUB_DEPENDS" in
then return 0; else return 1; fi ;;
UTFPROP) if [[ $BUILDUTF == y ]] &&
[[ $UTFPROPERTIES == y ]]; then return 0; else return 1; fi ;;
- CPP) is_depends_enabled $SPELL g++ ;;
+ CPP) is_depends_enabled $SPELL gcc ;;
*) echo "bogus sub_depends: pcre $THIS_SUB_DEPENDS"; return 1;;
esac
diff --git
a/libs/pcre/REPAIR^f759b166c7ff34012ab85e9c6742315f^PRE_SUB_DEPENDS
b/libs/pcre/REPAIR^f759b166c7ff34012ab85e9c6742315f^PRE_SUB_DEPENDS
index 3e15cf5..ca784db 100755
--- a/libs/pcre/REPAIR^f759b166c7ff34012ab85e9c6742315f^PRE_SUB_DEPENDS
+++ b/libs/pcre/REPAIR^f759b166c7ff34012ab85e9c6742315f^PRE_SUB_DEPENDS
@@ -1,6 +1,6 @@
case "$THIS_SUB_DEPENDS" in
UTFPROP) if [[ $BUILDUTF8 == y ]] &&
[[ $UTFPROPERTIES == y ]]; then return 0; else return 1; fi ;;
- CPP) is_depends_enabled $SPELL g++ ;;
+ CPP) is_depends_enabled $SPELL gcc ;;
*) echo "bogus sub_depends: pcre $THIS_SUB_DEPENDS"; return 1;;
esac
diff --git a/libs/pcre/SUB_DEPENDS b/libs/pcre/SUB_DEPENDS
index 0d72a16..70419a1 100755
--- a/libs/pcre/SUB_DEPENDS
+++ b/libs/pcre/SUB_DEPENDS
@@ -5,6 +5,6 @@ case "$THIS_SUB_DEPENDS" in
BUILDUTF=y &&
UTFPROPERTIES=y &&
persistent_add UTFPROPERTIES ;;
- CPP) depends g++ "--enable-cpp" ;;
+ CPP) depends -sub CXX gcc "--enable-cpp" ;;
*) echo "bogus sub_depends: pcre $THIS_SUB_DEPENDS"; return 1;;
esac
diff --git a/python-pypi/mercurial/DETAILS b/python-pypi/mercurial/DETAILS
index 437e116..b46aaa3 100755
--- a/python-pypi/mercurial/DETAILS
+++ b/python-pypi/mercurial/DETAILS
@@ -1,7 +1,7 @@
SPELL=mercurial
- VERSION=3.3.3
+ VERSION=3.4
SECURITY_PATCH=1
-
SOURCE_HASH=sha512:bea215b0bd9e8603ade019f01ae0600dd1d1ad77675b38b5e13d86c43dd2c58b6c86c252517f0fcab6444c171e9f53537e4e170739c991ac08a1111169fe545d
+
SOURCE_HASH=sha512:a61b0d4cf528136991243bb23ac972c11c50ab5681d09f8b2d12cf7d37d3a9d76262f7fe6e7a1834bf6d03e8dc0ebbd9231da982e049e09830341dabefe5d064
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_URL[0]=http://mercurial.selenic.com/release/$SOURCE
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
diff --git a/python-pypi/mercurial/HISTORY b/python-pypi/mercurial/HISTORY
index c4da384..e2859f5 100644
--- a/python-pypi/mercurial/HISTORY
+++ b/python-pypi/mercurial/HISTORY
@@ -1,3 +1,6 @@
+2015-05-03 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 3.4
+
2015-04-03 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 3.3.3; don't do useless doc-ing