summaryrefslogtreecommitdiff
path: root/dev-python/bitarray/bitarray-2.9.1.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-12-24 07:29:19 +0100
committerMichał Górny <mgorny@gentoo.org>2023-12-24 07:59:55 +0100
commit4accce215be300eb9b709f33ed5a150bc647076b (patch)
treed0d8e69f3c7a5af361294e82c230cb1cc3d73c28 /dev-python/bitarray/bitarray-2.9.1.ebuild
parent879de0d4a28e3a043639a894c41c125bb3e07f6b (diff)
downloadgentoo-4accce215be300eb9b709f33ed5a150bc647076b.tar.gz
gentoo-4accce215be300eb9b709f33ed5a150bc647076b.tar.bz2
gentoo-4accce215be300eb9b709f33ed5a150bc647076b.zip
dev-python/bitarray: Bump to 2.9.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/bitarray/bitarray-2.9.1.ebuild')
-rw-r--r--dev-python/bitarray/bitarray-2.9.1.ebuild24
1 files changed, 24 insertions, 0 deletions
diff --git a/dev-python/bitarray/bitarray-2.9.1.ebuild b/dev-python/bitarray/bitarray-2.9.1.ebuild
new file mode 100644
index 000000000000..952aef38021e
--- /dev/null
+++ b/dev-python/bitarray/bitarray-2.9.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Efficient arrays of booleans -- C extension"
+HOMEPAGE="
+ https://github.com/ilanschnell/bitarray/
+ https://pypi.org/project/bitarray/
+"
+
+SLOT="0"
+LICENSE="PSF-2"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+
+python_test() {
+ "${EPYTHON}" bitarray/test_bitarray.py -v || die "Tests fail with ${EPYTHON}"
+}