[Python-modules-commits] r20768 - in packages/python-byteplay/trunk/debian (2 files)
jwilk at users.alioth.debian.org
jwilk at users.alioth.debian.org
Tue Mar 13 18:32:33 UTC 2012
Date: Tuesday, March 13, 2012 @ 18:32:30
Author: jwilk
Revision: 20768
Remove ?\226?\128?\152zip_safe = True?\226?\128?\153 from setup.py.
Modified:
packages/python-byteplay/trunk/debian/changelog
packages/python-byteplay/trunk/debian/patches/no-setuptools.diff
Modified: packages/python-byteplay/trunk/debian/changelog
===================================================================
--- packages/python-byteplay/trunk/debian/changelog 2012-03-13 18:29:24 UTC (rev 20767)
+++ packages/python-byteplay/trunk/debian/changelog 2012-03-13 18:32:30 UTC (rev 20768)
@@ -7,8 +7,10 @@
* Make binary(-indep) target depend on build stamp file rather than build
target.
* Don't pass control file path to pyversions explicitly.
+ * Remove âzip_safe = Trueâ from setup.py; this is a setuptools-specific
+ option, but in Debian we use pure distutils.
- -- Jakub Wilk <jwilk at debian.org> Tue, 13 Mar 2012 19:28:39 +0100
+ -- Jakub Wilk <jwilk at debian.org> Tue, 13 Mar 2012 19:31:31 +0100
python-byteplay (0.2-1) unstable; urgency=low
Modified: packages/python-byteplay/trunk/debian/patches/no-setuptools.diff
===================================================================
--- packages/python-byteplay/trunk/debian/patches/no-setuptools.diff 2012-03-13 18:29:24 UTC (rev 20767)
+++ packages/python-byteplay/trunk/debian/patches/no-setuptools.diff 2012-03-13 18:32:30 UTC (rev 20768)
@@ -13,3 +13,11 @@
from byteplay import __version__ as lib_version
setup(
+@@ -11,7 +11,6 @@
+ download_url='http://code.google.com/p/byteplay/downloads/list',
+ version = lib_version,
+ py_modules = ['byteplay'],
+- zip_safe = True,
+ license='LGPL',
+ description='bytecode manipulation library',
+ long_description = """byteplay lets you convert Python code objects into equivalent objects which are easy to play with, and lets you convert those objects back into living Python code objects. It's useful for applying crazy transformations on Python functions, and is also useful in learning Python byte code intricacies. It currently works with Python 2.4 and up.
More information about the Python-modules-commits
mailing list