diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2016-08-22 10:34:49 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2016-08-22 10:56:17 +0200 |
commit | 74a07ffd1574d848c49e26c5543db331afd64461 (patch) | |
tree | 71a0e4890072462482e43516438746c820c05c6c /dev-python/rope | |
parent | dev-util/radare2: bump up to 0.10.5 (diff) | |
download | gentoo-74a07ffd1574d848c49e26c5543db331afd64461.tar.gz gentoo-74a07ffd1574d848c49e26c5543db331afd64461.tar.bz2 gentoo-74a07ffd1574d848c49e26c5543db331afd64461.zip |
dev-python/rope: Stable for amd64. Retroactively mark stable for the remaining arches using the ALLARCHES policy.
Package-Manager: portage-2.2.28
Diffstat (limited to 'dev-python/rope')
-rw-r--r-- | dev-python/rope/rope-0.10.3.ebuild | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/dev-python/rope/rope-0.10.3.ebuild b/dev-python/rope/rope-0.10.3.ebuild index 1e5928a8c9e7..8b8a0b2e9a58 100644 --- a/dev-python/rope/rope-0.10.3.ebuild +++ b/dev-python/rope/rope-0.10.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" IUSE="doc" # Dependency for docbuild documentation which is not noted in @@ -28,15 +28,14 @@ python_test() { } python_compile_all() { - local i; if use doc; then - pushd docs > /dev/null + pushd docs > /dev/null || die mkdir build || die - for i in ./*.rst - do + local i + for i in ./*.rst; do rst2html.py $i > ./build/${i/rst/html} || die done - popd > /dev/null + popd > /dev/null || die fi } |