summaryrefslogtreecommitdiff
path: root/dev-python/bitstring/bitstring-4.1.2.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-11-17 18:22:14 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-11-17 18:22:14 +0000
commit8a0c1f4e33e6093e789a0c8318c1a4349e20a910 (patch)
treea7bf10d5443bf4b319325aacbbc7a13da836cb8a /dev-python/bitstring/bitstring-4.1.2.ebuild
parentc1272386bb1612391da49818314e6bcbfa581163 (diff)
downloadbaldeagleos-repo-8a0c1f4e33e6093e789a0c8318c1a4349e20a910.tar.gz
baldeagleos-repo-8a0c1f4e33e6093e789a0c8318c1a4349e20a910.tar.xz
baldeagleos-repo-8a0c1f4e33e6093e789a0c8318c1a4349e20a910.zip
Adding metadata
Diffstat (limited to 'dev-python/bitstring/bitstring-4.1.2.ebuild')
-rw-r--r--dev-python/bitstring/bitstring-4.1.2.ebuild31
1 files changed, 31 insertions, 0 deletions
diff --git a/dev-python/bitstring/bitstring-4.1.2.ebuild b/dev-python/bitstring/bitstring-4.1.2.ebuild
new file mode 100644
index 000000000000..169431f30e7f
--- /dev/null
+++ b/dev-python/bitstring/bitstring-4.1.2.ebuild
@@ -0,0 +1,31 @@
+# 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,9,10,11,12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="A pure Python module for creation and analysis of binary data"
+HOMEPAGE="
+ https://github.com/scott-griffiths/bitstring/
+ https://pypi.org/project/bitstring/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+RDEPEND="
+ <dev-python/bitarray-3[${PYTHON_USEDEP}]
+ >=dev-python/bitarray-2.8.0[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+ rm "${S}"/${PN}/plugin_test.py || die "rm plugin_test.py failed"
+ distutils-r1_src_prepare
+}