From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 65ACF138351 for ; Sun, 29 Mar 2020 09:50:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ADFE5E0AA5; Sun, 29 Mar 2020 09:50:23 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 97E68E0AA5 for ; Sun, 29 Mar 2020 09:50:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6A2E334FAEB for ; Sun, 29 Mar 2020 09:50:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 62F0CAF for ; Sun, 29 Mar 2020 09:50:15 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1585475383.9c3376e62f7bd28114a3494e687aa7de1a62c025.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/statsd/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/statsd/Manifest dev-python/statsd/statsd-3.2.1.ebuild X-VCS-Directories: dev-python/statsd/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9c3376e62f7bd28114a3494e687aa7de1a62c025 X-VCS-Branch: master Date: Sun, 29 Mar 2020 09:50:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5f4dcfa5-e693-4266-b02b-870d3ff2524c X-Archives-Hash: 989e229839bef9bc64aa7018cd08e868 commit: 9c3376e62f7bd28114a3494e687aa7de1a62c025 Author: Michał Górny gentoo org> AuthorDate: Sun Mar 29 09:18:33 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Mar 29 09:49:43 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c3376e6 dev-python/statsd: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/statsd/Manifest | 1 - dev-python/statsd/statsd-3.2.1.ebuild | 30 ------------------------------ 2 files changed, 31 deletions(-) diff --git a/dev-python/statsd/Manifest b/dev-python/statsd/Manifest index 0ebc57642f6..843b002b020 100644 --- a/dev-python/statsd/Manifest +++ b/dev-python/statsd/Manifest @@ -1,2 +1 @@ -DIST statsd-3.2.1.tar.gz 166047 BLAKE2B b0bf102823cefb8a698b759881ebb395c7408b8b5fff7cf304aaa0ecbad2fa8381fe05efa3cdd9c36c44c7188e46173235f9fe2cbed9fb940d8d5231f455d6bc SHA512 c5166fabcef2158aeb29b07b9bd1d241bc30847eb0e2c7694ee097b3a262e2590189ee10daecb368807002bd96fed16e749ca744b51b5e946d48fe2931a0d8e8 DIST statsd-3.3.0.tar.gz 259045 BLAKE2B 015eb32d40d1eb45d64266f0bd62d9496a7eb8815dccf4ad482bb3b81b45fceef14a25893b05ad3b5a8da8582434a46725598a90ebd06c6120dac32169a1f201 SHA512 e2693bc7f179e275c53044d13a4685dd72ebd47adafcab5064e803fbf9e8df4a0f20f61c3695846d3c33178be17dd7286f487213fa2bd8545ed1612e200c8f36 diff --git a/dev-python/statsd/statsd-3.2.1.ebuild b/dev-python/statsd/statsd-3.2.1.ebuild deleted file mode 100644 index f0e90c86cb0..00000000000 --- a/dev-python/statsd/statsd-3.2.1.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_6 pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="A simple statsd client" -HOMEPAGE="https://github.com/jsocol/pystatsd - https://pypi.org/project/statsd/" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/nose[${PYTHON_USEDEP}] - )" - -python_test() { - nosetests --verbose || die -}