[Python-modules-commits] r24059 - in packages/sphinx/trunk/debian (changelog rules)
jwilk at users.alioth.debian.org
jwilk at users.alioth.debian.org
Mon Apr 29 21:37:01 UTC 2013
Date: Monday, April 29, 2013 @ 21:36:59
Author: jwilk
Revision: 24059
Run tests under LC_ALL=C.UTF-8 to work around test failures.
Modified:
packages/sphinx/trunk/debian/changelog
packages/sphinx/trunk/debian/rules
Modified: packages/sphinx/trunk/debian/changelog
===================================================================
--- packages/sphinx/trunk/debian/changelog 2013-04-29 21:05:16 UTC (rev 24058)
+++ packages/sphinx/trunk/debian/changelog 2013-04-29 21:36:59 UTC (rev 24059)
@@ -20,6 +20,7 @@
+ This release fixes parsing C++11 âstatic constexprâ declarations
(closes: #693066). Thanks to Alexandre Duret-Lutz for the bug report and
the patch.
+ * Run tests under LC_ALL=C.UTF-8 to work around test failures.
* Make it impossible to accidentally build the source package with an
.orig.tar that includes jquery.js or underscore.js.
* Refactor debian/rules.
@@ -27,7 +28,7 @@
* Use a dedicated script to extract JavaScript code for libjs-sphinxdoc.
* Add no_external_css.diff: don't use CSS files hosted on external sites.
- -- Jakub Wilk <jwilk at debian.org> Mon, 29 Apr 2013 22:56:22 +0200
+ -- Jakub Wilk <jwilk at debian.org> Mon, 29 Apr 2013 23:21:20 +0200
sphinx (1.1.3+dfsg-7) experimental; urgency=low
Modified: packages/sphinx/trunk/debian/rules
===================================================================
--- packages/sphinx/trunk/debian/rules 2013-04-29 21:05:16 UTC (rev 24058)
+++ packages/sphinx/trunk/debian/rules 2013-04-29 21:36:59 UTC (rev 24059)
@@ -54,7 +54,10 @@
find sphinx/locale/ -name '*.po' | sed -e 's/[.]po$$//' \
| xargs -t -I {} msgfmt $(msgfmt_options) {}.po -o {}.mo
ifeq "$(filter nocheck,$(DEB_BUILD_OPTIONS))" ""
+ # FIXME: https://bitbucket.org/birkenfeld/sphinx/issue/703
+ export LC_ALL=C.UTF-8 && \
$(python_all) tests/run.py --verbose --no-skip
+ export LC_ALL=C.UTF-8 && \
$(python3_all) tests/run.py --verbose
cd build/py3/ && rm -rf tests/ sphinx/pycode/Grammar.pickle
xvfb-run -a ./debian/jstest/run-tests build/html/
More information about the Python-modules-commits
mailing list