diff options
author | 2014-11-01 19:57:16 +0000 | |
---|---|---|
committer | 2014-11-01 19:57:16 +0000 | |
commit | b13099b2bcb2bd645b83dee2ba3fb017d37e42f7 (patch) | |
tree | 6723931fdea9027f7a9d83cc688876629568ff6c /dev-python/pyrax | |
parent | Replace the octal patch with a dumb echo patch to fix printf %b behavior and ... (diff) | |
download | gentoo-2-b13099b2bcb2bd645b83dee2ba3fb017d37e42f7.tar.gz gentoo-2-b13099b2bcb2bd645b83dee2ba3fb017d37e42f7.tar.bz2 gentoo-2-b13099b2bcb2bd645b83dee2ba3fb017d37e42f7.zip |
add version 1.9.2
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
Diffstat (limited to 'dev-python/pyrax')
-rw-r--r-- | dev-python/pyrax/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/pyrax/pyrax-1.9.2.ebuild | 54 |
2 files changed, 60 insertions, 1 deletions
diff --git a/dev-python/pyrax/ChangeLog b/dev-python/pyrax/ChangeLog index ee7dd22698e1..0728b049a606 100644 --- a/dev-python/pyrax/ChangeLog +++ b/dev-python/pyrax/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pyrax # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyrax/ChangeLog,v 1.13 2014/07/06 12:46:50 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyrax/ChangeLog,v 1.14 2014/11/01 19:57:16 alunduil Exp $ + +*pyrax-1.9.2 (01 Nov 2014) + + 01 Nov 2014; Alex Brandt <alunduil@gentoo.org> +pyrax-1.9.2.ebuild: + add version 1.9.2 06 Jul 2014; Michał Górny <mgorny@gentoo.org> pyrax-1.3.6.ebuild, pyrax-1.4.3.ebuild, pyrax-1.4.7-r1.ebuild, pyrax-1.4.7.ebuild, diff --git a/dev-python/pyrax/pyrax-1.9.2.ebuild b/dev-python/pyrax/pyrax-1.9.2.ebuild new file mode 100644 index 000000000000..c52ef27723e9 --- /dev/null +++ b/dev-python/pyrax/pyrax-1.9.2.ebuild @@ -0,0 +1,54 @@ +# 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.9.2.ebuild,v 1.1 2014/11/01 19:57:16 alunduil Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="Python language bindings for OpenStack Clouds" +HOMEPAGE="https://github.com/rackspace/pyrax" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples test" + +CDEPEND=" + dev-python/httplib2[${PYTHON_USEDEP}] + dev-python/keyring[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + >=dev-python/python-novaclient-2.13.0[${PYTHON_USEDEP}] + dev-python/rackspace-novaclient[${PYTHON_USEDEP}] + >=dev-python/requests-2.2.1[${PYTHON_USEDEP}] + >=dev-python/six-1.5.2[${PYTHON_USEDEP}] +" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + ${CDEPEND} + dev-python/nose[${PYTHON_USEDEP}] + dev-python/rax-scheduled-images-python-novaclient-ext[${PYTHON_USEDEP}] + ) +" +RDEPEND="${CDEPEND}" + +python_test() { + ebegin 'patching tests/unit/test_utils.py' + sed \ + -e '92,100d' \ + -i tests/unit/test_utils.py + STATUS=$? + eend ${STATUS} + [[ ${STATUS} -gt 0 ]] && die + + nosetests tests/unit || die "Tests failed under ${EPYTHON}" +} + +python_install_all() { + use examples && local EXAMPLES=( samples/. ) + + distutils-r1_python_install_all +} |