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/BitVector/
Date: Sat, 04 Mar 2023 05:53:16
Message-Id: 1677909177.61296146ce9f61d6e625795f0bfeaa84af7f0da9.mgorny@gentoo
1 commit: 61296146ce9f61d6e625795f0bfeaa84af7f0da9
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 4 05:49:01 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 4 05:52:57 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61296146
7
8 dev-python/BitVector: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/BitVector/BitVector-3.5.0.ebuild | 21 ---------------------
13 1 file changed, 21 deletions(-)
14
15 diff --git a/dev-python/BitVector/BitVector-3.5.0.ebuild b/dev-python/BitVector/BitVector-3.5.0.ebuild
16 deleted file mode 100644
17 index eec6aa3fca91..000000000000
18 --- a/dev-python/BitVector/BitVector-3.5.0.ebuild
19 +++ /dev/null
20 @@ -1,21 +0,0 @@
21 -# Copyright 1999-2023 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( python3_{9..11} )
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="A pure-Python memory-efficient packed representation for bit arrays"
30 -HOMEPAGE="https://engineering.purdue.edu/kak/dist/ https://pypi.org/project/BitVector/"
31 -SRC_URI="https://engineering.purdue.edu/kak/dist/${P}.tar.gz"
32 -
33 -LICENSE="PSF-2"
34 -SLOT="0"
35 -KEYWORDS="amd64 x86"
36 -IUSE="test"
37 -RESTRICT="!test? ( test )"
38 -
39 -python_test() {
40 - "${PYTHON}" TestBitVector/Test.py || die "Tests fail with ${EPYTHON}"
41 -}