summaryrefslogtreecommitdiff
path: root/dev-python/bitarray/bitarray-3.3.1.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-04-05 07:59:57 +0200
committerMichał Górny <mgorny@gentoo.org>2025-04-05 08:37:44 +0200
commit0299c1d32603366e95c2c33649d9862684fd8452 (patch)
treef8583147bf00463a9e1b514027c0ae57b398e1cf /dev-python/bitarray/bitarray-3.3.1.ebuild
parent9cac726bc218756bed512ebe33c2ff41d741072b (diff)
downloadgentoo-0299c1d32603366e95c2c33649d9862684fd8452.tar.gz
gentoo-0299c1d32603366e95c2c33649d9862684fd8452.tar.bz2
gentoo-0299c1d32603366e95c2c33649d9862684fd8452.zip
dev-python/bitarray: Bump to 3.3.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/bitarray/bitarray-3.3.1.ebuild')
-rw-r--r--dev-python/bitarray/bitarray-3.3.1.ebuild24
1 files changed, 24 insertions, 0 deletions
diff --git a/dev-python/bitarray/bitarray-3.3.1.ebuild b/dev-python/bitarray/bitarray-3.3.1.ebuild
new file mode 100644
index 000000000000..1a58579b4295
--- /dev/null
+++ b/dev-python/bitarray/bitarray-3.3.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2025 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..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Efficient arrays of booleans -- C extension"
+HOMEPAGE="
+ https://github.com/ilanschnell/bitarray/
+ https://pypi.org/project/bitarray/
+"
+
+LICENSE="PSF-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+
+python_test() {
+ "${EPYTHON}" bitarray/test_bitarray.py -v || die "Tests fail with ${EPYTHON}"
+}