[Python-modules-commits] r5157 - in packages/ctypes/trunk/debian (changelog rules)
piotr at users.alioth.debian.org
piotr at users.alioth.debian.org
Sat Apr 26 14:47:24 UTC 2008
Date: Saturday, April 26, 2008 @ 14:47:22
Author: piotr
Revision: 5157
* High urgency upload to fix FTBFS blocking the python 2.5 transition.
* Do not run the test-suite on arm. (According to Matthias Klose, "the
underlying problem, libffi's arm port not having support for closures,
won't be fixed".)
Modified:
packages/ctypes/trunk/debian/changelog
packages/ctypes/trunk/debian/rules
Modified: packages/ctypes/trunk/debian/changelog
===================================================================
--- packages/ctypes/trunk/debian/changelog 2008-04-26 14:23:23 UTC (rev 5156)
+++ packages/ctypes/trunk/debian/changelog 2008-04-26 14:47:22 UTC (rev 5157)
@@ -1,3 +1,13 @@
+ctypes (1.0.2-4) unstable; urgency=high
+
+ [ Adeodato Simó ]
+ * High urgency upload to fix FTBFS blocking the python 2.5 transition.
+ * Do not run the test-suite on arm. (According to Matthias Klose, "the
+ underlying problem, libffi's arm port not having support for closures,
+ won't be fixed".)
+
+ -- Debian Python Modules Team <python-modules-team at lists.alioth.debian.org> Sat, 26 Apr 2008 16:41:07 +0200
+
ctypes (1.0.2-3) unstable; urgency=medium
[ Piotr Ożarowski ]
Modified: packages/ctypes/trunk/debian/rules
===================================================================
--- packages/ctypes/trunk/debian/rules 2008-04-26 14:23:23 UTC (rev 5156)
+++ packages/ctypes/trunk/debian/rules 2008-04-26 14:47:22 UTC (rev 5157)
@@ -3,6 +3,9 @@
# Uncomment this to turn on verbose mode.
# export DH_VERBOSE=1
+DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
+NOTEST_ARCHES := arm
+
PYVERS := $(shell pyversions -vr)
DEB_UPSTREAM_VERSION := $(shell dpkg-parsechangelog \
| grep ^Version: | cut -d ' ' -f 2 | cut -d '-' -f 1)
@@ -34,7 +37,9 @@
install-python%:
python$* setup.py install --no-compile --root=$(d)
+ifeq (,$(filter $(DEB_HOST_ARCH),$(NOTEST_ARCHES)))
PYTHONPATH=$(d)/usr/lib/python$*/site-packages python$* setup.py test
+endif
dh_strip -a
# Build architecture-independent files here.
More information about the Python-modules-commits
mailing list