r15702 - in /desktop/unstable/gnome-games/debian: changelog patches/01_el-po.patch patches/03_glchess_pythonpath.patch patches/series
joss at users.alioth.debian.org
joss at users.alioth.debian.org
Sat Apr 19 20:44:57 UTC 2008
Author: joss
Date: Sat Apr 19 20:44:57 2008
New Revision: 15702
URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=15702
Log:
03_glchess_pythonpath.patch: don't add the build time python path to
the run time python path. Brrr, that code is completely WTF.
Closes: #476877.
Added:
desktop/unstable/gnome-games/debian/patches/03_glchess_pythonpath.patch
Modified:
desktop/unstable/gnome-games/debian/changelog
desktop/unstable/gnome-games/debian/patches/01_el-po.patch
desktop/unstable/gnome-games/debian/patches/series
Modified: desktop/unstable/gnome-games/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-games/debian/changelog?rev=15702&op=diff
==============================================================================
--- desktop/unstable/gnome-games/debian/changelog (original)
+++ desktop/unstable/gnome-games/debian/changelog Sat Apr 19 20:44:57 2008
@@ -1,9 +1,12 @@
-gnome-games (1:2.22.1.1-2) UNRELEASED; urgency=low
+gnome-games (1:2.22.1.1-2) unstable; urgency=low
* 01_el-po.patch: stolen from upstream SVN. Fixes scrollkeeper
complaints. Closes: #474952.
-
- -- Josselin Mouette <joss at debian.org> Tue, 15 Apr 2008 21:05:02 +0200
+ * 03_glchess_pythonpath.patch: don't add the build time python path to
+ the run time python path. Brrr, that code is completely WTF.
+ Closes: #476877.
+
+ -- Josselin Mouette <joss at debian.org> Sat, 19 Apr 2008 22:46:23 +0200
gnome-games (1:2.22.1.1-1) unstable; urgency=low
Modified: desktop/unstable/gnome-games/debian/patches/01_el-po.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-games/debian/patches/01_el-po.patch?rev=15702&op=diff
==============================================================================
--- desktop/unstable/gnome-games/debian/patches/01_el-po.patch (original)
+++ desktop/unstable/gnome-games/debian/patches/01_el-po.patch Sat Apr 19 20:44:57 2008
@@ -1,17 +1,8 @@
---- trunk/blackjack/help/el/el.po 2008/03/20 16:36:21 7533
-+++ trunk/blackjack/help/el/el.po 2008/04/10 21:42:22 7617
-@@ -3,8 +3,8 @@
- msgid ""
- msgstr ""
- "Project-Id-Version: el\n"
--"POT-Creation-Date: 2008-03-16 07:41+0000\n"
--"PO-Revision-Date: 2008-03-20 18:26+0200\n"
-+"POT-Creation-Date: 2008-04-10 07:41+0000\n"
-+"PO-Revision-Date: 2008-04-10 18:26+0200\n"
- "Last-Translator: Kostas Papadimas <pkst at gnome.org>\n"
- "Language-Team: Greek <team at gnome.gr>\n"
- "MIME-Version: 1.0\n"
-@@ -374,7 +374,7 @@
+Index: gnome-games-2.22.1.1/blackjack/help/el/el.po
+===================================================================
+--- gnome-games-2.22.1.1.orig/blackjack/help/el/el.po 2008-04-08 22:35:52.000000000 +0200
++++ gnome-games-2.22.1.1/blackjack/help/el/el.po 2008-04-19 22:42:57.069899012 +0200
+@@ -374,7 +374,7 @@ msgstr "<guimenuitem>Î Ïοβολή γÏ
#: C/blackjack.xml:473(para)
msgid "<guimenuitem>Preferences…</guimenuitem>— This opens the <interface>Preferences Dialog</interface>, allowing you to configure the game."
Added: desktop/unstable/gnome-games/debian/patches/03_glchess_pythonpath.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-games/debian/patches/03_glchess_pythonpath.patch?rev=15702&op=file
==============================================================================
--- desktop/unstable/gnome-games/debian/patches/03_glchess_pythonpath.patch (added)
+++ desktop/unstable/gnome-games/debian/patches/03_glchess_pythonpath.patch Sat Apr 19 20:44:57 2008
@@ -1,0 +1,39 @@
+Index: gnome-games-2.22.1.1/glchess/src/glchess
+===================================================================
+--- gnome-games-2.22.1.1.orig/glchess/src/glchess 2008-04-19 22:44:02.993898441 +0200
++++ gnome-games-2.22.1.1/glchess/src/glchess 2008-04-19 22:44:22.817899160 +0200
+@@ -35,8 +35,6 @@ except ImportError:
+ # Import glChess from pyexecdir or system installation.
+ installed_mode = True
+ import sys
+- if "/usr/local/lib/python2.5/site-packages" not in sys.path:
+- sys.path.insert(0, "/usr/local/lib/python2.5/site-packages")
+ from glchess.glchess import start_game
+
+ except ImportError:
+Index: gnome-games-2.22.1.1/glchess/src/glchess.in
+===================================================================
+--- gnome-games-2.22.1.1.orig/glchess/src/glchess.in 2008-04-19 22:44:03.077898005 +0200
++++ gnome-games-2.22.1.1/glchess/src/glchess.in 2008-04-19 22:44:28.737895841 +0200
+@@ -35,8 +35,6 @@ except ImportError:
+ # Import glChess from pyexecdir or system installation.
+ installed_mode = True
+ import sys
+- if "#pyexecdir#" not in sys.path:
+- sys.path.insert(0, "#pyexecdir#")
+ from glchess.glchess import start_game
+
+ except ImportError:
+Index: gnome-games-2.22.1.1/glchess/src/glchess.in.in
+===================================================================
+--- gnome-games-2.22.1.1.orig/glchess/src/glchess.in.in 2008-04-19 22:44:03.165898307 +0200
++++ gnome-games-2.22.1.1/glchess/src/glchess.in.in 2008-04-19 22:44:32.701897011 +0200
+@@ -35,8 +35,6 @@ except ImportError:
+ # Import glChess from pyexecdir or system installation.
+ installed_mode = True
+ import sys
+- if "#pyexecdir#" not in sys.path:
+- sys.path.insert(0, "#pyexecdir#")
+ from glchess.glchess import start_game
+
+ except ImportError:
Modified: desktop/unstable/gnome-games/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-games/debian/patches/series?rev=15702&op=diff
==============================================================================
--- desktop/unstable/gnome-games/debian/patches/series (original)
+++ desktop/unstable/gnome-games/debian/patches/series Sat Apr 19 20:44:57 2008
@@ -1,2 +1,3 @@
01_el-po.patch
02_desktop-path.patch
+03_glchess_pythonpath.patch
More information about the pkg-gnome-commits
mailing list