summaryrefslogtreecommitdiff
path: root/dev-python/bitstring/bitstring-4.0.1.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-05-23 18:10:39 +0200
committerMichał Górny <mgorny@gentoo.org>2023-05-23 18:15:37 +0200
commitdd7ba35e0e2cefe0edbede19bd5d7afe7f44bd9d (patch)
tree75e2d38f460d4f120524b3c1bd29b04763231d9f /dev-python/bitstring/bitstring-4.0.1.ebuild
parent8476820a3dbeb231c5bcd66c5154b1588aa3d521 (diff)
downloadgentoo-dd7ba35e0e2cefe0edbede19bd5d7afe7f44bd9d.tar.gz
gentoo-dd7ba35e0e2cefe0edbede19bd5d7afe7f44bd9d.tar.bz2
gentoo-dd7ba35e0e2cefe0edbede19bd5d7afe7f44bd9d.zip
dev-python/bitstring: Remove old
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, 0 insertions, 42 deletions
diff --git a/dev-python/bitstring/bitstring-4.0.1.ebuild b/dev-python/bitstring/bitstring-4.0.1.ebuild
deleted file mode 100644
index 1023d223c46e..000000000000
--- a/dev-python/bitstring/bitstring-4.0.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# 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
-}