Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to stable-0.42 grimoire by Eric Sandall (98b347c0e3f15648afe7ea79b961ad83e983836e)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to stable-0.42 grimoire by Eric Sandall (98b347c0e3f15648afe7ea79b961ad83e983836e)
  • Date: Tue, 30 Mar 2010 00:25:56 -0500

GIT changes to stable-0.42 grimoire by Eric Sandall <sandalle AT sourcemage.org>:

VERSION | 2 +-
collab/openldap/HISTORY | 4 ++++
collab/openldap/UP_TRIGGERS | 4 ++++
php-pear/php/DEPENDS | 7 +++++--
php-pear/php/HISTORY | 3 +++
ruby-raa/ruby-1.8/BUILD | 2 +-
ruby-raa/ruby-1.8/DETAILS | 8 ++++----
ruby-raa/ruby-1.8/HISTORY | 3 +++
utils/bonnie++/DETAILS | 4 ++--
utils/bonnie++/HISTORY | 3 +++
x11-toolkits/pygtk2/BUILD | 4 +++-
x11-toolkits/pygtk2/DETAILS | 4 ++--
x11-toolkits/pygtk2/HISTORY | 4 ----
13 files changed, 35 insertions(+), 17 deletions(-)

New commits:
commit 98b347c0e3f15648afe7ea79b961ad83e983836e
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

VERSION: 0.42-1

commit 78be9bcc845e3c9591870f04514ddc7ea9d8fe14
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

ruby-1.8: => 1.8.7-p249 [security update]
(cherry picked from commit 41e7561970afaf7f97d7014b6eed94d7263c67c1)

commit 546fe99f34b1d594e38781b95eeb0f38fb68d076
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

openldap: recast curl on every openldap update

commit e10882d3f791ef4a4d830d94747c1b2f1d3cb5b9
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

php: corrected libsasl dependency with openldap

commit 5b8c5df8f987f22f3ddba92939249c82d7744740
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

Revert "pygtk2: => 2.17.0"

This reverts commit 6c4d19fb1621b032304deb33f65aeb60c277678e.

Gajim has been crashing all the time since pygtk2 was updated to DEVEL
version.

Okay, one more time. IF YOU WANT IT TO BE INSTALLED, CREATE THE DEVEL
BRANCH.

QUOTE FROM PYGTK.ORG:

> PyGTK 2.17.0 released
> Saturday 26 December 2009 by Gian Mario Tagliaretti
> PyGTK 2.17.0 is the first release in the 2.17.x series. It's unstable,
so it should be used with caution. As usual, it's sources can be fetched
here. Check out the release announcement and full list of changes.

PLEASE DON'T FORCE _DEVEL_ VERSIONS OF SOFTWARE.

NOW UNSTABLE VERSION OF THIS IS IN STABLE GRIMOIRE, BLEH!
(cherry picked from commit dddf7d4c94e23099a329b02431c3b287f2c4e4bb)

commit 0001a6bb10bef28d79a187e62202d4a4b2576a7c
Author: David Kowis <dkowis AT shlrm.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

bonnie++: updating version so it can be used
(cherry picked from commit 19cc35b097a05e8b4cbfeaa3a2bdc0575743ae80)

diff --git a/VERSION b/VERSION
index 2bf18f5..0fc2eb9 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.42-0
+0.42-1
diff --git a/collab/openldap/HISTORY b/collab/openldap/HISTORY
index 3801f7f..ba04056 100644
--- a/collab/openldap/HISTORY
+++ b/collab/openldap/HISTORY
@@ -1,3 +1,7 @@
+2010-03-19 Vlad Glagolev <stealth AT sourcemage.org>
+ * UP_TRIGGERS: added cast_self for curl, if curl had been selected
with
+ openldap support
+
2009-12-24 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated release to 2.4.21

diff --git a/collab/openldap/UP_TRIGGERS b/collab/openldap/UP_TRIGGERS
index 934bc31..7c79804 100755
--- a/collab/openldap/UP_TRIGGERS
+++ b/collab/openldap/UP_TRIGGERS
@@ -10,3 +10,7 @@ if [ "${VERSION:0:3}" != "${OLD_SPELL_VERSION:0:3}" ]; then
fi
done
fi
+
+if spell_ok curl && is_depends_enabled curl $SPELL; then
+ up_trigger curl cast_self
+fi
diff --git a/php-pear/php/DEPENDS b/php-pear/php/DEPENDS
index 057a9ce..74772a0 100755
--- a/php-pear/php/DEPENDS
+++ b/php-pear/php/DEPENDS
@@ -181,11 +181,14 @@ optional_depends openldap \
"--with-ldap" "--without-ldap" \
"for LDAP support" &&

-if list_find "${PHP5_OPTS}" "--with-ldap"; then
+if is_depends_enabled $SPELL openldap; then
optional_depends LIBSASL \
"--with-ldap-sasl" "--without-ldap-sasl" \
"for LDAP with Cyrus SASL support" &&
- depends -sub openldap SASL
+
+ if list_find "${PHP5_OPTS}" "--with-ldap-sasl"; then
+ depends -sub openldap SASL
+ fi
fi &&

optional_depends mm \
diff --git a/php-pear/php/HISTORY b/php-pear/php/HISTORY
index 55b0108..1684814 100644
--- a/php-pear/php/HISTORY
+++ b/php-pear/php/HISTORY
@@ -1,3 +1,6 @@
+2010-03-19 Vlad Glagolev <stealth AT sourcemage.org>
+ * DEPENDS: corrected libsasl dependency for openldap
+
2010-01-19 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated legacy to 5.2.12, SECURITY_PATCH++
* BUILD, CONFIGURE, DEPENDS: apache and cgi sapis are mutually
exclusive
diff --git a/ruby-raa/ruby-1.8/BUILD b/ruby-raa/ruby-1.8/BUILD
index 2789a74..c78087c 100755
--- a/ruby-raa/ruby-1.8/BUILD
+++ b/ruby-raa/ruby-1.8/BUILD
@@ -1,3 +1,3 @@
-OPTS="$OPTS --enable-shared --enable-pthread" &&
+OPTS="$OPTS --enable-shared --enable-pthread" &&
CFLAGS="${CFLAGS/-fomit-frame-pointer/}" &&
default_build
diff --git a/ruby-raa/ruby-1.8/DETAILS b/ruby-raa/ruby-1.8/DETAILS
index ac86787..a225335 100755
--- a/ruby-raa/ruby-1.8/DETAILS
+++ b/ruby-raa/ruby-1.8/DETAILS
@@ -1,12 +1,12 @@
SPELL=ruby-1.8
PACKAGE=ruby
- VERSION=1.8.7-p174
+ VERSION=1.8.7-p249
SOURCE=$PACKAGE-$VERSION.tar.bz2
-
SOURCE_HASH=sha512:183994aab4a75ca74676c20b850a63b365634c35d02378be006cf28def3efe33b7894720fa160d794086c3405b76344f7fff166e955d53a50274fe414c9181b1
- SECURITY_PATCH=6
+
SOURCE_HASH=sha512:106a6ffdd9b3d646b900294a8f20af084204ee6051255a593d155a984adde897a2195b9fa32171cd834d7e11d8ffedd28f5c96cb0a73fc0af134148da07f4686
+ SECURITY_PATCH=7
SOURCE_URL[0]=ftp://ftp.ruby-lang.org/pub/ruby/stable/$SOURCE
SOURCE_URL[1]=ftp://www.ibiblio.org/pub/languages/ruby/$SOURCE
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$PACKAGE-$VERSION
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$PACKAGE-$VERSION"
LICENSE[0]=GPL
KEYWORDS="devel"
WEB_SITE=http://www.ruby-lang.org/
diff --git a/ruby-raa/ruby-1.8/HISTORY b/ruby-raa/ruby-1.8/HISTORY
index fda24d5..323c0da 100644
--- a/ruby-raa/ruby-1.8/HISTORY
+++ b/ruby-raa/ruby-1.8/HISTORY
@@ -1,3 +1,6 @@
+2010-03-20 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 1.8.7-p249; SECURITY_PATCH++; quoting
paths
+
2010-02-25 Remko van der Vossen <wich AT sourcemage.org>
* BUILD, CONFIGURE, DEPENDS, DETAILS, INSTALL: copied from ruby
* CONFIGURE: use RUBY_DOC var from original ruby spell as default
diff --git a/utils/bonnie++/DETAILS b/utils/bonnie++/DETAILS
index f831804..3eb5630 100755
--- a/utils/bonnie++/DETAILS
+++ b/utils/bonnie++/DETAILS
@@ -1,7 +1,7 @@
SPELL=bonnie++
- VERSION=1.03a
+ VERSION=1.03e
SOURCE=$SPELL-$VERSION.tgz
-
SOURCE_HASH=sha512:d45e79576f3c902a3f909995c131d072cd8af7296c34eac617d7582c960f41fe9d69258873080759a59930e34c6849787476ff9e39cf0feb024ec04a6965dab7
+
SOURCE_HASH=sha512:7ddb3ab9687acf1685497c6cd823c10501d282f192358ac26038e259bb5e35d2ac9fe666a3d5aa33949cd62919fcb6f05b38ecf97a195bf46b5b23b3a0025122
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=http://www.coker.com.au/bonnie++/$SOURCE
WEB_SITE=http://www.coker.com.au/bonnie++
diff --git a/utils/bonnie++/HISTORY b/utils/bonnie++/HISTORY
index 7852cd6..34ebfa3 100644
--- a/utils/bonnie++/HISTORY
+++ b/utils/bonnie++/HISTORY
@@ -1,3 +1,6 @@
+2010-03-22 David Kowis <dkowis AT shlrm.org>
+ * DETAILS: version to 1.03e now it builds
+
2006-06-28 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Removed BUILD_API=2, set grimoire-wide

diff --git a/x11-toolkits/pygtk2/BUILD b/x11-toolkits/pygtk2/BUILD
index 52d9658..c48a3c9 100755
--- a/x11-toolkits/pygtk2/BUILD
+++ b/x11-toolkits/pygtk2/BUILD
@@ -1,2 +1,4 @@
OPTS="$OPTS --enable-thread" &&
-default_build
+make_single &&
+default_build &&
+make_normal
diff --git a/x11-toolkits/pygtk2/DETAILS b/x11-toolkits/pygtk2/DETAILS
index 9edccaa..28123ca 100755
--- a/x11-toolkits/pygtk2/DETAILS
+++ b/x11-toolkits/pygtk2/DETAILS
@@ -1,6 +1,6 @@
SPELL=pygtk2
- VERSION=2.17.0
-
SOURCE_HASH=sha512:651ae43f82c894e49f05482f23fcfd85ae41adbc0ec0b9c8fca9a2f890e3434e230a3f7c7d8b178ffed49f16924f5ca75c0e84ffeac156c198edcc33da54273f
+ VERSION=2.16.0
+
SOURCE_HASH=sha512:5fc2efda34676142e643c81b93a110ce080a6967612ff10404e94dc2e1ea5c286efcbac40c119d45c7e7f7a3c69ebbf5f4f5cae679e2f5f03131fc864467cd6a
BRANCH=`echo $VERSION|cut -d . -f 1,2`
SOURCE=pygtk-$VERSION.tar.bz2
SOURCE_DIRECTORY="$BUILD_DIRECTORY/pygtk-$VERSION"
diff --git a/x11-toolkits/pygtk2/HISTORY b/x11-toolkits/pygtk2/HISTORY
index 0b13b3f..ed6a4a7 100644
--- a/x11-toolkits/pygtk2/HISTORY
+++ b/x11-toolkits/pygtk2/HISTORY
@@ -1,7 +1,3 @@
-2010-01-28 Treeve Jelbert <treeve AT sourcemage.org>
- * DETAILS: version 2.17.0
- * BUILD: remove make_single
-
2009-08-24 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 2.16.0




  • [SM-Commit] GIT changes to stable-0.42 grimoire by Eric Sandall (98b347c0e3f15648afe7ea79b961ad83e983836e), Eric Sandall, 03/30/2010

Archive powered by MHonArc 2.6.24.

Top of Page