summaryrefslogtreecommitdiff
path: root/dev-python/pyrax
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-01-15 15:51:32 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-01-15 15:51:32 +0000
commit21435953e16cda318a82334ddbadb3b5c36d9ea7 (patch)
treee1810a4b135afce04b34862ef0fab2bfaeb8aeca /dev-python/pyrax
parent7bc9c63c9da678a7e6fceb095d56c634afd22c56 (diff)
gentoo resync : 15.01.2020
Diffstat (limited to 'dev-python/pyrax')
-rw-r--r--dev-python/pyrax/Manifest3
-rw-r--r--dev-python/pyrax/metadata.xml21
-rw-r--r--dev-python/pyrax/pyrax-1.9.7.ebuild45
3 files changed, 0 insertions, 69 deletions
diff --git a/dev-python/pyrax/Manifest b/dev-python/pyrax/Manifest
deleted file mode 100644
index 8337b992ef9a..000000000000
--- a/dev-python/pyrax/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST pyrax-1.9.7.tar.gz 313170 BLAKE2B b52d87f22f546d095ce7ddd6d83559d14b432e0e910839c33b54572e3e78ec1d7f1077bdcf87fad62f695948864e6445b3a1e4635d2ec9b09973fd66b3e32dc4 SHA512 e83c5e79d49eb3095e8e196b4c9db419194131503d95737564e5a1e3e20f06aa4b53196111d8d326ac50041cd0c2590cefeb41d7d6d654112a85df867b7495f3
-EBUILD pyrax-1.9.7.ebuild 1100 BLAKE2B 630015dd662dc233212dacad764332fac37aed0597c436438f3551bd20fea34273cd5a55238d57af958cf49dada250740e72528b5fcbfd16b5e6d0a05619f63d SHA512 2bc4b3229d3ba127606b35d61b92eae904efb60f86a23bdcd08a52518f968df4cd686f66d0a962e0cbf07382248a2dc233c0dcf80a43b4ada113bd50e9525b8f
-MISC metadata.xml 695 BLAKE2B ad76557a077263a066097827d9ac06581a6fcabb034852ba237815fa79deddfb248ec8522164ba2e1b62b09b829c2416837021177307c9b4516aed482c661bdf SHA512 b396d429fc52efdfaa1fd0773d336ead34bc18cf3f03e7d9813090a5cc0dc395f3e605b409d6439d529c90c0ccf45e524bfcca99e550a40138bb278cfca29092
diff --git a/dev-python/pyrax/metadata.xml b/dev-python/pyrax/metadata.xml
deleted file mode 100644
index 36c8d0c095f2..000000000000
--- a/dev-python/pyrax/metadata.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>prometheanfire@gentoo.org</email>
- <name>Matthew Thode</name>
- </maintainer>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <longdescription lang="en">
- Python SDK for OpenStack/Rackspace APIs
- pyrax should work with most OpenStack-based cloud deployments,
- though it specifically targets the Rackspace public cloud.
- </longdescription>
- <upstream>
- <remote-id type="pypi">pyrax</remote-id>
- <remote-id type="github">rackspace/pyrax</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pyrax/pyrax-1.9.7.ebuild b/dev-python/pyrax/pyrax-1.9.7.ebuild
deleted file mode 100644
index 3e870a1e7e98..000000000000
--- a/dev-python/pyrax/pyrax-1.9.7.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-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"
-RESTRICT="!test? ( test )"
-
-CDEPEND="
- 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.9.0[${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() {
- nosetests tests/unit || die "Tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
- use examples && local EXAMPLES=( samples/. )
-
- distutils-r1_python_install_all
-}