alunduil 15/07/19 20:24:12 Modified: ChangeLog Added: supernova-2.0.0.ebuild Log: add version 2.0.0 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
Revision Changes Path 1.11 app-admin/supernova/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supernova/ChangeLog?rev=1.11&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supernova/ChangeLog?rev=1.11&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supernova/ChangeLog?r1=1.10&r2=1.11 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-admin/supernova/ChangeLog,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- ChangeLog 5 Jun 2015 11:43:03 -0000 1.10 +++ ChangeLog 19 Jul 2015 20:24:12 -0000 1.11 @@ -1,6 +1,11 @@ # ChangeLog for app-admin/supernova # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/supernova/ChangeLog,v 1.10 2015/06/05 11:43:03 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/supernova/ChangeLog,v 1.11 2015/07/19 20:24:12 alunduil Exp $ + +*supernova-2.0.0 (19 Jul 2015) + + 19 Jul 2015; Alex Brandt <alund...@gentoo.org> +supernova-2.0.0.ebuild: + add version 2.0.0 05 Jun 2015; Justin Lecher <j...@gentoo.org> metadata.xml: Add github to remote-id in metadata.xml 1.1 app-admin/supernova/supernova-2.0.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supernova/supernova-2.0.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supernova/supernova-2.0.0.ebuild?rev=1.1&content-type=text/plain Index: supernova-2.0.0.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-admin/supernova/supernova-2.0.0.ebuild,v 1.1 2015/07/19 20:24:12 alunduil Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) inherit bash-completion-r1 distutils-r1 vcs-snapshot DESCRIPTION="novaclient wrapper for multiple nova environments" 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="examples test" CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" DEPEND=" ${CDEPEND} test? ( dev-python/pytest[${PYTHON_USEDEP}] ) " RDEPEND=" ${CDEPEND} dev-python/click[${PYTHON_USEDEP}] dev-python/configobj[${PYTHON_USEDEP}] >=dev-python/keyring-0.9.2[${PYTHON_USEDEP}] dev-python/python-novaclient[${PYTHON_USEDEP}] dev-python/six[${PYTHON_USEDEP}] " python_test() { distutils_install_for_testing cd "${TEST_DIR}"/lib || die py.test || die "tests failed under ${EPYTHON}" } python_install_all() { use examples && local EXAMPLES=( example_configs/. ) distutils-r1_python_install_all newbashcomp contrib/${PN}-completion.bash ${PN} }