[Python-modules-commits] r33591 - in packages/python-dmidecode/trunk/debian (changelog rules)

morph at users.alioth.debian.org morph at users.alioth.debian.org
Sun Aug 2 13:53:08 UTC 2015


    Date: Sunday, August 2, 2015 @ 13:53:02
  Author: morph
Revision: 33591

code is incompatible with std=gnu11 (default in GCC5), so set std=gnu89

Modified:
  packages/python-dmidecode/trunk/debian/changelog
  packages/python-dmidecode/trunk/debian/rules

Modified: packages/python-dmidecode/trunk/debian/changelog
===================================================================
--- packages/python-dmidecode/trunk/debian/changelog	2015-08-02 13:29:22 UTC (rev 33590)
+++ packages/python-dmidecode/trunk/debian/changelog	2015-08-02 13:53:02 UTC (rev 33591)
@@ -3,10 +3,11 @@
   * New upstream release
   * debian/rules
     - run tests at build time
+    - code is incompatible with std=gnu11 (default in GCC5), so set std=gnu89
   * debian/patches/
     - drop patches, merged upstream
 
- -- Sandro Tosi <morph at debian.org>  Sun, 02 Aug 2015 13:29:03 +0100
+ -- Sandro Tosi <morph at debian.org>  Sun, 02 Aug 2015 14:52:43 +0100
 
 python-dmidecode (3.12.1-1) experimental; urgency=medium
 

Modified: packages/python-dmidecode/trunk/debian/rules
===================================================================
--- packages/python-dmidecode/trunk/debian/rules	2015-08-02 13:29:22 UTC (rev 33590)
+++ packages/python-dmidecode/trunk/debian/rules	2015-08-02 13:53:02 UTC (rev 33591)
@@ -2,6 +2,9 @@
 PACKAGE = $(shell dh_listpackages|head -n1)
 PYTHON2  = $(shell pyversions -r)
 
+# Not to get undefined symbol: dmixml_GetContent
+export CFLAGS=${CFLAGS-} -std=gnu89
+
 %:
 	dh $@ --with python2
 




More information about the Python-modules-commits mailing list