diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2015-04-04 01:54:21 +0000 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2015-04-04 01:54:21 +0000 |
commit | b87ce2bd9bdb16a76724d1ceb583ca953e47e1e7 (patch) | |
tree | d4549205ff48b095658c662d9d3130f1e27a2461 /dev-python/stevedore | |
parent | Fix feed-0.3.9.2 build with utf8-string-1.0, patch by Alexander Vershilov (qn... (diff) | |
download | gentoo-2-b87ce2bd9bdb16a76724d1ceb583ca953e47e1e7.tar.gz gentoo-2-b87ce2bd9bdb16a76724d1ceb583ca953e47e1e7.tar.bz2 gentoo-2-b87ce2bd9bdb16a76724d1ceb583ca953e47e1e7.zip |
fixing doc builds
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x33ED3FD25AFC78BA)
Diffstat (limited to 'dev-python/stevedore')
-rw-r--r-- | dev-python/stevedore/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/stevedore/stevedore-1.3.0.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/dev-python/stevedore/ChangeLog b/dev-python/stevedore/ChangeLog index 422e4fe71f30..5e5ec7e9b6dd 100644 --- a/dev-python/stevedore/ChangeLog +++ b/dev-python/stevedore/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/stevedore # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/stevedore/ChangeLog,v 1.27 2015/03/25 18:43:56 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/stevedore/ChangeLog,v 1.28 2015/04/04 01:54:21 prometheanfire Exp $ + + 04 Apr 2015; Matthew Thode <prometheanfire@gentoo.org> stevedore-1.3.0.ebuild: + fixing doc builds *stevedore-1.3.0 (25 Mar 2015) diff --git a/dev-python/stevedore/stevedore-1.3.0.ebuild b/dev-python/stevedore/stevedore-1.3.0.ebuild index fb7fb7bbe887..b3d9a75f0039 100644 --- a/dev-python/stevedore/stevedore-1.3.0.ebuild +++ b/dev-python/stevedore/stevedore-1.3.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/stevedore/stevedore-1.3.0.ebuild,v 1.1 2015/03/25 18:43:56 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/stevedore/stevedore-1.3.0.ebuild,v 1.2 2015/04/04 01:54:21 prometheanfire Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 python3_3 python3_4 ) @@ -8,7 +8,7 @@ PYTHON_COMPAT=( python2_7 python3_3 python3_4 ) inherit distutils-r1 DESCRIPTION="Manage dynamic plugins for Python applications" -HOMEPAGE="https://github.com/dreamhost/stevedore https://pypi.python.org/pypi/stevedore" +HOMEPAGE="https://github.com/openstack/stevedore https://pypi.python.org/pypi/stevedore" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" @@ -38,7 +38,7 @@ DEPEND=" RDEPEND=">=dev-python/six-1.9.0[${PYTHON_USEDEP}]" python_compile_all() { - use doc && emake -C docs html + use doc && ${EPYTHON} setup.py build_sphinx } python_test() { @@ -46,7 +46,7 @@ python_test() { } python_install_all() { - use doc && local HTML_DOCS=( docs/build/. ) + use doc && local HTML_DOCS=( doc/build/html/. ) distutils-r1_python_install_all } |