[Python-modules-commits] r16501 - in packages/python-contract/trunk/debian (changelog rules)
jwilk at users.alioth.debian.org
jwilk at users.alioth.debian.org
Thu Apr 14 12:16:18 UTC 2011
Date: Thursday, April 14, 2011 @ 12:15:53
Author: jwilk
Revision: 16501
Change build directory, so that it's removed in the clean target.
Modified:
packages/python-contract/trunk/debian/changelog
packages/python-contract/trunk/debian/rules
Modified: packages/python-contract/trunk/debian/changelog
===================================================================
--- packages/python-contract/trunk/debian/changelog 2011-04-13 20:26:12 UTC (rev 16500)
+++ packages/python-contract/trunk/debian/changelog 2011-04-14 12:15:53 UTC (rev 16501)
@@ -6,6 +6,7 @@
[ Scott Kitterman ]
* Adjust build dir and test PYTHONPATH in debian/rules to fix FTBFS due to
test failure when only Python 2.6 and later are supported Python versions
+ (closes: #614949)
[ Sandro Tosi ]
* debian/control
Modified: packages/python-contract/trunk/debian/rules
===================================================================
--- packages/python-contract/trunk/debian/rules 2011-04-13 20:26:12 UTC (rev 16500)
+++ packages/python-contract/trunk/debian/rules 2011-04-14 12:15:53 UTC (rev 16501)
@@ -11,14 +11,14 @@
set -e; \
for py in $(PYVERS); do \
- $$py setup.py build --build-lib=build-purelib; \
+ $$py setup.py build --build-lib=build/purelib; \
done
ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
for py in $(PYVERS); do \
for test in $(wildcard test/test*); do \
echo running test: $$test; \
- PYTHONPATH=build-purelib $$py $$test; \
+ PYTHONPATH=build/purelib $$py $$test; \
done; \
done
endif
More information about the Python-modules-commits
mailing list