Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (05b7de7821111b561e12601d37c758f0daad96ad)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (05b7de7821111b561e12601d37c758f0daad96ad)
  • Date: Tue, 4 Jun 2019 19:15:55 +0000

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

dev/null |binary
http/dillo/HISTORY | 3 +++
http/dillo/PRE_BUILD | 5 +++--
net/torsocks/DETAILS | 4 ++--
net/torsocks/HISTORY | 3 +++
video-libs/gstreamer-1.0/DEPENDS | 36 ++++++++++++++++++++----------------
video-libs/gstreamer-1.0/HISTORY | 3 +++
xorg-app/xgamma/DETAILS | 4 ++--
xorg-app/xgamma/HISTORY | 3 +++
9 files changed, 39 insertions(+), 22 deletions(-)

New commits:
commit 05b7de7821111b561e12601d37c758f0daad96ad
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

gstreamer-1.0: Fix meson options for dependencies

commit d347ed83bbcfafdece18bc070e7b9720e9d0c048
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

torsocks 2.3.0

commit 6f9c0471739fda71fbffad8cac820199c2c44aa1
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

dillo: Fix build against musl

commit 9af21d207bd96e76214b8e2b8f73c99102c20932
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

xgamma 1.0.6

diff --git a/http/dillo/HISTORY b/http/dillo/HISTORY
index 157fef2..a5d7d92 100644
--- a/http/dillo/HISTORY
+++ b/http/dillo/HISTORY
@@ -1,3 +1,6 @@
+2019-06-04 Ismael Luceno <ismael AT sourcemage.org>
+ * PRE_BUILD: Fixed build against musl
+
2015-07-10 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: updated spell to 3.0.5

diff --git a/http/dillo/PRE_BUILD b/http/dillo/PRE_BUILD
index 273f2ff..70ab668 100755
--- a/http/dillo/PRE_BUILD
+++ b/http/dillo/PRE_BUILD
@@ -1,5 +1,6 @@
default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
if [[ "$DILLO_CVS" == "y" ]]; then
- cd $SOURCE_DIRECTORY &&
./autogen.sh
-fi
+fi &&
+sedit 's!maybe_os in$!& linux-musl*|\\!' config.sub
diff --git a/net/torsocks/DETAILS b/net/torsocks/DETAILS
index 0a3935f..245cae9 100755
--- a/net/torsocks/DETAILS
+++ b/net/torsocks/DETAILS
@@ -1,8 +1,8 @@
SPELL=torsocks
- VERSION=2.1.0
+ VERSION=2.3.0
SOURCE="$SPELL-$VERSION.tar.gz"
SOURCE_URL[0]=https://github.com/dgoulet/$SPELL/archive/v$VERSION.tar.gz
-
SOURCE_HASH=sha512:5bdec6fd6c2d99effb73e418acd37ee135b3c912fad7811bfc8c724282370beea23149c6e94b995cfed0e61be43e63ac11d8c6ef420ba0137a19b96d8ac370e5
+
SOURCE_HASH=sha512:139f4cf60191632add8bc845b2d68d25a0285e9746988167d832e50cedb8083f2765571429d3a11350fa2d327a1ff0a0ead9b464dac90d897b13ab948f609114
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
WEB_SITE="https://gitweb.torproject.org/torsocks.git";
LICENSE[0]="GPLv2"
diff --git a/net/torsocks/HISTORY b/net/torsocks/HISTORY
index fcbb61f..6a093d6 100644
--- a/net/torsocks/HISTORY
+++ b/net/torsocks/HISTORY
@@ -1,3 +1,6 @@
+2019-06-04 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated spell to 2.3.0
+
2015-11-23 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: updated spell to 2.1.0

diff --git a/video-libs/gstreamer-1.0/DEPENDS
b/video-libs/gstreamer-1.0/DEPENDS
index 61072ed..c2ec90c 100755
--- a/video-libs/gstreamer-1.0/DEPENDS
+++ b/video-libs/gstreamer-1.0/DEPENDS
@@ -1,4 +1,4 @@
-depends ninja-build-system
+depends ninja-build-system &&
depends meson &&
depends glib2 &&
depends libxml2 &&
@@ -11,25 +11,29 @@ depends perl &&
# "--disable-valgrind" \
# "for better integration with valgrind" &&

-#optional_depends gettext \
-# "--enable-nls" \
-# "--disable-nls" \
-# "to use Native Language Support" &&
+optional_depends GETTEXT \
+ nls={enabled,disabled} \
+ "to use Native Language Support" &&

-optional_depends gtk-doc \
- "disable_gtkdoc=false" \
- "disable_gtkdoc=true" \
+optional_depends gtk-doc \
+ gtk_doc={enabled,disabled} \
"to build documentation" &&

-optional_depends gobject-introspection \
- "disable_introspection=false" \
- "disable_introspection=true" \
- "to enable introspection for this build" &&
-
if is_depends_enabled $SPELL gtk-doc; then
depends pyxml
fi &&
+
+optional_depends gobject-introspection \
+ introspection={enabled,disabled} \
+ "to enable introspection for this build" &&
+
+
optional_depends libunwind \
- "disable_libunwind=false" \
- "disable_libunwind=true" \
- "trace leaks"
+ libunwind={enabled,disabled} \
+ 'to generate backtraces' &&
+
+if is_depends_enabled $SPELL libunwind; then
+ optional_depends elfutils \
+ libdw={enabled,disabled} \
+ 'to generate better backtraces from libunwind'
+fi
diff --git a/video-libs/gstreamer-1.0/HISTORY
b/video-libs/gstreamer-1.0/HISTORY
index 2205380..0990e38 100644
--- a/video-libs/gstreamer-1.0/HISTORY
+++ b/video-libs/gstreamer-1.0/HISTORY
@@ -1,3 +1,6 @@
+2019-06-04 Ismael Luceno <ismael AT sourcemage.org>
+ * DEPENDS: Fixed meson options for dependencies
+
2019-04-19 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: version 1.16.0

diff --git a/xorg-app/xgamma/DETAILS b/xorg-app/xgamma/DETAILS
index 2f50510..7b8b182 100755
--- a/xorg-app/xgamma/DETAILS
+++ b/xorg-app/xgamma/DETAILS
@@ -1,7 +1,7 @@
SPELL=xgamma
- VERSION=1.0.3
+ VERSION=1.0.6
SOURCE=$SPELL-$VERSION.tar.bz2
- SOURCE_GPG="gurus.gpg:$SOURCE.sig:UPSTREAM_HASH"
+
SOURCE_HASH=sha512:2d41798e15ac8c6f6731a2da29589207d936eaee1223ce6f3ca948e67d63c5c8b955d11c7db092dcd8c66a6209bd15c1de3dc1446dad4b4277134f010c6fc47a

SOURCE_URL[0]=http://xorg.freedesktop.org/releases/individual/app/${SOURCE}
#
SOURCE_HASH=sha512:09e68810b137e941d855ac4618e3239a0ca608082d83f79ea9758f3ab794d629864698544865f9df7cd66a9204d821e66f7069369feec17ff08600df772e543e
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
diff --git a/xorg-app/xgamma/HISTORY b/xorg-app/xgamma/HISTORY
index ab9c3de..4b06f90 100644
--- a/xorg-app/xgamma/HISTORY
+++ b/xorg-app/xgamma/HISTORY
@@ -1,3 +1,6 @@
+2019-06-04 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated spell to 1.0.6
+
2009-10-13 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Updated to 1.0.3
SOURCE matches upstream posted MD5
diff --git a/xorg-app/xgamma/xgamma-1.0.3.tar.bz2.sig
b/xorg-app/xgamma/xgamma-1.0.3.tar.bz2.sig
deleted file mode 100644
index 5ee1683..0000000
Binary files a/xorg-app/xgamma/xgamma-1.0.3.tar.bz2.sig and /dev/null differ



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (05b7de7821111b561e12601d37c758f0daad96ad), Ismael Luceno, 06/04/2019

Archive powered by MHonArc 2.6.24.

Top of Page