[Python-apps-commits] r8423 - in packages/mercurial/trunk/debian (changelog rules)

vicho at users.alioth.debian.org vicho at users.alioth.debian.org
Tue Apr 3 20:36:20 UTC 2012


    Date: Tuesday, April 3, 2012 @ 20:36:18
  Author: vicho
Revision: 8423

Add sparc 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-04-03 14:07:41 UTC (rev 8422)
+++ packages/mercurial/trunk/debian/changelog	2012-04-03 20:36:18 UTC (rev 8423)
@@ -1,3 +1,9 @@
+mercurial (2.1.2-2) unstable; urgency=low
+
+  * Add sparc to the list of architectures with slow buildds
+
+ -- Javi Merino <vicho at debian.org>  Tue, 03 Apr 2012 21:04:29 +0100
+
 mercurial (2.1.2-1) unstable; urgency=low
 
   * New upstream release 2.1.2

Modified: packages/mercurial/trunk/debian/rules
===================================================================
--- packages/mercurial/trunk/debian/rules	2012-04-03 14:07:41 UTC (rev 8422)
+++ packages/mercurial/trunk/debian/rules	2012-04-03 20:36:18 UTC (rev 8423)
@@ -20,6 +20,7 @@
 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)
+ARCH_IS_SPARC := $(if $(subst sparc,,$(DEB_HOST_ARCH)),,T)
 
 override_dh_auto_test:
 # Some tests try to execute two hg commands at the same time to test
@@ -29,7 +30,7 @@
 # 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 architectures.
-ifneq ($(or $(ARCH_IS_MIPS), $(ARCH_IS_KFREEBSD-i386), $(ARCH_IS_ARMEL)),)
+ifneq ($(or $(ARCH_IS_MIPS), $(ARCH_IS_KFREEBSD-i386), $(ARCH_IS_ARMEL), $(ARCH_IS_SPARC)),)
 		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