[Python-modules-commits] r22764 - in packages/ipython/trunk/debian (changelog rules)

jtaylor-guest at users.alioth.debian.org jtaylor-guest at users.alioth.debian.org
Mon Oct 15 23:02:48 UTC 2012


    Date: Monday, October 15, 2012 @ 23:02:46
  Author: jtaylor-guest
Revision: 22764

drop LC_ALL=C.UTF-8 from build and install, not required anymore

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

Modified: packages/ipython/trunk/debian/changelog
===================================================================
--- packages/ipython/trunk/debian/changelog	2012-10-15 23:02:42 UTC (rev 22763)
+++ packages/ipython/trunk/debian/changelog	2012-10-15 23:02:46 UTC (rev 22764)
@@ -5,6 +5,7 @@
   * depend on libjs-jquery >= 1.7 (Closes: #685986)
   * drop build depends on dh-linktree and libjs-jquery-ui (Closes: #685985)
     - needs to be added again when we can use the packaged jquery-ui
+  * drop LC_ALL=C.UTF-8 from build and install, not required anymore
 
  -- Julian Taylor <jtaylor.debian at googlemail.com>  Sat, 01 Sep 2012 13:56:37 +0200
 

Modified: packages/ipython/trunk/debian/rules
===================================================================
--- packages/ipython/trunk/debian/rules	2012-10-15 23:02:42 UTC (rev 22763)
+++ packages/ipython/trunk/debian/rules	2012-10-15 23:02:46 UTC (rev 22764)
@@ -17,12 +17,11 @@
 	rm -f $(CURDIR)/docs/source/_static/plot_simple.png
 	rm -f $(CURDIR)/docs/source/_static/plot_simple_python.png
 
-
 override_dh_auto_build:
 	dh_auto_build -- --executable '/usr/bin/env python'
 	# utf-8 due to https://github.com/ipython/ipython/issues/2057
 	set -e && for pyvers in $(PY3VERS); do \
-	  LC_ALL=C.UTF-8 $$pyvers setup.py build --executable '/usr/bin/env python3'; \
+	  $$pyvers setup.py build --executable '/usr/bin/env python3'; \
 	done
 
 ifeq (,$(filter nodocs,$(DEB_BUILD_OPTIONS)))
@@ -43,7 +42,7 @@
 override_dh_auto_install:
 	dh_auto_install
 	set -e && for pyvers in $(PY3VERS); do \
-	  LC_ALL=C.UTF-8 $$pyvers setup.py install --install-layout=deb \
+	  $$pyvers setup.py install --install-layout=deb \
 		--force --no-compile -O0 --root=$(CURDIR)/debian/tmp; \
 	done
 	# py3 uses entrypoints where --excutable in build has no effect




More information about the Python-modules-commits mailing list