summaryrefslogtreecommitdiff
path: root/dev-python/bitarray/bitarray-2.1.1.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2021-06-12 08:04:57 +0200
committerMichał Górny <mgorny@gentoo.org>2021-06-12 08:39:02 +0200
commit4b59b31a727291256b3d00dd3b7fcf4d60d52c43 (patch)
tree5a7d70de4a42e59cc21ccf421470f870231b428c /dev-python/bitarray/bitarray-2.1.1.ebuild
parentcbc72283ea3f0b57a96af2b03ad1f471b7a58e56 (diff)
downloadgentoo-4b59b31a727291256b3d00dd3b7fcf4d60d52c43.tar.gz
gentoo-4b59b31a727291256b3d00dd3b7fcf4d60d52c43.tar.bz2
gentoo-4b59b31a727291256b3d00dd3b7fcf4d60d52c43.zip
dev-python/bitarray: Bump to 2.1.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/bitarray/bitarray-2.1.1.ebuild')
-rw-r--r--dev-python/bitarray/bitarray-2.1.1.ebuild21
1 files changed, 21 insertions, 0 deletions
diff --git a/dev-python/bitarray/bitarray-2.1.1.ebuild b/dev-python/bitarray/bitarray-2.1.1.ebuild
new file mode 100644
index 000000000000..15dfecb43203
--- /dev/null
+++ b/dev-python/bitarray/bitarray-2.1.1.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}"
+}