prometheanfire 14/04/01 19:21:48 Modified: ChangeLog Added: pyrax-1.7.2.ebuild Log: bup! (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x2471eb3e40ac5ac3)
Revision Changes Path 1.12 dev-python/pyrax/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyrax/ChangeLog?rev=1.12&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyrax/ChangeLog?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyrax/ChangeLog?r1=1.11&r2=1.12 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pyrax/ChangeLog,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- ChangeLog 17 Nov 2013 04:20:42 -0000 1.11 +++ ChangeLog 1 Apr 2014 19:21:48 -0000 1.12 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pyrax -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyrax/ChangeLog,v 1.11 2013/11/17 04:20:42 prometheanfire Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyrax/ChangeLog,v 1.12 2014/04/01 19:21:48 prometheanfire Exp $ + +*pyrax-1.7.2 (01 Apr 2014) + + 01 Apr 2014; Matthew Thode <prometheanf...@gentoo.org> +pyrax-1.7.2.ebuild: + bup! 17 Nov 2013; Matthew Thode <prometheanf...@gentoo.org> pyrax-1.6.1.ebuild: 1.6.1 with restricted tests due to upstream bug 1.1 dev-python/pyrax/pyrax-1.7.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyrax/pyrax-1.7.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyrax/pyrax-1.7.2.ebuild?rev=1.1&content-type=text/plain Index: pyrax-1.7.2.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyrax/pyrax-1.7.2.ebuild,v 1.1 2014/04/01 19:21:48 prometheanfire Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) inherit distutils-r1 DESCRIPTION="Python SDK for OpenStack/Rackspace APIs" HOMEPAGE="https://github.com/openstack/python-novaclient" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test keyring" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] test? ( dev-python/mock[${PYTHON_USEDEP}] dev-python/nose[${PYTHON_USEDEP}] >=dev-python/six-1.5.2[${PYTHON_USEDEP}] >=dev-python/requests-2.2.1[${PYTHON_USEDEP}] keyring? ( dev-python/keyring[${PYTHON_USEDEP}] ) >=dev-python/python-novaclient-2.13.0[${PYTHON_USEDEP}] dev-python/rackspace-novaclient[${PYTHON_USEDEP}] >=dev-python/python-swiftclient-1.5.0[${PYTHON_USEDEP}] )" RDEPEND=">=dev-python/requests-2.2.1[${PYTHON_USEDEP}] >=dev-python/six-1.5.2[${PYTHON_USEDEP}] keyring? ( dev-python/keyring[${PYTHON_USEDEP}] ) >=dev-python/python-novaclient-2.13.0[${PYTHON_USEDEP}] >=dev-python/python-swiftclient-1.5.0[${PYTHON_USEDEP}] dev-python/rackspace-novaclient[${PYTHON_USEDEP}]" python_test() { "${PYTHON}" -m nose -v tests/unit --with-coverage --cover-package=pyrax || die # "${PYTHON}" -m nose -w tests/unit || die # nosetests --with-coverage --cover-package=pyrax --cover-erase -w tests/unit/ || die }