[Python-apps-commits] r6437 - in packages/parti-all/trunk/debian (5 files)

aelmahmoudy-guest at users.alioth.debian.org aelmahmoudy-guest at users.alioth.debian.org
Sun Dec 26 09:00:37 UTC 2010


    Date: Sunday, December 26, 2010 @ 09:00:14
  Author: aelmahmoudy-guest
Revision: 6437

Changed maintainer to PAPT

Added:
  packages/parti-all/trunk/debian/patches/
  packages/parti-all/trunk/debian/patches/series
  packages/parti-all/trunk/debian/patches/setup.diff
Modified:
  packages/parti-all/trunk/debian/changelog
  packages/parti-all/trunk/debian/control

Modified: packages/parti-all/trunk/debian/changelog
===================================================================
--- packages/parti-all/trunk/debian/changelog	2010-12-25 20:27:40 UTC (rev 6436)
+++ packages/parti-all/trunk/debian/changelog	2010-12-26 09:00:14 UTC (rev 6437)
@@ -19,10 +19,10 @@
   * debian/control:
     + Bumped Standards-Version to 3.9.1, no changes needed.
     + Added Vcs-* fields
-    + Set DPMT as Maintainer, and myself as uploader.
+    + Set PAPT as Maintainer, and myself as uploader.
     + Better package descriptions.
 
- -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy at sabily.org>  Sat, 25 Dec 2010 20:25:50 +0200
+ -- أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy at sabily.org>  Sun, 26 Dec 2010 10:59:41 +0200
 
 parti-all (0.0.6-0ubuntu10) natty; urgency=low
 

Modified: packages/parti-all/trunk/debian/control
===================================================================
--- packages/parti-all/trunk/debian/control	2010-12-25 20:27:40 UTC (rev 6436)
+++ packages/parti-all/trunk/debian/control	2010-12-26 09:00:14 UTC (rev 6437)
@@ -1,7 +1,7 @@
 Source: parti-all
 Section: x11
 Priority: optional
-Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Maintainer: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
 Uploaders: أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy at sabily.org>
 Build-Depends: debhelper (>= 7.0.50~), libx11-dev, libxtst-dev, libxcomposite-dev, libxdamage-dev, python-all-dev (>= 2.6.6-2), python-pyrex, python-gobject-dev, python-gtk2-dev
 X-Python-Version: all

Added: packages/parti-all/trunk/debian/patches/series
===================================================================
--- packages/parti-all/trunk/debian/patches/series	                        (rev 0)
+++ packages/parti-all/trunk/debian/patches/series	2010-12-26 09:00:14 UTC (rev 6437)
@@ -0,0 +1 @@
+setup.diff

Added: packages/parti-all/trunk/debian/patches/setup.diff
===================================================================
--- packages/parti-all/trunk/debian/patches/setup.diff	                        (rev 0)
+++ packages/parti-all/trunk/debian/patches/setup.diff	2010-12-26 09:00:14 UTC (rev 6437)
@@ -0,0 +1,23 @@
+--- a/setup.py
++++ b/setup.py
+@@ -15,8 +15,9 @@
+ 
+ from distutils.core import setup
+ from distutils.extension import Extension
+-from Pyrex.Distutils import build_ext
+-import commands, os
++try: from Pyrex.Distutils import build_ext
++except ImportError: print 'Noney'
++import commands, os, sys
+ 
+ # Tweaked from http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/502261
+ def pkgconfig(*packages, **kw):
+@@ -25,7 +26,7 @@
+                 '-l': 'libraries'}
+     cmd = "pkg-config --libs --cflags %s" % (" ".join(packages),)
+     (status, output) = commands.getstatusoutput(cmd)
+-    if not (os.WIFEXITED(status) and os.WEXITSTATUS(status) == 0):
++    if not (os.WIFEXITED(status) and os.WEXITSTATUS(status) == 0) and not ('clean' in sys.argv):
+         raise Exception, ("call to pkg-config ('%s') failed" % (cmd,))
+     for token in output.split():
+         if flag_map.has_key(token[:2]):




More information about the Python-apps-commits mailing list