[Python-modules-commits] r6601 - in packages/soya/trunk/debian (5 files)

bernat at users.alioth.debian.org bernat at users.alioth.debian.org
Sat Sep 27 14:11:01 UTC 2008


    Date: Saturday, September 27, 2008 @ 14:10:59
  Author: bernat
Revision: 6601

Depends on python-elementtree and add a patch to be able to use
elementtree from Python 2.5 (Closes: #500368).    

Added:
  packages/soya/trunk/debian/patches/elementtree
Modified:
  packages/soya/trunk/debian/changelog
  packages/soya/trunk/debian/control
  packages/soya/trunk/debian/control.in
  packages/soya/trunk/debian/patches/series

Modified: packages/soya/trunk/debian/changelog
===================================================================
--- packages/soya/trunk/debian/changelog	2008-09-27 13:55:50 UTC (rev 6600)
+++ packages/soya/trunk/debian/changelog	2008-09-27 14:10:59 UTC (rev 6601)
@@ -1,3 +1,10 @@
+soya (0.14-2) UNRELEASED; urgency=low
+
+  * Depends on python-elementtree and add a patch to be able to use
+    elementtree from Python 2.5 (Closes: #500368).
+
+ -- Vincent Bernat <bernat at debian.org>  Sat, 27 Sep 2008 16:03:52 +0200
+
 soya (0.14-1) experimental; urgency=low
 
   * New upstream release (Closes: #491194)

Modified: packages/soya/trunk/debian/control
===================================================================
--- packages/soya/trunk/debian/control	2008-09-27 13:55:50 UTC (rev 6600)
+++ packages/soya/trunk/debian/control	2008-09-27 14:10:59 UTC (rev 6601)
@@ -11,7 +11,7 @@
 
 Package: python-soya
 Architecture: any
-Depends: ${shlibs:Depends}, ${python:Depends}, python-imaging-tk, python-editobj (>= 0.5.7-4), python-twisted-core, ttf-freefont
+Depends: ${shlibs:Depends}, ${python:Depends}, python-imaging-tk, python-editobj (>= 0.5.7-4), python-twisted-core, ttf-freefont, python-elementtree
 Suggests: python-soya-doc
 Provides: ${python:Provides}
 Description: high level 3D engine for Python

Modified: packages/soya/trunk/debian/control.in
===================================================================
--- packages/soya/trunk/debian/control.in	2008-09-27 13:55:50 UTC (rev 6600)
+++ packages/soya/trunk/debian/control.in	2008-09-27 14:10:59 UTC (rev 6601)
@@ -11,7 +11,7 @@
 
 Package: python-soya
 Architecture: any
-Depends: ${shlibs:Depends}, ${python:Depends}, python-imaging-tk, python-editobj (>= 0.5.7-4), python-twisted-core, ttf-freefont
+Depends: ${shlibs:Depends}, ${python:Depends}, python-imaging-tk, python-editobj (>= 0.5.7-4), python-twisted-core, ttf-freefont, python-elementtree
 Suggests: python-soya-doc
 Provides: ${python:Provides}
 Description: high level 3D engine for Python

Added: packages/soya/trunk/debian/patches/elementtree
===================================================================
--- packages/soya/trunk/debian/patches/elementtree	                        (rev 0)
+++ packages/soya/trunk/debian/patches/elementtree	2008-09-27 14:10:59 UTC (rev 6601)
@@ -0,0 +1,14 @@
+--- a/pudding/ext/svgelements.py~	2006-07-02 10:40:41.000000000 +0200
++++ b/pudding/ext/svgelements.py	2008-09-27 16:02:03.000000000 +0200
+@@ -22,7 +22,10 @@
+ try:
+ 	from elementtree import ElementTree
+ except ImportError:
+-	raise "You need elementtree from http://effbot.org/zone/element-index.htm"
++	try:
++		from xml.etree import ElementTree
++	except ImportError:
++		raise "You need elementtree from http://effbot.org/zone/element-index.htm"
+ 
+ try:
+ 	import cairo

Modified: packages/soya/trunk/debian/patches/series
===================================================================
--- packages/soya/trunk/debian/patches/series	2008-09-27 13:55:50 UTC (rev 6600)
+++ packages/soya/trunk/debian/patches/series	2008-09-27 14:10:59 UTC (rev 6601)
@@ -2,3 +2,4 @@
 useless_shebang
 openal_sound_autodetect
 enable_pyrex
+elementtree




More information about the Python-modules-commits mailing list