[Python-apps-commits] r8285 - in packages/mercurial/trunk/debian (changelog rules)
vicho at users.alioth.debian.org
vicho at users.alioth.debian.org
Sat Mar 10 15:27:58 UTC 2012
Date: Saturday, March 10, 2012 @ 15:27:57
Author: vicho
Revision: 8285
Add armel to the list of architectures with slow buildds
Modified:
packages/mercurial/trunk/debian/changelog
packages/mercurial/trunk/debian/rules (contents, properties)
Modified: packages/mercurial/trunk/debian/changelog
===================================================================
--- packages/mercurial/trunk/debian/changelog 2012-03-09 19:06:49 UTC (rev 8284)
+++ packages/mercurial/trunk/debian/changelog 2012-03-10 15:27:57 UTC (rev 8285)
@@ -1,3 +1,9 @@
+mercurial (2.1.1-3) UNRELEASED; urgency=low
+
+ * Add armel to the list of architectures with slow buildds
+
+ -- Javi Merino <vicho at debian.org> Sat, 10 Mar 2012 15:19:24 +0000
+
mercurial (2.1.1-2) unstable; urgency=low
* Add kfreebsd-i386 to the list of slow architectures for the test suite.
Modified: packages/mercurial/trunk/debian/rules
===================================================================
--- packages/mercurial/trunk/debian/rules 2012-03-09 19:06:49 UTC (rev 8284)
+++ packages/mercurial/trunk/debian/rules 2012-03-10 15:27:57 UTC (rev 8285)
@@ -19,6 +19,8 @@
ARCH_IS_MIPS := $(if $(subst mips,,$(DEB_HOST_ARCH)),,T)
ARCH_IS_KFREEBSD-i386 := $(if $(subst kfreebsd-i386,,$(DEB_HOST_ARCH)),,T)
+ARCH_IS_ARMEL := $(if $(subst armel,,$(DEB_HOST_ARCH)),,T)
+
override_dh_auto_test:
# Some tests try to execute two hg commands at the same time
# to test for corruption. They do so by running an hg command
@@ -27,8 +29,8 @@
# enough and the second test starts before the first one has
# started printing. This is hacky and we just enhance the
# hack by incrementing the sleep time in those slow
-# architectures (mips and kfreebsd-i386 at the moment).
-ifneq ($(or $(ARCH_IS_MIPS), $(ARCH_IS_KFREEBSD-i386)),)
+# architectures.
+ifneq ($(or $(ARCH_IS_MIPS), $(ARCH_IS_KFREEBSD-i386), $(ARCH_IS_ARMEL)),)
sed -i.deb-backup -e 's/sleep 1/sleep 2/' $(CURDIR)/tests/test-pull-pull-corruption.t $(CURDIR)/tests/test-pull-pull-corruption2.t
endif
More information about the Python-apps-commits
mailing list