[Python-modules-commits] r1825 - in /packages/kiwi/trunk/debian: changelog patches/03_epyrun_use_local_modules.diff patches/04_avoid_building_helper_module.diff

kov at users.alioth.debian.org kov at users.alioth.debian.org
Thu Feb 15 03:23:46 CET 2007


Author: kov
Date: Thu Feb 15 03:23:45 2007
New Revision: 1825

URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=1825
Log:
  * debian/patches/03_epyrun_use_local_modules.diff:
  - updated
  * debian/patches/04_avoid_building_helper_module.diff:
  - added, to make the _kiwi arch-dependant module not be built

Added:
    packages/kiwi/trunk/debian/patches/04_avoid_building_helper_module.diff
Modified:
    packages/kiwi/trunk/debian/changelog
    packages/kiwi/trunk/debian/patches/03_epyrun_use_local_modules.diff

Modified: packages/kiwi/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/kiwi/trunk/debian/changelog?rev=1825&op=diff
==============================================================================
--- packages/kiwi/trunk/debian/changelog (original)
+++ packages/kiwi/trunk/debian/changelog Thu Feb 15 03:23:45 2007
@@ -1,8 +1,16 @@
-kiwi (1.9.9-3) UNRELEASED; urgency=low
+kiwi (1.9.13-1) unstable; urgency=low
 
+  [ Piotr Ozarowski ]
   * Added XS-Vcs-Svn field
 
- -- Piotr Ozarowski <ozarow at gmail.com>  Thu, 23 Nov 2006 14:44:44 +0100
+  [ Gustavo Noronha ]
+  * New upstream release
+  * debian/patches/03_epyrun_use_local_modules.diff:
+  - updated
+  * debian/patches/04_avoid_building_helper_module.diff:
+  - added, to make the _kiwi arch-dependant module not be built
+
+ -- Gustavo Noronha Silva <kov at debian.org>  Wed, 14 Feb 2007 23:40:38 -0200
 
 kiwi (1.9.9-2) unstable; urgency=high
 

Modified: packages/kiwi/trunk/debian/patches/03_epyrun_use_local_modules.diff
URL: http://svn.debian.org/wsvn/python-modules/packages/kiwi/trunk/debian/patches/03_epyrun_use_local_modules.diff?rev=1825&op=diff
==============================================================================
--- packages/kiwi/trunk/debian/patches/03_epyrun_use_local_modules.diff (original)
+++ packages/kiwi/trunk/debian/patches/03_epyrun_use_local_modules.diff Thu Feb 15 03:23:45 2007
@@ -1,20 +1,3 @@
-diff -urN kiwi-1.9.9.old/doc/Makefile kiwi-1.9.9/doc/Makefile
---- kiwi-1.9.9.old/doc/Makefile	2006-08-24 21:43:21.000000000 -0300
-+++ kiwi-1.9.9/doc/Makefile	2006-08-26 17:16:07.000000000 -0300
-@@ -41,11 +41,11 @@
- 	cp ../examples/Person/Person.glade howto/
- 
- api:
--	cd .. && tools/epyrun
-+	cd .. && xvfb-run -a tools/epyrun
- 	mv ../html api
- 
- apicheck: 
--	cd .. && tools/epyrun --check
-+	cd .. && xvfb-run -a "tools/epyrun --check"
- 
- clean:
- 	rm -rf api/ howto/ *.log *.aux *.l2h *.dvi *.ps *.bak *~
 diff -urN kiwi-1.9.9.old/tools/epyrun kiwi-1.9.9/tools/epyrun
 --- kiwi-1.9.9.old/tools/epyrun	2006-08-24 21:43:05.000000000 -0300
 +++ kiwi-1.9.9/tools/epyrun	2006-08-26 17:15:36.000000000 -0300
@@ -29,3 +12,20 @@
  import gobject
  import kiwi
  import kiwi.utils
+diff -urN kiwi-1.9.9.old/doc/Makefile kiwi-1.9.9/doc/Makefile
+--- kiwi-1.9.9.old/doc/Makefile	2007-02-14 23:58:34.000000000 -0200
++++ kiwi-1.9.9/doc/Makefile	2007-02-15 00:00:42.000000000 -0200
+@@ -46,11 +46,11 @@
+ 
+ api:
+ 	@echo Creating API documentation
+-	@cd .. && tools/epyrun
++	@cd .. && xvfb-run -a tools/epyrun
+ 	@mv ../html api
+ 
+ apicheck: 
+-	cd .. && tools/epyrun --check
++	cd .. && xvfb-run -a "tools/epyrun --check"
+ 
+ clean:
+ 	rm -rf api/ howto/ *.log *.aux *.l2h *.dvi *.ps *.bak *~

Added: packages/kiwi/trunk/debian/patches/04_avoid_building_helper_module.diff
URL: http://svn.debian.org/wsvn/python-modules/packages/kiwi/trunk/debian/patches/04_avoid_building_helper_module.diff?rev=1825&op=file
==============================================================================
--- packages/kiwi/trunk/debian/patches/04_avoid_building_helper_module.diff (added)
+++ packages/kiwi/trunk/debian/patches/04_avoid_building_helper_module.diff Thu Feb 15 03:23:45 2007
@@ -1,0 +1,11 @@
+--- setup.py~	2007-02-01 15:16:12.000000000 -0200
++++ setup.py	2007-02-15 00:13:24.000000000 -0200
+@@ -25,7 +25,7 @@
+ # Build a helper module for testing on gtk+ versions lower than 2.10.
+ # Don't build it on windows due to easy availability compilers and
+ # the lack of pkg-config.
+-if sys.platform != 'win32':
++if False: # we don't want to build this for Debian
+     version = commands.getoutput('pkg-config pygtk-2.0 --modversion')
+     if version and map(int, version.split('.')) < [2, 10]:
+         pkgs = 'gdk-2.0 gtk+-2.0 pygtk-2.0'




More information about the Python-modules-commits mailing list