Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to stable-0.62 grimoire by Vlad Glagolev (5929e63177a90b5677c95c7a29191f789c6c06ac)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to stable-0.62 grimoire by Vlad Glagolev (5929e63177a90b5677c95c7a29191f789c6c06ac)
  • Date: Fri, 8 Apr 2016 02:43:03 +0000

GIT changes to stable-0.62 grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

dev/null |binary
ftp/uget/BUILD | 2 ++
ftp/uget/CONFIGURE | 8 ++++++++
ftp/uget/DEPENDS | 14 ++++++++++----
ftp/uget/HISTORY | 5 +++++
graphics-libs/graphite2/DETAILS | 4 ++--
graphics-libs/graphite2/HISTORY | 7 +++++++
graphics/optipng/DETAILS | 7 +++----
graphics/optipng/HISTORY | 3 +++
python-pypi/django/DETAILS | 12 ++++++------
python-pypi/django/HISTORY | 4 ++++
video-libs/gst-libav-1.0/BUILD | 5 ++++-
video-libs/gst-libav-1.0/DEPENDS | 6 +++++-
video-libs/gst-libav-1.0/HISTORY | 4 ++++
14 files changed, 63 insertions(+), 18 deletions(-)

New commits:
commit 5929e63177a90b5677c95c7a29191f789c6c06ac
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

django: => 1.9.4 (stable) [regression]

(cherry picked from commit 2aad540f816c6c6d517d8cf86a55d5e1b1595a18)

commit 1015a5f3ed83e1f7ad8b6446bbced46db090bfa8
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

django: => 1.9.3 (stable), 1.4.22 (legacy) [security]

(cherry picked from commit de71b9e99d2928a0ae6a09675fbac65518201632)

commit a61f871dc2d55531375a9b866a87ff4bc506a7fb
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

optipng: => 0.7.6 [security]

(cherry picked from commit 18add023ef76b467e2f91918802feea0d922e251)

Conflicts:
graphics/optipng/DETAILS
graphics/optipng/HISTORY

commit eb3e7630a91bf023f101b0f2d82cce36788e8a98
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

uget: switched to flexible gstreamer dependencies

(cherry picked from commit 6b43808cc00dce2e040df4873641a2b2bc6c969d)

Conflicts:
ftp/uget/HISTORY

commit d3ab93730b700669a13519a213d11e1dd84cb3be
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

gst-libav-1.0: fixed dependencies & build with protected /tmp

(cherry picked from commit 163c7fc9b26bb190c0f77c5538456fffb1dac41d)

Conflicts:
video-libs/gst-libav-1.0/HISTORY

commit 8729f9c96661b35483aef8c7ed51af9a6ed4e4e5
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

graphite2: security update

(cherry picked from commit 34db1d21bf23fcd2e05a5452f1d15eb57fdd7e8e)

Conflicts:
graphics-libs/graphite2/DETAILS
graphics-libs/graphite2/HISTORY

commit 42188a3b436255de67e12ad0ca27a43862367fc4
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

graphics-libs/graphite2: version 1.3.7

(cherry picked from commit a8dbd81627eb3aad6505fc3a70b6e8a3303f37d1)

diff --git a/ftp/uget/BUILD b/ftp/uget/BUILD
index 981e094..6ff0f98 100755
--- a/ftp/uget/BUILD
+++ b/ftp/uget/BUILD
@@ -2,4 +2,6 @@ if is_depends_enabled $SPELL gnutls; then
LDFLAGS="-lgcrypt $LDFLAGS"
fi &&

+OPTS="$UGET_OPTS $OPTS" &&
+
default_build
diff --git a/ftp/uget/CONFIGURE b/ftp/uget/CONFIGURE
new file mode 100755
index 0000000..cbe8e2d
--- /dev/null
+++ b/ftp/uget/CONFIGURE
@@ -0,0 +1,8 @@
+local GSTREAMER_OPTIONS="gstreamer-1.0 gstreamer none" &&
+
+if spell_ok gstreamer-1.0; then
+ GSTREAMER_OPTIONS="gstreamer-1.0 none"
+fi &&
+
+config_query_list UGET_GSTREAMER "Choose an option for GStreamer audio
support:" \
+ $GSTREAMER_OPTIONS
diff --git a/ftp/uget/DEPENDS b/ftp/uget/DEPENDS
index 785a4ee..f62f222 100755
--- a/ftp/uget/DEPENDS
+++ b/ftp/uget/DEPENDS
@@ -21,10 +21,16 @@ optional_depends libnotify \
"--disable-notify" \
"for libnotify support" &&

-optional_depends gstreamer \
- "--enable-gstreamer" \
- "--disable-gstreamer" \
- "for GStreamer audio support" &&
+case $UGET_GSTREAMER in
+ none)
+ persistent_add UGET_OPTS &&
+
+ list_add UGET_OPTS '--disable-gstreamer'
+ ;;
+ gstreamer*)
+ depends $UGET_GSTREAMER '--enable-gstreamer'
+ ;;
+esac &&

optional_depends gettext \
"--enable-nls" \
diff --git a/ftp/uget/HISTORY b/ftp/uget/HISTORY
index c802090..b33c4b0 100644
--- a/ftp/uget/HISTORY
+++ b/ftp/uget/HISTORY
@@ -1,3 +1,8 @@
+2016-04-07 Vlad Glagolev <stealth AT sourcemage.org>
+ * CONFIGURE: added config options for gstreamer
+ * BUILD: use UGET_OPTS
+ * DEPENDS: switched to flexible gstreamer dependencies
+
2014-04-27 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 1.10.4; updated website
* DEPENDS: added gnutls optional dependency
diff --git a/graphics-libs/graphite2/DETAILS b/graphics-libs/graphite2/DETAILS
index f0013aa..800fd3c 100755
--- a/graphics-libs/graphite2/DETAILS
+++ b/graphics-libs/graphite2/DETAILS
@@ -1,9 +1,9 @@
SPELL=graphite2
- VERSION=1.3.5
+ VERSION=1.3.7
SECURITY_PATCH=1
SOURCE="${SPELL}-${VERSION}.tgz"
SOURCE_URL[0]=$SOURCEFORGE_URL/silgraphite/$SPELL/$SOURCE
-
SOURCE_HASH=sha512:70e85ff44d63dcca6beb55aa68966888453610c4ec1fca0d0986910a8f396ad64fd0b9f393270fd403c93e7e5d45cdc134c3965f47761cd40cd659b92b8abcec
+
SOURCE_HASH=sha512:163ac1455003398690b173f2ce56509bba1ae1e480585635888e3b061fef1ff8493c86f4647efde65ea10cd82b4048fcc8e882ea56811a8169956ad27bd10b8f
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
WEB_SITE="http://graphite.sil.org";
LICENSE[0]=LGPL
diff --git a/graphics-libs/graphite2/HISTORY b/graphics-libs/graphite2/HISTORY
index 942c66c..6140082 100644
--- a/graphics-libs/graphite2/HISTORY
+++ b/graphics-libs/graphite2/HISTORY
@@ -1,3 +1,10 @@
+2016-04-07 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: SECURITY_PATCH++ (skipped 1.3.6 was actually a security
+ update)
+
+2016-03-18 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
+ * DETAILS: version 1.3.7
+
2016-02-15 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: updated spell to 1.3.5, SECURITY_PATCH++

diff --git a/graphics-libs/graphite2/graphite2-1.2.0.tgz.sig
b/graphics-libs/graphite2/graphite2-1.2.0.tgz.sig
deleted file mode 100644
index b5931b9..0000000
Binary files a/graphics-libs/graphite2/graphite2-1.2.0.tgz.sig and /dev/null
differ
diff --git a/graphics/optipng/DETAILS b/graphics/optipng/DETAILS
index e1dbf94..5611b12 100755
--- a/graphics/optipng/DETAILS
+++ b/graphics/optipng/DETAILS
@@ -1,10 +1,9 @@
SPELL=optipng
- VERSION=0.7.5
- SECURITY_PATCH=2
- PATCHLEVEL=1
+ VERSION=0.7.6
+ SECURITY_PATCH=3
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
-
SOURCE_HASH=sha512:6f319965739235387e99244dda5f52533e22b7040301cf680180e383f24361819f66cb3adf1a90923e9509ed08d55bbe442ec363310c385fcf70f551febfbb6f
+
SOURCE_HASH=sha512:d31d7494c23413d87b601a706cc2faf82923156a818da66e0bfad11741aed065db8f1b0c088d2abd66899ac192408c05f594295ded2684c4549c5f03b140a184
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
WEB_SITE=http://optipng.sourceforge.net/
LICENSE[0]=ZLIB
diff --git a/graphics/optipng/HISTORY b/graphics/optipng/HISTORY
index ed09390..9233511 100644
--- a/graphics/optipng/HISTORY
+++ b/graphics/optipng/HISTORY
@@ -1,3 +1,6 @@
+2016-04-07 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 0.7.6; SECURITY_PATCH++
+
2014-04-27 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: PATCHLEVEL=1
* BUILD: fixed man directory
diff --git a/python-pypi/django/DETAILS b/python-pypi/django/DETAILS
index d69f652..a313eec 100755
--- a/python-pypi/django/DETAILS
+++ b/python-pypi/django/DETAILS
@@ -12,20 +12,20 @@ case "$DJANGO_BRANCH" in
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELLX}-scm"
;;
legacy)
- VERSION=1.4.21
- SECURITY_PATCH=6
+ VERSION=1.4.22
+ SECURITY_PATCH=7
SOURCE=${SPELLX}-${VERSION}.tar.gz
SOURCE_URL[0]=http://www.djangoproject.com/download/${VERSION}/tarball/
-
SOURCE_HASH=sha512:25fca8362fa30822a5993a2f1d00bc7629b97acfac97daa406fc7658019e35f52ecc539cc875a8ece3b1edb140fd5260e8dd3a355c9405b693d191746df516fa
+
SOURCE_HASH=sha512:03e833d95d8ffacf8cb753b8b8c15edc145830add322ad166c574a9a7428ed308082ffea7a73bcdb7315f489270fd84a38d1a8b12c090dfb9d68da5d281cef68
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELLX}-${VERSION}"
;;
# stable (also handled for `gaze')
stable|*)
- VERSION=1.9.2
- SECURITY_PATCH=1
+ VERSION=1.9.4
+ SECURITY_PATCH=2
SOURCE=${SPELLX}-${VERSION}.tar.gz
SOURCE_URL[0]=http://www.djangoproject.com/download/${VERSION}/tarball/
-
SOURCE_HASH=sha512:931fe067b366bf3868d1f66536b19f7dce4f3ea9e117e65175369ef2f625b925fedb6923aeb9bae94cb1887711951af30cac1c7992a984cdcbfd54fa0ef775e9
+
SOURCE_HASH=sha512:04fad81a135d3a43f19b3a01dbb6c2f97081fc53b3935489c6a6f456cd8b71b091bebfa7da7c83efa87eb01ca06e0973fcd71beae4669ff0338cf42ee930f173
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELLX}-${VERSION}"
;;
esac
diff --git a/python-pypi/django/HISTORY b/python-pypi/django/HISTORY
index 9194605..48ad099 100644
--- a/python-pypi/django/HISTORY
+++ b/python-pypi/django/HISTORY
@@ -1,3 +1,7 @@
+2016-04-07 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 1.9.4 (stable), 1.4.22 (legacy);
+ SECURITY_PATCH++
+
2016-02-24 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: version 1.9.2, SECURITY_PATCH++

diff --git a/video-libs/gst-libav-1.0/BUILD b/video-libs/gst-libav-1.0/BUILD
index 59b9173..1bf5da7 100755
--- a/video-libs/gst-libav-1.0/BUILD
+++ b/video-libs/gst-libav-1.0/BUILD
@@ -1,3 +1,6 @@
# need -Os to build
CFLAGS="$CFLAGS -Os" &&
-default_build
+
+check_tmp_noexec /tmp &&
+default_build &&
+check_tmp_noexec /tmp
diff --git a/video-libs/gst-libav-1.0/DEPENDS
b/video-libs/gst-libav-1.0/DEPENDS
index 3832fd7..c86a092 100755
--- a/video-libs/gst-libav-1.0/DEPENDS
+++ b/video-libs/gst-libav-1.0/DEPENDS
@@ -1,3 +1,7 @@
depends gstreamer-1.0 &&
depends gst-plugins-base-1.0 &&
-depends LIBAVCODEC '--with-system-libav'
+
+optional_depends LIBAVCODEC \
+ "--with-system-libav" \
+ "--without-system-libav" \
+ "to use system ffmpeg/libav"
diff --git a/video-libs/gst-libav-1.0/HISTORY
b/video-libs/gst-libav-1.0/HISTORY
index f31659a..cb97feb 100644
--- a/video-libs/gst-libav-1.0/HISTORY
+++ b/video-libs/gst-libav-1.0/HISTORY
@@ -1,3 +1,7 @@
+2016-04-07 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS: made LIBAVCODEC optional
+ * BUILD: added check_tmp_noexec()
+
2014-12-30 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 1.4.5




  • [SM-Commit] GIT changes to stable-0.62 grimoire by Vlad Glagolev (5929e63177a90b5677c95c7a29191f789c6c06ac), Vlad Glagolev, 04/07/2016

Archive powered by MHonArc 2.6.24.

Top of Page