tags 482260 + patch thanks Dear maintainer,
I've prepared an NMU for pyspi (versioned as 0.6.1-1.2) as part of my NM process, and I will ask my AM to upload it to DELAYED/2. Please free to tell me if we should delay it longer. Regards. Ruben diff -u pyspi-0.6.1/debian/changelog pyspi-0.6.1/debian/changelog --- pyspi-0.6.1/debian/changelog +++ pyspi-0.6.1/debian/changelog @@ -1,3 +1,10 @@ +pyspi (0.6.1-1.2) unstable; urgency=low + + * Non-maintainer upload. + * Add a simple-patchsys rule and a patch to fix a FTBFS (Closes: #482260). + + -- Ruben Molina <rmol...@udea.edu.co> Tue, 28 Apr 2009 21:32:13 -0500 + pyspi (0.6.1-1.1) unstable; urgency=low * Non-maintainer upload. diff -u pyspi-0.6.1/debian/rules pyspi-0.6.1/debian/rules --- pyspi-0.6.1/debian/rules +++ pyspi-0.6.1/debian/rules @@ -4,6 +4,7 @@ PYVERS=$(shell pyversions -vr) include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk include /usr/share/cdbs/1/class/python-distutils.mk clean:: only in patch2: unchanged: --- pyspi-0.6.1.orig/debian/patches/482260.patch +++ pyspi-0.6.1/debian/patches/482260.patch @@ -0,0 +1,38 @@ +--- pyspi-0.6.1.orig/pyspi.pyx ++++ pyspi-0.6.1/pyspi.pyx +@@ -737,7 +737,7 @@ + Wrapper around the low-level cspi.AccessibleComponent_ functions, + giving an OO-style API. + """ +- def getExtents (self, type=0): ++ def getExtents (self, key_type=0): + """ + Wraps cspi.AccessibleComponent_getExtents, returning an + (x,y,w,h) tuple. +@@ -747,7 +747,7 @@ + cspi.AccessibleComponent_getExtents (self.__item, &x, &y, &w, &h, type) + return (x, y, w, h) + +- def getPosition (self, type = 0): ++ def getPosition (self, key_type=0): + """ + Wraps cspi.AccessibleComponent_getPosition, returning an + (x,y) tuple. +@@ -1038,7 +1038,7 @@ + cspi.AccessibleImage_getImageSize(self.__item, &w, &h); + return [w, h] + +- def getImagePosition (self, type=0): ++ def getImagePosition (self, key_type=0): + """ + Wraps cspi.AccessibleImage_getImagePosition, returning a (x,y) + pair +@@ -1048,7 +1048,7 @@ + cspi.AccessibleImage_getImagePosition(self.__item, &x, &y, type) + return [x, y] + +- def getImageExtents (self, type=0): ++ def getImageExtents (self, key_type=0): + """ + Wraps cspi.AccessibleImage_getImageExtents, returning a + (x,y,w,h) tuple
signature.asc
Description: Esta parte del mensaje está firmada digitalmente