alunduil 14/09/13 20:08:04 Modified: ChangeLog Added: supernova-1.0.4.ebuild Log: bump version to 1.0.4 (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 92FEA28B)
Revision Changes Path 1.5 app-admin/supernova/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supernova/ChangeLog?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supernova/ChangeLog?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supernova/ChangeLog?r1=1.4&r2=1.5 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-admin/supernova/ChangeLog,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- ChangeLog 27 Aug 2014 18:02:02 -0000 1.4 +++ ChangeLog 13 Sep 2014 20:08:04 -0000 1.5 @@ -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.4 2014/08/27 18:02:02 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/supernova/ChangeLog,v 1.5 2014/09/13 20:08:04 alunduil Exp $ + +*supernova-1.0.4 (13 Sep 2014) + + 13 Sep 2014; Alex Brandt <alund...@gentoo.org> +supernova-1.0.4.ebuild: + bump to version 1.0.4 27 Aug 2014; Michał Górny <mgo...@gentoo.org> supernova-1.0.3-r1.ebuild: Remove USE=bash-completion, install the completion file unconditionally 1.1 app-admin/supernova/supernova-1.0.4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supernova/supernova-1.0.4.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/supernova/supernova-1.0.4.ebuild?rev=1.1&content-type=text/plain Index: supernova-1.0.4.ebuild =================================================================== # 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.4.ebuild,v 1.1 2014/09/13 20:08:04 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="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 newbashcomp contrib/${PN}-completion.bash ${PN} }