diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-10-16 06:24:31 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-10-16 06:54:27 +0200 |
commit | 50c1c27e26d016f9d710f235b66e72fd5adc6228 (patch) | |
tree | ec722fc1ac2ecc1159e309ce42be5b7cd889e4b0 /dev-python/bitarray/bitarray-3.0.0.ebuild | |
parent | dev-python/yarl: Bump to 1.15.3 (diff) | |
download | gentoo-50c1c27e26d016f9d710f235b66e72fd5adc6228.tar.gz gentoo-50c1c27e26d016f9d710f235b66e72fd5adc6228.tar.bz2 gentoo-50c1c27e26d016f9d710f235b66e72fd5adc6228.zip |
dev-python/bitarray: Bump to 3.0.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/bitarray/bitarray-3.0.0.ebuild')
-rw-r--r-- | dev-python/bitarray/bitarray-3.0.0.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/dev-python/bitarray/bitarray-3.0.0.ebuild b/dev-python/bitarray/bitarray-3.0.0.ebuild new file mode 100644 index 000000000000..29af0a0b0076 --- /dev/null +++ b/dev-python/bitarray/bitarray-3.0.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2024 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}" +} |