[Python-modules-commits] r17057 - in packages/pyzmq/trunk/debian (changelog rules)
bzed at users.alioth.debian.org
bzed at users.alioth.debian.org
Thu May 19 17:54:36 UTC 2011
Date: Thursday, May 19, 2011 @ 17:54:34
Author: bzed
Revision: 17057
Remove all .pyc files during clean.
Modified:
packages/pyzmq/trunk/debian/changelog
packages/pyzmq/trunk/debian/rules
Modified: packages/pyzmq/trunk/debian/changelog
===================================================================
--- packages/pyzmq/trunk/debian/changelog 2011-05-19 17:52:59 UTC (rev 17056)
+++ packages/pyzmq/trunk/debian/changelog 2011-05-19 17:54:34 UTC (rev 17057)
@@ -6,8 +6,9 @@
* Only clean the zmq directory if the directory exists.
* Disable fix-distutils patch.
* Run setup.py clean manually.
+ * Remove all .pyc files during clean.
- -- Bernd Zeimetz <bzed at debian.org> Thu, 19 May 2011 19:52:30 +0200
+ -- Bernd Zeimetz <bzed at debian.org> Thu, 19 May 2011 19:54:16 +0200
pyzmq (2.0.10.1-2) unstable; urgency=low
Modified: packages/pyzmq/trunk/debian/rules
===================================================================
--- packages/pyzmq/trunk/debian/rules 2011-05-19 17:52:59 UTC (rev 17056)
+++ packages/pyzmq/trunk/debian/rules 2011-05-19 17:54:34 UTC (rev 17057)
@@ -8,6 +8,7 @@
$$python-dbg setup.py clean; \
done; fi
if [ -d zmq ]; then find zmq -name '*.c' -delete; fi
+ find . -name '*.pyc' -delete
override_dh_install:
# Install everything excluding the *_d.so debug extensions to python-zmq
More information about the Python-modules-commits
mailing list