Your message dated Wed, 05 Sep 2012 18:02:43 +0000
with message-id <[email protected]>
and subject line Bug#673244: fixed in python-greenlet 0.4.0-1
has caused the Debian Bug report #673244,
regarding python-greenlet: Please consider converting to dh_python2
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
673244: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=673244
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: python-greenlet
Version: 0.3.3-1
Severity: normal
Tags: patch
User: [email protected]
Usertags: origin-ubuntu quantal ubuntu-patch


Hi,

python-support is largely deprecated now, with the switch over to dh_python2.  
Please could you consider converting.  I have attached a patch, along with some 
other Lintian fixes for your review.

Thanks.

P: python-greenlet source: package-lacks-versioned-build-depends-on-debhelper 7
W: python-greenlet source: debhelper-overrides-need-versioned-build-depends (>= 
7.0.50~)
E: python-greenlet source: 
depends-on-build-essential-package-without-using-version gcc [build-depends: 
gcc]
P: python-greenlet source: unneeded-build-dep-on-quilt

  * debian/{control,rules}:
    - Convert to dh_python2
    - Drop quilt, it's implied with source format quilt (3.0).
  * debian/rules: Special handling of strip is no longer required.
  * debian/control:
    - Drop gcc build depends, it's an essential package.
    - Depend on versioned debhelper (>= 7.0.50~), required for rules overrides.
    - Bumped Standards to 3.9.3 (no changes required).
  * wrap-and-sorted.


Thanks for considering the patch.


-- System Information:
Debian Release: wheezy/sid
  APT prefers precise-updates
  APT policy: (500, 'precise-updates'), (500, 'precise-security'), (500, 
'precise'), (100, 'precise-backports')
Architecture: i386 (x86_64)

Kernel: Linux 3.2.0-24-generic (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru python-greenlet-0.3.3/debian/changelog python-greenlet-0.3.3/debian/changelog
diff -Nru python-greenlet-0.3.3/debian/control python-greenlet-0.3.3/debian/control
--- python-greenlet-0.3.3/debian/control	2012-02-11 20:23:44.000000000 +0000
+++ python-greenlet-0.3.3/debian/control	2012-05-17 09:46:42.000000000 +0100
@@ -1,10 +1,14 @@
 Source: python-greenlet
 Priority: extra
-Maintainer: Örjan Persson <[email protected]>
+Maintainer: Ubuntu Developers <[email protected]>
+XSBC-Original-Maintainer: Örjan Persson <[email protected]>
 Uploaders: Andreas Schuldei <[email protected]>
-Build-Depends: debhelper, gcc, python-all-dev, python-all-dbg,
- python-setuptools, python-support, python-sphinx, quilt
-Standards-Version: 3.9.2
+Build-Depends: debhelper (>= 7.0.50~),
+               python-all-dbg,
+               python-all-dev,
+               python-setuptools,
+               python-sphinx
+Standards-Version: 3.9.3
 Section: python
 Homepage: http://pypi.python.org/pypi/greenlet
 Vcs-Browser: http://git.42mm.org/?p=python-greenlet
@@ -13,7 +17,9 @@
 Package: python-greenlet-dbg
 Section: debug
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, python-greenlet (= ${binary:Version})
+Depends: python-greenlet (= ${binary:Version}),
+         ${misc:Depends},
+         ${shlibs:Depends}
 Recommends: python-dbg
 Description: Lightweight in-process concurrent programming - debugging symbols
  The greenlet package is a spin-off of Stackless, a version of CPython that
@@ -30,7 +36,7 @@
 Package: python-greenlet-doc
 Section: doc
 Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends}, libjs-jquery, libjs-underscore
+Depends: libjs-jquery, libjs-underscore, ${misc:Depends}, ${shlibs:Depends}
 Suggests: python-greenlet, python-greenlet-dev
 Description: Lightweight in-process concurrent programming - documentation
  The greenlet package is a spin-off of Stackless, a version of CPython that
@@ -46,7 +52,9 @@
 
 Package: python-greenlet-dev
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, python-greenlet (= ${binary:Version})
+Depends: python-greenlet (= ${binary:Version}),
+         ${misc:Depends},
+         ${shlibs:Depends}
 Description: Lightweight in-process concurrent programming - development files
  The greenlet package is a spin-off of Stackless, a version of CPython that
  supports micro-threads called "tasklets". Tasklets run pseudo-concurrently
@@ -61,9 +69,9 @@
 
 Package: python-greenlet
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}
+Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends}
 Conflicts: python-codespeak-lib (<< 1.0)
-Suggests: python-greenlet-doc, python-greenlet-dev, python-greenlet-dbg
+Suggests: python-greenlet-dbg, python-greenlet-dev, python-greenlet-doc
 Description: Lightweight in-process concurrent programming
  The greenlet package is a spin-off of Stackless, a version of CPython that
  supports micro-threads called "tasklets". Tasklets run pseudo-concurrently
diff -Nru python-greenlet-0.3.3/debian/python-greenlet.install python-greenlet-0.3.3/debian/python-greenlet.install
--- python-greenlet-0.3.3/debian/python-greenlet.install	2012-02-11 20:11:04.000000000 +0000
+++ python-greenlet-0.3.3/debian/python-greenlet.install	2012-05-17 09:46:42.000000000 +0100
@@ -1,2 +1,2 @@
-usr/lib/python*/*-packages/*[!_][!_].so
 usr/lib/python*/*-packages/*.egg-info
+usr/lib/python*/*-packages/*[!_][!_].so
diff -Nru python-greenlet-0.3.3/debian/rules python-greenlet-0.3.3/debian/rules
--- python-greenlet-0.3.3/debian/rules	2012-02-11 20:11:04.000000000 +0000
+++ python-greenlet-0.3.3/debian/rules	2012-05-17 10:12:00.000000000 +0100
@@ -3,7 +3,7 @@
 PYVERSIONS := $(shell pyversions -sv)
 
 %:
-	dh $@ --with quilt
+	dh $@ --with python2
 
 override_dh_auto_clean:
 	rm -rf build/
@@ -24,14 +24,7 @@
 	touch test-python-$*-stamp
 endif
 
-override_dh_strip:
-ifeq (,$(filter nostrip,$(DEB_BUILD_OPTIONS)))
-	# See bug #576014
-	dh_strip --dbg-package=python-greenlet-dbg
-	cd debian/python-greenlet-dbg/usr/lib/debug/usr/lib && mv pyshared pymodules
-endif
-
 override_dh_installdocs:
 	dh_installdocs --link-doc=python-greenlet
 
-.PHONY: override_dh_auto_clean override_dh_auto_build override_dh_auto_test override_dh_strip override_dh_installdocs
+.PHONY: override_dh_auto_clean override_dh_auto_build override_dh_auto_test override_dh_installdocs

--- End Message ---
--- Begin Message ---
Source: python-greenlet
Source-Version: 0.4.0-1

We believe that the bug you reported is fixed in the latest version of
python-greenlet, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Laszlo Boszormenyi (GCS) <[email protected]> (supplier of updated python-greenlet 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Fri, 31 Aug 2012 19:25:36 +0200
Source: python-greenlet
Binary: python-greenlet-dbg python-greenlet-doc python-greenlet-dev 
python-greenlet
Architecture: source amd64 all
Version: 0.4.0-1
Distribution: unstable
Urgency: low
Maintainer: Laszlo Boszormenyi (GCS) <[email protected]>
Changed-By: Laszlo Boszormenyi (GCS) <[email protected]>
Description: 
 python-greenlet - Lightweight in-process concurrent programming
 python-greenlet-dbg - Lightweight in-process concurrent programming - 
debugging symbols
 python-greenlet-dev - Lightweight in-process concurrent programming - 
development files
 python-greenlet-doc - Lightweight in-process concurrent programming - 
documentation
Closes: 673244
Changes: 
 python-greenlet (0.4.0-1) unstable; urgency=low
 .
   * New maintainer.
   * New upstream release.
   * Fix all packaging problems.
   * Build with hardening enabled.
   * Update Standards-Version and correct debhelper dependency.
   * Switch to dh_python2 and sync with Ubuntu (closes: #673244).
   * Symlink jquery.js and underscore.js to their packaged versions.
Checksums-Sha1: 
 094fd88aa57f5f47c0f675ea34f844369ac06260 1420 python-greenlet_0.4.0-1.dsc
 742ffc5a08c728fa2392729709f534e17ce6cdd4 51916 
python-greenlet_0.4.0.orig.tar.gz
 68426456581d917c92b7844dfb12b15dfc1aae89 4326 
python-greenlet_0.4.0-1.debian.tar.gz
 921a312ce538f6391baf4e6216fcacb2e1c347dd 29140 
python-greenlet-dbg_0.4.0-1_amd64.deb
 de1dc0789299357e00d1c7b938403c0375eafa7f 55480 
python-greenlet-doc_0.4.0-1_all.deb
 d6da1ee6ab8a5c40af803be333ef2763e7ffc6c1 2488 
python-greenlet-dev_0.4.0-1_amd64.deb
 be8db82d6b13622b5a88c035f7ee624e8793f6fa 31648 
python-greenlet_0.4.0-1_amd64.deb
Checksums-Sha256: 
 181aebfb2204e2f9d5635add1ef3a124bba07f13ccc0836c43107b4124d76cef 1420 
python-greenlet_0.4.0-1.dsc
 9efb49997bab5fe2c002b59571effaadf088df5f3ec8c03f36e702ead4d526df 51916 
python-greenlet_0.4.0.orig.tar.gz
 46cd1084b25df99963458843c77eb77ee6cc727da958d76592d97029091abe0c 4326 
python-greenlet_0.4.0-1.debian.tar.gz
 1aff523e3490ac8a8937025487d7e3742f94c5f92837d4d61b99d6438336b55c 29140 
python-greenlet-dbg_0.4.0-1_amd64.deb
 6fa2826627581489bddb3c119dbe28159a9c954f8a128aba8c8317e538418a73 55480 
python-greenlet-doc_0.4.0-1_all.deb
 5564020d51dd1717417f57fffc4ee86bda27b96c391ccb875a42a242efea3f62 2488 
python-greenlet-dev_0.4.0-1_amd64.deb
 ccd2537252daad79b8cb3f5d64003dfc9ff696fa32b3386b6d39b068fc88c4c3 31648 
python-greenlet_0.4.0-1_amd64.deb
Files: 
 4053ba96512b4ba56956d7339713d206 1420 python extra python-greenlet_0.4.0-1.dsc
 80c502c7e09b8711a333572ab1998157 51916 python extra 
python-greenlet_0.4.0.orig.tar.gz
 d6d1a10d0d98325e93366a973492a73a 4326 python extra 
python-greenlet_0.4.0-1.debian.tar.gz
 7d264c0c57c9f77c73136b2d897ffab0 29140 debug extra 
python-greenlet-dbg_0.4.0-1_amd64.deb
 eb7a49ccbbedbc4b8ddc1cc10755b193 55480 doc extra 
python-greenlet-doc_0.4.0-1_all.deb
 ceb16428c526bf79690b8499013f831f 2488 python extra 
python-greenlet-dev_0.4.0-1_amd64.deb
 9ddcc8a850c57ea95559d25272174619 31648 python extra 
python-greenlet_0.4.0-1_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEARECAAYFAlBE6zgACgkQMDatjqUaT93gYACbB7kyEFLt7twtzjkw5kvW4mRQ
GWkAnjBJK/Jlq4BqJle1M2seud75J6xx
=frLp
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to