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 E6AC31382C5 for ; Sat, 5 Jun 2021 21:20:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7A456E0AF0; Sat, 5 Jun 2021 21:20:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 4AA26E0AF0 for ; Sat, 5 Jun 2021 21:20:27 +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 39356335CCD for ; Sat, 5 Jun 2021 21:20:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 559D17A4 for ; Sat, 5 Jun 2021 21:20:23 +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: <1622928010.4cf245422cc7d5747abd0d8a9a3aa690e96fa1dc.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/bitarray/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/bitarray/Manifest dev-python/bitarray/bitarray-2.0.1.ebuild X-VCS-Directories: dev-python/bitarray/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4cf245422cc7d5747abd0d8a9a3aa690e96fa1dc X-VCS-Branch: master Date: Sat, 5 Jun 2021 21:20:23 +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: 696b9c94-f8d7-41c7-874a-ede82bfee8ca X-Archives-Hash: 50e8d49f774f7856b29d98e77068112d commit: 4cf245422cc7d5747abd0d8a9a3aa690e96fa1dc Author: Michał Górny gentoo org> AuthorDate: Sat Jun 5 21:20:10 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jun 5 21:20:10 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cf24542 dev-python/bitarray: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/bitarray/Manifest | 1 - dev-python/bitarray/bitarray-2.0.1.ebuild | 21 --------------------- 2 files changed, 22 deletions(-) diff --git a/dev-python/bitarray/Manifest b/dev-python/bitarray/Manifest index 3e33ee47522..efcc281218e 100644 --- a/dev-python/bitarray/Manifest +++ b/dev-python/bitarray/Manifest @@ -1,2 +1 @@ -DIST bitarray-2.0.1.tar.gz 69368 BLAKE2B 4acc490998e058e3882db2d58ad80b8c275999f49a7a76604091beae8015e7290691f6b34947c3376795b9dc5643592ab7fd09ef5a482a29e4e154616926e444 SHA512 091a0e7b1ddbdb804241eb4f51c9167dcfefb55d5bcef1eaa617ac77593a58113b47f57be83ceed47a91bc5d8d15a8a2e6053a10243323b9f7c0908444ab03af DIST bitarray-2.1.0.tar.gz 71169 BLAKE2B 8d82d49ac309605d989d29d492dbb94dd59c633f0987220ed28bbca7d2c3b0c4566ce147d0f65893c5dfaf1c2f702870d95181dfaa969050e13bcd4a9664ef51 SHA512 e91200b8829b63f297a1882fab293ac007991740a739587ba473abce183aa79a85e08db8a0fca5729b6e1d3e130965b2f14dc40acccf12d3231852498e2fb141 diff --git a/dev-python/bitarray/bitarray-2.0.1.ebuild b/dev-python/bitarray/bitarray-2.0.1.ebuild deleted file mode 100644 index eadde220910..00000000000 --- a/dev-python/bitarray/bitarray-2.0.1.ebuild +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..10} ) -DISTUTILS_USE_SETUPTOOLS=no - -inherit distutils-r1 - -DESCRIPTION="Efficient arrays of booleans -- C extension" -HOMEPAGE="https://github.com/ilanschnell/bitarray https://pypi.org/project/bitarray/" -SRC_URI="mirror://pypi/b/${PN}/${P}.tar.gz" - -SLOT="0" -LICENSE="PSF-2" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" - -python_test() { - "${EPYTHON}" bitarray/test_bitarray.py -v || die "Tests fail with ${EPYTHON}" -}