summaryrefslogtreecommitdiff
path: root/dev-python/locustio
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/locustio
parent7bc9c63c9da678a7e6fceb095d56c634afd22c56 (diff)
gentoo resync : 15.01.2020
Diffstat (limited to 'dev-python/locustio')
-rw-r--r--dev-python/locustio/Manifest4
-rw-r--r--dev-python/locustio/locustio-0.7.3-r1.ebuild37
-rw-r--r--dev-python/locustio/locustio-0.9.0.ebuild4
3 files changed, 3 insertions, 42 deletions
diff --git a/dev-python/locustio/Manifest b/dev-python/locustio/Manifest
index a174aca9a1d9..03e46f707a89 100644
--- a/dev-python/locustio/Manifest
+++ b/dev-python/locustio/Manifest
@@ -1,5 +1,3 @@
-DIST locustio-0.7.3.tar.gz 89300 BLAKE2B 4fba25ff54686a35f95de15766e38ffec0de24eae7e3100275dcdd25ef7dee1bccfbd1d31458a56f35a8ee5afaeea6c91ce40be2bdeb77ab7f9d663b378782b2 SHA512 fe2434691218be0749c0bf7c2c26b6b3172b7dd69898667441aa98a67ac5e5fbb513aebd27bd54c10f423da452f734c2d6ab7a52f4641755439cd3b81a82eee4
DIST locustio-0.9.0.tar.gz 226870 BLAKE2B 595042f110f08ddb6bfdb9642f91448a0fb7229fcffcaa1392fdb351ac5106304e2743801134f4f87fab68b8f098122c88cdedb10566ed70035480ad69755e58 SHA512 9c51fa3af784b4b653fa5f55623ef8ec5eb6a94b8f3eacab97deeb7f5805a96b5467344d653a8916975f547d5a7a7ff63c83ffb8c289e805ccd5bb577aac04d7
-EBUILD locustio-0.7.3-r1.ebuild 904 BLAKE2B da6dff8bf893cecf5ce2abb8e34ea58a6568aa380d57339d8f54d4aed867efad7651681ff218ec76f577e89124e8674de4fcbb6b2872db60f46f30a0f062804b SHA512 983cf811b33ded53e5e2adb652b622632d0095e49c00a8b65aa7215c8b18d80b3a33004bc054b6572cada44ccc4097875c788e0fa1183ab96b60187bda3b08be
-EBUILD locustio-0.9.0.ebuild 983 BLAKE2B 2beabd2ee57a7bf67071f4f6cd9e443f92dde0c667884daef1f72c05a18eb406ad5d9d8511b5a59131f5720e306d528822436f1f888d18f00e5f88d787d9feaa SHA512 ac0c12a83c26e05bf4945adbcc848f6ebd379ca68ee323ac44849369909b2c89903529e6c016d8a45aea5f22cb95160ac2f5e2a162df1a045fcd6a1309ccb649
+EBUILD locustio-0.9.0.ebuild 969 BLAKE2B 5e00df9f31cf06422ab99572e5abbc1951f25e7c5ed0bdbbb6873ed8e3372ebae421e3cd8313af35434156cf65c27062343cbafac21eb06761c4e10f6012f9e9 SHA512 f893a42cabc1942e7b0f7f36b64deaae383f60835530157c77155817cfdbab282e3ac0aee5842ba41d8296f50c91cde9707a27b9fa213ac7c4c583ba3426389a
MISC metadata.xml 366 BLAKE2B a5b3f35409c984368b5fa0b7ce3713ead52af9bdb0dae2c18f4224e7c8b392eadf6350471ee4e928b7e39aa82ffdb8ca5b755562073430313357d1ff1e2c6573 SHA512 bfa39e9bf81a8fa9f1ac9fbd635daecbd3856a240bbeccaa8ee9afc632a21c07ccb2b5a6afd15008a828d2ca7fdacdc0825c2381636888a4f044f2ac0c5c311c
diff --git a/dev-python/locustio/locustio-0.7.3-r1.ebuild b/dev-python/locustio/locustio-0.7.3-r1.ebuild
deleted file mode 100644
index 8830bfd9b640..000000000000
--- a/dev-python/locustio/locustio-0.7.3-r1.ebuild
+++ /dev/null
@@ -1,37 +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="A python utility for doing easy, distributed load testing of a web site"
-HOMEPAGE="https://locust.io/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND="test? (
- dev-python/unittest2[${PYTHON_USEDEP}]
- dev-python/mock[${PYTHON_USEDEP}]
- dev-python/pyzmq[${PYTHON_USEDEP}]
- )"
-RDEPEND=">=dev-python/gevent-1.0.1[${PYTHON_USEDEP}]
- >=dev-python/flask-0.10.1[${PYTHON_USEDEP}]
- >=dev-python/requests-2.4.1[${PYTHON_USEDEP}]
- >=dev-python/msgpack-0.4.2[${PYTHON_USEDEP}]"
-
-python_test() {
- esetup.py test
-}
-
-python_prepare_all() {
- # allow useage of renamed msgpack
- sed -i '/^msgpack/d' setup.py || die
- distutils-r1_python_prepare_all
-}
diff --git a/dev-python/locustio/locustio-0.9.0.ebuild b/dev-python/locustio/locustio-0.9.0.ebuild
index 0a39fd42fe4c..8195cc9dec4e 100644
--- a/dev-python/locustio/locustio-0.9.0.ebuild
+++ b/dev-python/locustio/locustio-0.9.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-PYTHON_COMPAT=( python2_7 python3_{5,6} )
+PYTHON_COMPAT=( python3_6 )
inherit distutils-r1
DESCRIPTION="A python utility for doing easy, distributed load testing of a web site"