diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-04-20 18:37:27 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-04-20 18:37:27 +0000 |
commit | d018231697c6cc1045f27428950638cfd29787fa (patch) | |
tree | 721fa67a7758ab58c5dbd10cc0df565c43bd943c /dev-python | |
parent | Remove cron and libc old-style virtuals, bugs 360109 and 359001. (diff) | |
download | gentoo-2-d018231697c6cc1045f27428950638cfd29787fa.tar.gz gentoo-2-d018231697c6cc1045f27428950638cfd29787fa.tar.bz2 gentoo-2-d018231697c6cc1045f27428950638cfd29787fa.zip |
Workaround bug in docutils that didn't permit installation under various locales (namely cs_CZ.utf8). This is just environment override so it installs every time.
(Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/docutils/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/docutils/docutils-0.7.ebuild | 5 |
2 files changed, 9 insertions, 3 deletions
diff --git a/dev-python/docutils/ChangeLog b/dev-python/docutils/ChangeLog index 26ddeac5a566..7f950787bb0c 100644 --- a/dev-python/docutils/ChangeLog +++ b/dev-python/docutils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/docutils # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/docutils/ChangeLog,v 1.127 2011/04/09 23:56:44 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/docutils/ChangeLog,v 1.128 2011/04/20 18:37:27 scarabeus Exp $ + + 20 Apr 2011; Tomáš Chvátal <scarabeus@gentoo.org> docutils-0.7.ebuild: + Workaround bug in docutils that didn't permit installation under various + locales (namely cs_CZ.utf8). This is just environment override so it installs + every time. 09 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> docutils-0.7.ebuild, +files/docutils-0.7-python-3.2-configparser.patch, diff --git a/dev-python/docutils/docutils-0.7.ebuild b/dev-python/docutils/docutils-0.7.ebuild index 24a5178d5d8b..35bff2b39bea 100644 --- a/dev-python/docutils/docutils-0.7.ebuild +++ b/dev-python/docutils/docutils-0.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/docutils/docutils-0.7.ebuild,v 1.15 2011/04/09 23:56:44 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/docutils/docutils-0.7.ebuild,v 1.16 2011/04/20 18:37:27 scarabeus Exp $ EAPI="3" SUPPORT_PYTHON_ABIS="1" @@ -60,7 +60,8 @@ src_compile() { pushd tools > /dev/null echo PYTHONPATH="../build-$(PYTHON -f --ABI)/lib" "$(PYTHON -f)" $([[ -f ../build-$(PYTHON -f --ABI)/lib/tools/buildhtml.py ]] && echo ../build-$(PYTHON -f --ABI)/lib/tools/buildhtml.py || echo ../tools/buildhtml.py) --input-encoding=utf-8 --stylesheet-path=../html4css1.css --traceback .. - PYTHONPATH="../build-$(PYTHON -f --ABI)/lib" "$(PYTHON -f)" $([[ -f ../build-$(PYTHON -f --ABI)/lib/tools/buildhtml.py ]] && echo ../build-$(PYTHON -f --ABI)/lib/tools/buildhtml.py || echo ../tools/buildhtml.py) --input-encoding=utf-8 --stylesheet-path=../html4css1.css --traceback .. || die "buildhtml.py failed" + LC_ALL=C LANG=C PYTHONPATH="../build-$(PYTHON -f --ABI)/lib" "$(PYTHON -f)" $([[ -f ../build-$(PYTHON -f --ABI)/lib/tools/buildhtml.py ]] && echo ../build-$(PYTHON -f +--ABI)/lib/tools/buildhtml.py || echo ../tools/buildhtml.py) --input-encoding=utf-8 --stylesheet-path=../html4css1.css --traceback .. || die "buildhtml.py failed" popd > /dev/null |