[Python-modules-commits] r3694 - in /packages/pyicu/trunk/debian: changelog rules
bzed-guest at users.alioth.debian.org
bzed-guest at users.alioth.debian.org
Sun Nov 18 23:41:09 UTC 2007
Author: bzed-guest
Date: Sun Nov 18 23:41:09 2007
New Revision: 3694
URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=3694
Log:
* debian/rules:
- Really removing .egg-info and PyICU.py from the -dbg package now.
Modified:
packages/pyicu/trunk/debian/changelog
packages/pyicu/trunk/debian/rules
Modified: packages/pyicu/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/pyicu/trunk/debian/changelog?rev=3694&op=diff
==============================================================================
--- packages/pyicu/trunk/debian/changelog (original)
+++ packages/pyicu/trunk/debian/changelog Sun Nov 18 23:41:09 2007
@@ -1,8 +1,9 @@
-pyicu (0.6-2) UNRELEASED; urgency=low
+pyicu (0.6-2) unstable; urgency=low
- * NOT RELEASED YET
+ * debian/rules:
+ - Really removing .egg-info and PyICU.py from the -dbg package now.
- -- Bernd Zeimetz <bernd at bzed.de> Sun, 18 Nov 2007 23:26:51 +0100
+ -- Bernd Zeimetz <bernd at bzed.de> Mon, 19 Nov 2007 00:39:12 +0100
pyicu (0.6-1) unstable; urgency=low
Modified: packages/pyicu/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/pyicu/trunk/debian/rules?rev=3694&op=diff
==============================================================================
--- packages/pyicu/trunk/debian/rules (original)
+++ packages/pyicu/trunk/debian/rules Sun Nov 18 23:41:09 2007
@@ -41,7 +41,7 @@
-for py in $(PYVERS); do \
python$$py setup.py clean; \
done
- find . -name "\*.pyc" -print0 | xargs -0 rm -f
+ find . -name "*.pyc" -print0 | xargs -0 rm -f
rm -rf build
dh_clean
@@ -56,9 +56,9 @@
python$$py setup.py install --root=$(CURDIR)/debian/$(PKGNAME) ;\
python$$py-dbg setup.py install --root=$(CURDIR)/debian/$(PKGNAME)-dbg ;\
done
- find $(CURDIR)/debian/$(PKGNAME)-dbg -name "\*.pyc" -print0 | xargs -0 rm -f
- find $(CURDIR)/debian/$(PKGNAME)-dbg -name "\*.py" -print0 | xargs -0 rm -f
- find $(CURDIR)/debian/$(PKGNAME)-dbg -name "\*.egg-info" -print0 | xargs -0 rm -f
+ find $(CURDIR)/debian/$(PKGNAME)-dbg -name "*.pyc" -print0 | xargs -0 rm -f
+ find $(CURDIR)/debian/$(PKGNAME)-dbg -name "*.py" -print0 | xargs -0 rm -f
+ find $(CURDIR)/debian/$(PKGNAME)-dbg -name "*.egg-info" -print0 | xargs -0 rm -f
dh_installdocs
dh_installexamples
More information about the Python-modules-commits
mailing list