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

mithrandi at users.alioth.debian.org mithrandi at users.alioth.debian.org
Fri Aug 25 23:40:23 UTC 2017


    Date: Friday, August 25, 2017 @ 23:40:20
  Author: mithrandi
Revision: 14345

Build with -mno-lra on mips64el to work around #871514.

Modified:
  packages/mercurial/trunk/debian/changelog
  packages/mercurial/trunk/debian/rules

Modified: packages/mercurial/trunk/debian/changelog
===================================================================
--- packages/mercurial/trunk/debian/changelog	2017-08-25 17:02:55 UTC (rev 14344)
+++ packages/mercurial/trunk/debian/changelog	2017-08-25 23:40:20 UTC (rev 14345)
@@ -1,3 +1,9 @@
+mercurial (4.3.1-3) unstable; urgency=high
+
+  * Build with -mno-lra on mips64el to work around #871514.
+
+ -- Tristan Seligmann <mithrandi at debian.org>  Sat, 26 Aug 2017 01:38:11 +0200
+
 mercurial (4.3.1-2) unstable; urgency=high
 
   * Fix or disable some failing tests (closes: #823056, #850234).

Modified: packages/mercurial/trunk/debian/rules
===================================================================
--- packages/mercurial/trunk/debian/rules	2017-08-25 17:02:55 UTC (rev 14344)
+++ packages/mercurial/trunk/debian/rules	2017-08-25 23:40:20 UTC (rev 14345)
@@ -10,6 +10,10 @@
 PYVERS=$(shell pyversions -vs)
 PYVER_DEFAULT=$(shell pyversions -vd)
 DEB_HOST_ARCH := $(shell dpkg-architecture -qDEB_HOST_ARCH)
+ifeq ($(DEB_HOST_ARCH),mips64el)
+        # Work around #871514
+        export DEB_CFLAGS_MAINT_APPEND = -mno-lra
+endif
 
 override_dh_auto_build:
 	$(MAKE) all




More information about the Python-apps-commits mailing list