summaryrefslogtreecommitdiff
path: root/dev-python/bitstring/bitstring-4.0.1.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-02-02 15:43:42 +0100
committerMichał Górny <mgorny@gentoo.org>2023-02-02 15:48:08 +0100
commitcf7b58b4cdd9871fde00044fc29e3823caec586c (patch)
tree63e67cf9319e55c027682d151bdf91ae37f68bf8 /dev-python/bitstring/bitstring-4.0.1.ebuild
parent5cac4ef33a62c0d21f4730e6c774c8ac1277f0e1 (diff)
downloadgentoo-cf7b58b4cdd9871fde00044fc29e3823caec586c.tar.gz
gentoo-cf7b58b4cdd9871fde00044fc29e3823caec586c.tar.bz2
gentoo-cf7b58b4cdd9871fde00044fc29e3823caec586c.zip
dev-python/bitstring: Bump to 4.0.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/bitstring/bitstring-4.0.1.ebuild')
-rw-r--r--dev-python/bitstring/bitstring-4.0.1.ebuild42
1 files changed, 42 insertions, 0 deletions
diff --git a/dev-python/bitstring/bitstring-4.0.1.ebuild b/dev-python/bitstring/bitstring-4.0.1.ebuild
new file mode 100644
index 000000000000..28d8a4c9d103
--- /dev/null
+++ b/dev-python/bitstring/bitstring-4.0.1.ebuild
@@ -0,0 +1,42 @@
+# 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_{9..11} )
+
+inherit distutils-r1
+
+MY_P=${PN}-${P}
+DESCRIPTION="A pure Python module for creation and analysis of binary data"
+HOMEPAGE="
+ https://github.com/scott-griffiths/bitstring/
+ https://pypi.org/project/bitstring/
+"
+SRC_URI="
+ https://github.com/scott-griffiths/${PN}/archive/${P}.tar.gz
+ -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+distutils_enable_tests unittest
+
+src_prepare() {
+ [[ ${PV} != 4.0.1 ]] && die "Remove the hack!"
+ cat >> pyproject.toml <<-EOF
+
+ [build-system]
+ build-backend = "setuptools.build_meta"
+ EOF
+ distutils-r1_src_prepare
+}
+
+src_test() {
+ cd tests || die
+ distutils-r1_src_test
+}