summaryrefslogtreecommitdiff
path: root/dev-python/bitarray/bitarray-2.7.1.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-02-11 14:02:18 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-02-11 14:02:18 +0000
commitdfeb225b9128c9482c36c4858b674ccedf8e7dc8 (patch)
tree5fa8b332ada4d0da7142238f4576ac747d179ade /dev-python/bitarray/bitarray-2.7.1.ebuild
parent859e20e6bba07bbd63855a1cf2e4c28bfd66f853 (diff)
downloadbaldeagleos-repo-dfeb225b9128c9482c36c4858b674ccedf8e7dc8.tar.gz
baldeagleos-repo-dfeb225b9128c9482c36c4858b674ccedf8e7dc8.tar.xz
baldeagleos-repo-dfeb225b9128c9482c36c4858b674ccedf8e7dc8.zip
Adding metadata
Diffstat (limited to 'dev-python/bitarray/bitarray-2.7.1.ebuild')
-rw-r--r--dev-python/bitarray/bitarray-2.7.1.ebuild24
1 files changed, 24 insertions, 0 deletions
diff --git a/dev-python/bitarray/bitarray-2.7.1.ebuild b/dev-python/bitarray/bitarray-2.7.1.ebuild
new file mode 100644
index 000000000000..4d6195f2bfd0
--- /dev/null
+++ b/dev-python/bitarray/bitarray-2.7.1.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_{7,8,9,10,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}"
+}