Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (d37f9e98c93206dcf22750eda8f4c0873bbed710)

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 master grimoire by Vlad Glagolev (d37f9e98c93206dcf22750eda8f4c0873bbed710)
  • Date: Tue, 6 Jul 2010 07:06:15 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

chat-im/gajim/DETAILS | 1 +
chat-im/gajim/HISTORY | 5 +++++
chat-im/gajim/PRE_BUILD | 4 ++++
chat-im/gajim/py27.patch | 13 +++++++++++++
4 files changed, 23 insertions(+)

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

gajim: fixed crash with Python 2.7

diff --git a/chat-im/gajim/DETAILS b/chat-im/gajim/DETAILS
index 5b5795c..8534873 100755
--- a/chat-im/gajim/DETAILS
+++ b/chat-im/gajim/DETAILS
@@ -1,5 +1,6 @@
SPELL=gajim
VERSION=0.13.4
+ PATCHLEVEL=1
BRANCH=`echo $VERSION|cut -d . -f 1,2`
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE_URL[0]=http://www.gajim.org/downloads/$BRANCH/$SOURCE
diff --git a/chat-im/gajim/HISTORY b/chat-im/gajim/HISTORY
index 75bcc59..4d1b866 100644
--- a/chat-im/gajim/HISTORY
+++ b/chat-im/gajim/HISTORY
@@ -1,3 +1,8 @@
+2010-07-06 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: PATCHLEVEL=1
+ * PRE_BUILD: added, to apply patch
+ * py27.patch: added, fixed segfault with Python 2.7
+
2010-05-05 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: First SOURCE_URL is 0, not 1

diff --git a/chat-im/gajim/PRE_BUILD b/chat-im/gajim/PRE_BUILD
new file mode 100755
index 0000000..9e42183
--- /dev/null
+++ b/chat-im/gajim/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+
+patch -p0 < "$SPELL_DIRECTORY/py27.patch"
diff --git a/chat-im/gajim/py27.patch b/chat-im/gajim/py27.patch
new file mode 100644
index 0000000..db9f7e9
--- /dev/null
+++ b/chat-im/gajim/py27.patch
@@ -0,0 +1,13 @@
+--- src/gajim.py.orig 2010-03-28 13:35:54.000000000 +0400
++++ src/gajim.py 2010-07-06 15:58:22.356292703 +0400
+@@ -130,8 +130,8 @@
+
+ sys.stderr = MyStderr()
+
+-# PyGTK2.10+ only throws a warning
+-warnings.filterwarnings('error', module='gtk')
++# Don't make Gajim crash with Python 2.7
++# warnings.filterwarnings('error', module='gtk')
+ try:
+ import gtk
+ except Warning, msg:



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (d37f9e98c93206dcf22750eda8f4c0873bbed710), Vlad Glagolev, 07/06/2010

Archive powered by MHonArc 2.6.24.

Top of Page