[Python-modules-commits] r24755 - in packages/pyparsing/trunk/debian (changelog rules)
zigo at users.alioth.debian.org
zigo at users.alioth.debian.org
Wed Jun 12 09:13:56 UTC 2013
Date: Wednesday, June 12, 2013 @ 09:13:54
Author: zigo
Revision: 24755
Removed python3 calls in debian/rules
Modified:
packages/pyparsing/trunk/debian/changelog
packages/pyparsing/trunk/debian/rules
Modified: packages/pyparsing/trunk/debian/changelog
===================================================================
--- packages/pyparsing/trunk/debian/changelog 2013-06-12 07:47:55 UTC (rev 24754)
+++ packages/pyparsing/trunk/debian/changelog 2013-06-12 09:13:54 UTC (rev 24755)
@@ -1,3 +1,13 @@
+pyparsing (1.5.7+dfsg1-2) UNRELEASED; urgency=low
+
+ * Uploading to unstable.
+ * Re-added mistakenly dos 2 unix conversion in debian/rules, thanks to Jakub
+ wilk for pointing it out.
+ * Removed python3 calls in debian/rules (otherwise FTBFS in a clean chroot
+ because of missing build-depends).
+
+ -- Thomas Goirand <zigo at debian.org> Thu, 30 May 2013 02:37:20 +0000
+
pyparsing (1.5.7+dfsg1-1) experimental; urgency=low
[ Jakub Wilk ]
Modified: packages/pyparsing/trunk/debian/rules
===================================================================
--- packages/pyparsing/trunk/debian/rules 2013-06-12 07:47:55 UTC (rev 24754)
+++ packages/pyparsing/trunk/debian/rules 2013-06-12 09:13:54 UTC (rev 24755)
@@ -8,7 +8,12 @@
rm -rf build
override_dh_auto_install:
- for i in `pyversions -s` ; do \
+ find $(CURDIR)/debian/python{,3}-pyparsing \
+ \( -name '*.html' -o -name '*.css' -o -name '*.py' \
+ -o -name 'README' \) \
+ -type f -print0 \
+ | xargs -0 --no-run-if-empty fromdos -p --
+ set -e ; for i in `pyversions -s` ; do \
$$i setup.py install --install-layout=deb \
--root=$(CURDIR)/debian/python-pyparsing ; \
done
@@ -19,14 +24,11 @@
override_dh_python2:
dh_python2 -ppython-pyparsing
-override_dh_python3:
- dh_python3 -ppython3-pyparsing
-
override_dh_compress:
dh_compress -i -X.py
%:
- dh $@ --with=python2,python3 --buildsystem=python_distutils
+ dh $@ --with=python2 --buildsystem=python_distutils
# the following rule gets the original source and creates a dfsg free
# tarball
More information about the Python-modules-commits
mailing list