Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/statsd/
Date: Sun, 29 Mar 2020 09:50:24
Message-Id: 1585475383.9c3376e62f7bd28114a3494e687aa7de1a62c025.mgorny@gentoo
1 commit: 9c3376e62f7bd28114a3494e687aa7de1a62c025
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 09:18:33 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 09:49:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c3376e6
7
8 dev-python/statsd: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/statsd/Manifest | 1 -
13 dev-python/statsd/statsd-3.2.1.ebuild | 30 ------------------------------
14 2 files changed, 31 deletions(-)
15
16 diff --git a/dev-python/statsd/Manifest b/dev-python/statsd/Manifest
17 index 0ebc57642f6..843b002b020 100644
18 --- a/dev-python/statsd/Manifest
19 +++ b/dev-python/statsd/Manifest
20 @@ -1,2 +1 @@
21 -DIST statsd-3.2.1.tar.gz 166047 BLAKE2B b0bf102823cefb8a698b759881ebb395c7408b8b5fff7cf304aaa0ecbad2fa8381fe05efa3cdd9c36c44c7188e46173235f9fe2cbed9fb940d8d5231f455d6bc SHA512 c5166fabcef2158aeb29b07b9bd1d241bc30847eb0e2c7694ee097b3a262e2590189ee10daecb368807002bd96fed16e749ca744b51b5e946d48fe2931a0d8e8
22 DIST statsd-3.3.0.tar.gz 259045 BLAKE2B 015eb32d40d1eb45d64266f0bd62d9496a7eb8815dccf4ad482bb3b81b45fceef14a25893b05ad3b5a8da8582434a46725598a90ebd06c6120dac32169a1f201 SHA512 e2693bc7f179e275c53044d13a4685dd72ebd47adafcab5064e803fbf9e8df4a0f20f61c3695846d3c33178be17dd7286f487213fa2bd8545ed1612e200c8f36
23
24 diff --git a/dev-python/statsd/statsd-3.2.1.ebuild b/dev-python/statsd/statsd-3.2.1.ebuild
25 deleted file mode 100644
26 index f0e90c86cb0..00000000000
27 --- a/dev-python/statsd/statsd-3.2.1.ebuild
28 +++ /dev/null
29 @@ -1,30 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python3_6 pypy3 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="A simple statsd client"
40 -HOMEPAGE="https://github.com/jsocol/pystatsd
41 - https://pypi.org/project/statsd/"
42 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="MIT"
45 -SLOT="0"
46 -KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
47 -IUSE="test"
48 -RESTRICT="!test? ( test )"
49 -
50 -RDEPEND=""
51 -DEPEND="${RDEPEND}
52 - dev-python/setuptools[${PYTHON_USEDEP}]
53 - test? (
54 - dev-python/nose[${PYTHON_USEDEP}]
55 - )"
56 -
57 -python_test() {
58 - nosetests --verbose || die
59 -}