summaryrefslogtreecommitdiff
path: root/dev-python/bitarray/bitarray-2.1.3.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2021-06-16 06:22:43 +0200
committerMichał Górny <mgorny@gentoo.org>2021-06-16 06:22:43 +0200
commit0eaaacac5f0ad905669a5fb24cec558c1efede90 (patch)
tree5437363ea69bb8bf1d36c94ad48a1a25bd38b709 /dev-python/bitarray/bitarray-2.1.3.ebuild
parent9c60f686d350f72a1ed9b000adb8161227de21fa (diff)
downloadgentoo-0eaaacac5f0ad905669a5fb24cec558c1efede90.tar.gz
gentoo-0eaaacac5f0ad905669a5fb24cec558c1efede90.tar.bz2
gentoo-0eaaacac5f0ad905669a5fb24cec558c1efede90.zip
dev-python/bitarray: Bump to 2.1.3
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/bitarray/bitarray-2.1.3.ebuild')
-rw-r--r--dev-python/bitarray/bitarray-2.1.3.ebuild21
1 files changed, 21 insertions, 0 deletions
diff --git a/dev-python/bitarray/bitarray-2.1.3.ebuild b/dev-python/bitarray/bitarray-2.1.3.ebuild
new file mode 100644
index 000000000000..15dfecb43203
--- /dev/null
+++ b/dev-python/bitarray/bitarray-2.1.3.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} )
+DISTUTILS_USE_SETUPTOOLS=no
+
+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}"
+}