[Python-modules-commits] r12157 - in packages/myghty/trunk/debian (changelog rules)
jwilk at users.alioth.debian.org
jwilk at users.alioth.debian.org
Fri Mar 5 19:04:00 UTC 2010
Date: Friday, March 5, 2010 @ 19:03:33
Author: jwilk
Revision: 12157
Remove *.pyc, *.pyo and *.egg-info in the clean target.
Modified:
packages/myghty/trunk/debian/changelog
packages/myghty/trunk/debian/rules
Modified: packages/myghty/trunk/debian/changelog
===================================================================
--- packages/myghty/trunk/debian/changelog 2010-03-05 18:56:13 UTC (rev 12156)
+++ packages/myghty/trunk/debian/changelog 2010-03-05 19:03:33 UTC (rev 12157)
@@ -2,6 +2,7 @@
[ Jakub Wilk ]
* Switch to source format 3.0 (quilt)
+ * Remove *.pyc, *.pyo and *.egg-info in the clean target.
-- Debian Python Modules Team <python-modules-team at lists.alioth.debian.org> Fri, 05 Mar 2010 19:53:59 +0100
Modified: packages/myghty/trunk/debian/rules
===================================================================
--- packages/myghty/trunk/debian/rules 2010-03-05 18:56:13 UTC (rev 12156)
+++ packages/myghty/trunk/debian/rules 2010-03-05 19:03:33 UTC (rev 12157)
@@ -15,7 +15,8 @@
dh_testdir
dh_testroot
rm -rf build
- find . -name *\.py[co] -exec rm -f {} \;
+ find . -name \*.py[co] -exec rm -f {} \;
+ rm -Rf lib/*.egg-info
rm -f doc/html/*html
dh_clean
More information about the Python-modules-commits
mailing list