summaryrefslogtreecommitdiff
path: root/dev-python/bitarray/bitarray-2.6.2.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-01-02 15:14:30 +0100
committerMichał Górny <mgorny@gentoo.org>2023-01-02 15:54:16 +0100
commit5c7ec93a09c65e22015e6ba540bc6aa2554c36ed (patch)
tree32f5a21bd3ac970256d8e367bb6d4b9dedbf4bcd /dev-python/bitarray/bitarray-2.6.2.ebuild
parent0adf63ccb098d5c4ea53961c73115c09e0af4e48 (diff)
downloadgentoo-5c7ec93a09c65e22015e6ba540bc6aa2554c36ed.tar.gz
gentoo-5c7ec93a09c65e22015e6ba540bc6aa2554c36ed.tar.bz2
gentoo-5c7ec93a09c65e22015e6ba540bc6aa2554c36ed.zip
dev-python/bitarray: Bump to 2.6.2
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/bitarray/bitarray-2.6.2.ebuild')
-rw-r--r--dev-python/bitarray/bitarray-2.6.2.ebuild24
1 files changed, 24 insertions, 0 deletions
diff --git a/dev-python/bitarray/bitarray-2.6.2.ebuild b/dev-python/bitarray/bitarray-2.6.2.ebuild
new file mode 100644
index 000000000000..e547cb3786fe
--- /dev/null
+++ b/dev-python/bitarray/bitarray-2.6.2.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+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/${PN::1}/${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}"
+}