summaryrefslogtreecommitdiff
path: root/dev-python/bitarray/bitarray-2.3.7.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2022-02-22 08:38:30 +0100
committerMichał Górny <mgorny@gentoo.org>2022-02-22 08:48:54 +0100
commitda93e201f290d0627d04eb6b8413d5e714dcc26a (patch)
tree3de0d354863fce119db6dedbf396e2fc91a3f844 /dev-python/bitarray/bitarray-2.3.7.ebuild
parent687bf2216eb32ce2619ba6a8f4dbbc8eee59f967 (diff)
downloadgentoo-da93e201f290d0627d04eb6b8413d5e714dcc26a.tar.gz
gentoo-da93e201f290d0627d04eb6b8413d5e714dcc26a.tar.bz2
gentoo-da93e201f290d0627d04eb6b8413d5e714dcc26a.zip
dev-python/bitarray: Bump to 2.3.7
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/bitarray/bitarray-2.3.7.ebuild')
-rw-r--r--dev-python/bitarray/bitarray-2.3.7.ebuild23
1 files changed, 23 insertions, 0 deletions
diff --git a/dev-python/bitarray/bitarray-2.3.7.ebuild b/dev-python/bitarray/bitarray-2.3.7.ebuild
new file mode 100644
index 000000000000..75035a316dcc
--- /dev/null
+++ b/dev-python/bitarray/bitarray-2.3.7.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+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}"
+}