diff options
author | Alex Brandt <alunduil@gentoo.org> | 2014-08-25 22:45:18 +0000 |
---|---|---|
committer | Alex Brandt <alunduil@gentoo.org> | 2014-08-25 22:45:18 +0000 |
commit | 648b05b1e900d4239caada653f31a3344c2318f8 (patch) | |
tree | 416960f17032cb8a0970543d4da223ba62294006 /app-admin | |
parent | Security cleanup wrt bugs 512354, 508976 (diff) | |
download | gentoo-2-648b05b1e900d4239caada653f31a3344c2318f8.tar.gz gentoo-2-648b05b1e900d4239caada653f31a3344c2318f8.tar.bz2 gentoo-2-648b05b1e900d4239caada653f31a3344c2318f8.zip |
add missing setuptools dependency
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 92FEA28B)
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/supernova/ChangeLog | 7 | ||||
-rw-r--r-- | app-admin/supernova/supernova-1.0.3-r1.ebuild | 40 |
2 files changed, 46 insertions, 1 deletions
diff --git a/app-admin/supernova/ChangeLog b/app-admin/supernova/ChangeLog index 3ae12b1fc14f..3b01958b8c7b 100644 --- a/app-admin/supernova/ChangeLog +++ b/app-admin/supernova/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-admin/supernova # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/supernova/ChangeLog,v 1.2 2014/08/25 00:13:30 alunduil Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/supernova/ChangeLog,v 1.3 2014/08/25 22:45:18 alunduil Exp $ + +*supernova-1.0.3-r1 (25 Aug 2014) + + 25 Aug 2014; Alex Brandt <alunduil@gentoo.org> +supernova-1.0.3-r1.ebuild: + add missing setuptools dependency *supernova-1.0.3 (25 Aug 2014) diff --git a/app-admin/supernova/supernova-1.0.3-r1.ebuild b/app-admin/supernova/supernova-1.0.3-r1.ebuild new file mode 100644 index 000000000000..6aff3de4616d --- /dev/null +++ b/app-admin/supernova/supernova-1.0.3-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/supernova/supernova-1.0.3-r1.ebuild,v 1.1 2014/08/25 22:45:18 alunduil Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) +DISTUTILS_SINGLE_IMPL=TRUE + +inherit bash-completion-r1 distutils-r1 vcs-snapshot + +DESCRIPTION="Use novaclient with multiple OpenStack nova environments the easy way" +HOMEPAGE="https://github.com/rackerhacker/supernova" +SRC_URI="https://github.com/major/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="bash-completion doc examples" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) +" +RDEPEND=" + >=dev-python/keyring-0.9.2[${PYTHON_USEDEP}] + dev-python/rackspace-novaclient[${PYTHON_USEDEP}] +" + +python_compile_all() { + use doc && emake -C docs html +} + +python_install_all() { + use doc && local HTML_DOCS=( docs/_build/html/. ) + use examples && local EXAMPLES=( example_configs/. ) + + distutils-r1_python_install_all + + use bash-completion && newbashcomp contrib/${PN}-completion.bash ${PN} +} |