Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to stable-rc-0.61 grimoire by Vlad Glagolev (b1ca4fa06cf976b1a5c7ad76424c3c5e622e8395)

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-rc-0.61 grimoire by Vlad Glagolev (b1ca4fa06cf976b1a5c7ad76424c3c5e622e8395)
  • Date: Sun, 18 Dec 2011 10:36:02 -0600

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

devel/guile/DEPENDS | 1 +
devel/guile/HISTORY | 3 +++
doc/epdfview/HISTORY | 4 ++++
doc/epdfview/PRE_BUILD | 4 ++++
gnome3-libs/gnome-shell/DEPENDS | 1 +
gnome3-libs/gnome-shell/HISTORY | 3 +++
http/seamonkey/DEPENDS | 3 ++-
http/seamonkey/HISTORY | 3 +++
net/tor/BUILD | 1 -
net/tor/CONFIGURE | 8 --------
net/tor/DEPENDS | 3 +++
net/tor/DETAILS | 4 ++--
net/tor/HISTORY | 7 +++++++
python-pypi/hatta/DEPENDS | 2 +-
python-pypi/hatta/HISTORY | 3 +++
15 files changed, 37 insertions(+), 13 deletions(-)

New commits:
commit b1ca4fa06cf976b1a5c7ad76424c3c5e622e8395
Author: Ladislav Hagara <hgr AT vabo.cz>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

gnome-shell needs pulseaudio

$ cleanse --nofix_quick gnome-shell
...
The following files from gnome-shell have missing library dependencies:
/usr/bin/gnome-shell
libpulsecommon-0.9.23.so => not found
libpulsecommon-0.9.23.so => not found
(cherry picked from commit 3db2e4a48cb6b7a946b11757d065e12eca34f8bb)

commit 90d38ca3cb0eeb3da2bed6baa3a4a0d002187619
Author: Justin Boffemmyer <flux AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

devel/guile: add libffi dependency

Guile depends on libffi, otherwise it fails configure:

checking for LIBFFI... configure: error: Package requirements (libffi)
were not met:

Adding libffi as a dependency fixes this problem.
(cherry picked from commit 802559d6dad22b4bb5d755be737e129fe61b2765)

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

hatta: needs sqlite support in python
(cherry picked from commit 68e42a6f3d296938b89cd43cef72c11ed6e445ea)

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

seamonkey: requires libnotify
(cherry picked from commit 73d06006e94fccac415701ee61a72584e502f182)

commit 57d107e017cd305462c51eb5b00b5f085716f3a8
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

doc/epdfview: added PRE_BUILD to fix compilation with new glib2
(cherry picked from commit fb0a952fa6b6c15c47aec707f9d7da271dcfa2d7)

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

tor: => 0.2.2.35 (security)
(cherry picked from commit 2d9bc661ebce70afaa95d780821eee2216dba017)

diff --git a/devel/guile/DEPENDS b/devel/guile/DEPENDS
index 249bc70..bb41f3c 100755
--- a/devel/guile/DEPENDS
+++ b/devel/guile/DEPENDS
@@ -1,4 +1,5 @@
depends gmp &&
depends libunistring &&
depends libgc &&
+depends libffi &&
depends libtool
diff --git a/devel/guile/HISTORY b/devel/guile/HISTORY
index bc4417f..bfbbf00 100644
--- a/devel/guile/HISTORY
+++ b/devel/guile/HISTORY
@@ -1,3 +1,6 @@
+2011-12-10 Justin Boffemmyer <flux AT sourcemage.org>
+ * DEPENDS: added libffi, fails to build without it
+
2011-10-23 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 2.0.3

diff --git a/doc/epdfview/HISTORY b/doc/epdfview/HISTORY
index 5f0d570..c1517f2 100644
--- a/doc/epdfview/HISTORY
+++ b/doc/epdfview/HISTORY
@@ -1,3 +1,7 @@
+2011-12-09 Pol Vinogradov <vin.public AT gmail.com>
+ * PRE_BUILD: readded for successful compilation
+ with new glib2
+
2011-06-02 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 0.1.8
* PRE_BUILD, mouse-wheel.patch: removed
diff --git a/doc/epdfview/PRE_BUILD b/doc/epdfview/PRE_BUILD
new file mode 100755
index 0000000..d5a4f4c
--- /dev/null
+++ b/doc/epdfview/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd ${SOURCE_DIRECTORY} &&
+
+sed -i "s:glib/gmacros.h:glib.h:" src/gtk/StockIcons.h
diff --git a/gnome3-libs/gnome-shell/DEPENDS b/gnome3-libs/gnome-shell/DEPENDS
index 8ec8405..b3f5d94 100755
--- a/gnome3-libs/gnome-shell/DEPENDS
+++ b/gnome3-libs/gnome-shell/DEPENDS
@@ -1,3 +1,4 @@
+depends pulseaudio &&
depends gtk+3 &&
depends gnome-themes-standard &&
depends network-manager &&
diff --git a/gnome3-libs/gnome-shell/HISTORY b/gnome3-libs/gnome-shell/HISTORY
index 55d5b65..65a153a 100644
--- a/gnome3-libs/gnome-shell/HISTORY
+++ b/gnome3-libs/gnome-shell/HISTORY
@@ -1,3 +1,6 @@
+2011-12-14 Ladislav Hagara <hgr AT vabo.cz>
+ * DEPENDS: pulseaudio added
+
2011-10-25 Tommy Boatman <tboatman AT sourcemage.org>
* DEPENDS: added clutter, libcanberra, mutter, folks, gnome-keyring
gjs, dbus-glib, startup-notification, librcoco
diff --git a/http/seamonkey/DEPENDS b/http/seamonkey/DEPENDS
index fb515bd..df37acb 100755
--- a/http/seamonkey/DEPENDS
+++ b/http/seamonkey/DEPENDS
@@ -13,7 +13,8 @@ depends zlib &&
depends libxt &&
depends dbus-glib &&
depends yasm &&
-depends autoconf-2.13
+depends autoconf-2.13 &&
+depends libnotify &&

if [[ "$SEAMONKEY_PANGO" == "y" ]]; then
depends pango
diff --git a/http/seamonkey/HISTORY b/http/seamonkey/HISTORY
index 20b9df9..73a07a1 100644
--- a/http/seamonkey/HISTORY
+++ b/http/seamonkey/HISTORY
@@ -1,3 +1,6 @@
+2011-11-09 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS: added missing dependency
+
2011-09-30 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 2.4.1, SECURITY_PATCH=36

diff --git a/net/tor/BUILD b/net/tor/BUILD
index 3115ab8..ec11f95 100755
--- a/net/tor/BUILD
+++ b/net/tor/BUILD
@@ -4,7 +4,6 @@ fi &&

OPTS="--with-tor-user=$TOR_USERGROUP \
--with-tor-group=$TOR_USERGROUP \
- $TOR_OPTS \
$OPTS" &&

default_build
diff --git a/net/tor/CONFIGURE b/net/tor/CONFIGURE
index 658fffc..f2d6fb3 100755
--- a/net/tor/CONFIGURE
+++ b/net/tor/CONFIGURE
@@ -1,9 +1 @@
-config_query_option TOR_OPTS 'Enable code for directories to collect
per-country statistics?' n \
- '--enable-geoip-stats' \
- '--disable-geoip-stats' &&
-
-config_query_option TOR_OPTS 'Enable iPhone support?' n \
- '--enable-iphone' \
- '--disable-iphone' &&
-
config_query_string TOR_USERGROUP 'Which user/group to use for tor?' 'tor'
diff --git a/net/tor/DEPENDS b/net/tor/DEPENDS
index da251f6..b1b9ae4 100755
--- a/net/tor/DEPENDS
+++ b/net/tor/DEPENDS
@@ -1,5 +1,8 @@
depends openssl &&
depends libevent &&
+
+optional_depends geoip "" "" "to collect per-country statistics" &&
+
suggest_depends socat '' '' 'more secure tunnel' &&
suggest_depends tsocks "" "" "to enable use of torify" &&
suggest_depends SYSTEM-LOGGER '' '' 'to enable logging to syslog'
diff --git a/net/tor/DETAILS b/net/tor/DETAILS
index e07d380..31961e9 100755
--- a/net/tor/DETAILS
+++ b/net/tor/DETAILS
@@ -4,8 +4,8 @@ if [ "$TOR_DEVEL" == "y" ]; then
VERSION=0.2.2.23-alpha
SECURITY_PATCH=4
else
- VERSION=0.2.2.34
- SECURITY_PATCH=5
+ VERSION=0.2.2.35
+ SECURITY_PATCH=6
fi

SOURCE=$SPELL-$VERSION.tar.gz
diff --git a/net/tor/HISTORY b/net/tor/HISTORY
index 938c35c..738df05 100644
--- a/net/tor/HISTORY
+++ b/net/tor/HISTORY
@@ -1,3 +1,10 @@
+2011-12-17 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 0.2.2.35; SECURITY_PATCH++ (CVE-2011-2778)
+ * CONFIGURE: removed deprecated (2010-02) IPhone option; switched to
+ geoip dependency
+ * DEPENDS: added geoip optional dependency
+ * BUILD: removed useless TOR_OPTS
+
2011-10-28 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 0.2.2.34; SECURITY_PATCH++ (CVE-2011-2768)

diff --git a/python-pypi/hatta/DEPENDS b/python-pypi/hatta/DEPENDS
index aadc3ed..97e7339 100755
--- a/python-pypi/hatta/DEPENDS
+++ b/python-pypi/hatta/DEPENDS
@@ -1,4 +1,4 @@
-depends python &&
+depends -sub SQLITE python &&
depends werkzeug &&
depends mercurial &&

diff --git a/python-pypi/hatta/HISTORY b/python-pypi/hatta/HISTORY
index 2d98b7b..acf834c 100644
--- a/python-pypi/hatta/HISTORY
+++ b/python-pypi/hatta/HISTORY
@@ -1,3 +1,6 @@
+2011-12-08 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS: needs python with sqlite support
+
2011-04-11 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 1.4.4




  • [SM-Commit] GIT changes to stable-rc-0.61 grimoire by Vlad Glagolev (b1ca4fa06cf976b1a5c7ad76424c3c5e622e8395), Vlad Glagolev, 12/18/2011

Archive powered by MHonArc 2.6.24.

Top of Page