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 C25FD138350 for ; Fri, 27 Mar 2020 08:58:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A1790E0E71; Fri, 27 Mar 2020 08:58:32 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 8B20DE0E71 for ; Fri, 27 Mar 2020 08:58:32 +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 B37F234FA46 for ; Fri, 27 Mar 2020 08:58:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 80D171B1 for ; Fri, 27 Mar 2020 08:58:27 +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: <1585299478.a402347c93a553f64ed8a95eb2c6d0132713ac1c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/extras/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/extras/Manifest dev-python/extras/extras-0.0.3.ebuild X-VCS-Directories: dev-python/extras/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a402347c93a553f64ed8a95eb2c6d0132713ac1c X-VCS-Branch: master Date: Fri, 27 Mar 2020 08:58:27 +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: de221260-fc86-4c4b-aca8-f156b3e44636 X-Archives-Hash: 98abc559d7f62376a4c5a2c0088f1158 commit: a402347c93a553f64ed8a95eb2c6d0132713ac1c Author: Michał Górny gentoo org> AuthorDate: Fri Mar 27 08:44:17 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Mar 27 08:57:58 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a402347c dev-python/extras: Remove redundant versions Signed-off-by: Michał Górny gentoo.org> dev-python/extras/Manifest | 1 - dev-python/extras/extras-0.0.3.ebuild | 27 --------------------------- 2 files changed, 28 deletions(-) diff --git a/dev-python/extras/Manifest b/dev-python/extras/Manifest index 23fb18bdd1a..77135a39398 100644 --- a/dev-python/extras/Manifest +++ b/dev-python/extras/Manifest @@ -1,2 +1 @@ -DIST extras-0.0.3.tar.gz 6231 BLAKE2B 28f60a341628f87f2fbd333de8f2d6e37d42890a186e42d262079f26beca5f9452860b9c434c6953fb8395d13903c2fe63969726d1c1cb4bcc0a469efec8fb13 SHA512 7b08d094717a27fbb522d49c0c538e98baccef6540216479d176b55b94f3f0b97c4b70ed48f3802a1bf08a58fe9a319a113d4ca04d9dadcb85e3a99bf7490a3c DIST extras-1.0.0.tar.gz 6759 BLAKE2B 341bce7f172afeb9e2a5179ab392d396920dc8ec2b9a6e734daf8668c7f329d9a64de6f3f90b70f8e42d5e111ef196315341c0bb0f347f13ba4974d970695fac SHA512 510c796628f28db90bb96c7c9ba5fc9b2b950d2968e219efe67f3899bbe7ef68fe5de1494f8fd640f13a1ccd329e7dac9cd38aa965ab1e07c4cd287c04da50fb diff --git a/dev-python/extras/extras-0.0.3.ebuild b/dev-python/extras/extras-0.0.3.ebuild deleted file mode 100644 index 4531f414e8b..00000000000 --- a/dev-python/extras/extras-0.0.3.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 python3_6 pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Useful extra bits for Python that should be in the standard library" -HOMEPAGE="https://github.com/testing-cabal/extras/ https://pypi.org/project/extras/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86" -IUSE="test" -RESTRICT="!test? ( test )" - -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/testtools[${PYTHON_USEDEP}] )" -RDEPEND="" - -python_test() { - "${PYTHON}" ${PN}/tests/test_extras.py || die -}