[Python-modules-commits] r21037 - in packages/python-networkx/trunk/debian (changelog rules)
morph at users.alioth.debian.org
morph at users.alioth.debian.org
Tue Apr 3 16:57:56 UTC 2012
Date: Tuesday, April 3, 2012 @ 16:57:54
Author: morph
Revision: 21037
* debian/rules
- set MPLCONFIGDIR to current directory when building the doc, fixing a
FTBFS; thanks to Lucas Nussbaum for the report; Closes: #665038
Modified:
packages/python-networkx/trunk/debian/changelog
packages/python-networkx/trunk/debian/rules
Modified: packages/python-networkx/trunk/debian/changelog
===================================================================
--- packages/python-networkx/trunk/debian/changelog 2012-04-03 15:31:28 UTC (rev 21036)
+++ packages/python-networkx/trunk/debian/changelog 2012-04-03 16:57:54 UTC (rev 21037)
@@ -1,3 +1,11 @@
+python-networkx (1.6-2) UNRELEASED; urgency=low
+
+ * debian/rules
+ - set MPLCONFIGDIR to current directory when building the doc, fixing a
+ FTBFS; thanks to Lucas Nussbaum for the report; Closes: #665038
+
+ -- Sandro Tosi <morph at debian.org> Tue, 03 Apr 2012 00:22:03 +0200
+
python-networkx (1.6-1) unstable; urgency=low
* New upstream release
Modified: packages/python-networkx/trunk/debian/rules
===================================================================
--- packages/python-networkx/trunk/debian/rules 2012-04-03 15:31:28 UTC (rev 21036)
+++ packages/python-networkx/trunk/debian/rules 2012-04-03 16:57:54 UTC (rev 21037)
@@ -29,8 +29,8 @@
done
build-indep:
- # build doc
- make -C doc dist PYTHONPATH=../$(PYLIBPATH)
+ # build doc, run in a separate shell, so we can export MPLCONFIGDIR
+ (export MPLCONFIGDIR=. ; make -C doc dist PYTHONPATH=../$(PYLIBPATH))
override_dh_install:
# Install w/o compiling *.pyc files
More information about the Python-modules-commits
mailing list