alunduil 14/09/27 20:16:02 Modified: ChangeLog Added: python-keystoneclient-0.11.1.ebuild Log: bump version to 0.11.1 Also added python3_3 target. (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key 92FEA28B)
Revision Changes Path 1.36 dev-python/python-keystoneclient/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-keystoneclient/ChangeLog?rev=1.36&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-keystoneclient/ChangeLog?rev=1.36&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-keystoneclient/ChangeLog?r1=1.35&r2=1.36 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/python-keystoneclient/ChangeLog,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- ChangeLog 21 Sep 2014 21:26:32 -0000 1.35 +++ ChangeLog 27 Sep 2014 20:16:02 -0000 1.36 @@ -1,6 +1,12 @@ # ChangeLog for dev-python/python-keystoneclient # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-keystoneclient/ChangeLog,v 1.35 2014/09/21 21:26:32 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-keystoneclient/ChangeLog,v 1.36 2014/09/27 20:16:02 alunduil Exp $ + +*python-keystoneclient-0.11.1 (27 Sep 2014) + + 27 Sep 2014; Alex Brandt <[email protected]> + +python-keystoneclient-0.11.1.ebuild: + bump version to 0.11.1 *python-keystoneclient-0.11.0 (21 Sep 2014) 1.1 dev-python/python-keystoneclient/python-keystoneclient-0.11.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-keystoneclient/python-keystoneclient-0.11.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-keystoneclient/python-keystoneclient-0.11.1.ebuild?rev=1.1&content-type=text/plain Index: python-keystoneclient-0.11.1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/python-keystoneclient/python-keystoneclient-0.11.1.ebuild,v 1.1 2014/09/27 20:16:02 alunduil Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 python3_3 ) inherit distutils-r1 DESCRIPTION="Client Library for OpenStack Identity" HOMEPAGE="https://github.com/openstack/python-keystoneclient" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~amd64-linux ~x86 ~x86-linux" IUSE="examples test" # NOTE: docs to not install due to pbr configuration issues # NOTE: dev-python/discover not actually used # dev-python/discover[${PYTHON_USEDEP}] CDEPEND=" >=dev-python/pbr-0.6[${PYTHON_USEDEP}] !~dev-python/pbr-0.7[${PYTHON_USEDEP}] <dev-python/pbr-1.0[${PYTHON_USEDEP}] " DEPEND=" dev-python/setuptools[${PYTHON_USEDEP}] ${CDEPEND} test? ( >=dev-python/coverage-3.6[${PYTHON_USEDEP}] >=dev-python/fixtures-0.3.14[${PYTHON_USEDEP}] >=dev-python/hacking-0.8[${PYTHON_USEDEP}] <dev-python/hacking-0.9[${PYTHON_USEDEP}] >=dev-python/keyring-2.1[${PYTHON_USEDEP}] !~dev-python/keyring-3.3[${PYTHON_USEDEP}] >=dev-python/lxml-2.3[${PYTHON_USEDEP}] >=dev-python/mock-1.0[${PYTHON_USEDEP}] >=dev-python/mox3-0.7.0[${PYTHON_USEDEP}] >=dev-python/oauthlib-0.6[${PYTHON_USEDEP}] >=dev-python/oslo-sphinx-2.2.0[${PYTHON_USEDEP}] >=dev-python/pycrypto-2.6[${PYTHON_USEDEP}] >=dev-python/requests-mock-0.4.0[${PYTHON_USEDEP}] >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}] !~dev-python/sphinx-1.2.0[${PYTHON_USEDEP}] <dev-python/sphinx-1.3[${PYTHON_USEDEP}] >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}] >=dev-python/testresources-0.2.4[${PYTHON_USEDEP}] >=dev-python/testtools-0.9.34[${PYTHON_USEDEP}] >=dev-python/webob-1.2.3[${PYTHON_USEDEP}] ) " RDEPEND=" ${CDEPEND} >=dev-python/Babel-1.3[${PYTHON_USEDEP}] >=dev-python/iso8601-0.1.9[${PYTHON_USEDEP}] >=dev-python/netaddr-0.7.12[${PYTHON_USEDEP}] >=dev-python/oslo-config-1.4.0[${PYTHON_USEDEP}] >=dev-python/prettytable-0.7[${PYTHON_USEDEP}] <dev-python/prettytable-0.8[${PYTHON_USEDEP}] >=dev-python/requests-1.2.1[${PYTHON_USEDEP}] !~dev-python/requests-2.4.0[${PYTHON_USEDEP}] >=dev-python/six-1.7.0[${PYTHON_USEDEP}] >=dev-python/stevedore-1.0.0[${PYTHON_USEDEP}] " python_test() { rm -rf .testrepository || die "couldn't remove '.testrepository' under ${EPYTHON}" testr init || die "testr init failed under ${EPYTHON}" testr run || die "testr run failed under ${EPYTHON}" } python_install_all() { use examples && local EXAMPLES=( examples/.) distutils-r1_python_install_all }
