dev-python/bitstring: Bump to 4.0.1

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2023-02-02 15:43:42 +01:00
parent 5cac4ef33a
commit cf7b58b4cd
2 changed files with 43 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST bitstring-3.1.9.tar.gz 408443 BLAKE2B 747ce06fc33681cbe63d706c2dace5ebce314aea1ba45f8a5a9d65f849bcf253fa9354e39fd80731af4845993e418f27232ede47c940367b8cb425867ffee8c9 SHA512 6dc9c8d683e4415dfd685153b350bd5462117c49c7d8fcd9b2a066f927d82bb2bfae1cc5df543dd38c5e65b93d453ad13d2937f9523b77b007b1234b24ba7be1
DIST bitstring-bitstring-4.0.1.gh.tar.gz 413983 BLAKE2B a4b424d2c139b34ce5ea81522486d0e42d82a06cfc64ce664505a2c1f1a626939b57b1755642220e2fb4219ead3a2a368006878ea05bdae59a638948b24e8b8c SHA512 f036a042f83c70b830f987114e7eb54754145296c60cd6486f398247a069c50588f3c86395a849a99e3c9b94364f1fcf4fedf4b59b80f03b6aecb38d992f5490

View File

@@ -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
}