summaryrefslogtreecommitdiff
path: root/dev-python/bitarray/bitarray-3.1.0.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-02-20 05:34:14 +0100
committerMichał Górny <mgorny@gentoo.org>2025-02-20 05:34:14 +0100
commitce78634f0413e7d43bfaa9f244e9435427949fca (patch)
tree7e668bfce35c78f2b1f15543958e26d008ee9813 /dev-python/bitarray/bitarray-3.1.0.ebuild
parent05b9746c00e76fb0b7a54c33430583365e23b2cd (diff)
downloadgentoo-ce78634f0413e7d43bfaa9f244e9435427949fca.tar.gz
gentoo-ce78634f0413e7d43bfaa9f244e9435427949fca.tar.bz2
gentoo-ce78634f0413e7d43bfaa9f244e9435427949fca.zip
dev-python/bitarray: Bump to 3.1.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/bitarray/bitarray-3.1.0.ebuild')
-rw-r--r--dev-python/bitarray/bitarray-3.1.0.ebuild24
1 files changed, 24 insertions, 0 deletions
diff --git a/dev-python/bitarray/bitarray-3.1.0.ebuild b/dev-python/bitarray/bitarray-3.1.0.ebuild
new file mode 100644
index 000000000000..1a58579b4295
--- /dev/null
+++ b/dev-python/bitarray/bitarray-3.1.0.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}"
+}