commit: bd0a3ad6d722e9210f88d298da8b43d75cf1735b
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 11 16:12:04 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar 11 16:17:42 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd0a3ad6
app-text/pytextile: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-text/pytextile/Manifest | 1 -
app-text/pytextile/pytextile-4.0.1.ebuild | 44 -------------------------------
2 files changed, 45 deletions(-)
diff --git a/app-text/pytextile/Manifest b/app-text/pytextile/Manifest
index e3a71b9a187f..7f0d8ee5ac4d 100644
--- a/app-text/pytextile/Manifest
+++ b/app-text/pytextile/Manifest
@@ -1,2 +1 @@
-DIST pytextile-4.0.1.tar.gz 49282 BLAKE2B
b51220ff33fe43b83d0aefee840b5170747015073fbe88934798c2505c3455e9805eee8815ec8068521c88a44a309bd0eb32e84757d088536f1c12a1f9bc0ca0
SHA512
e299663fd71b935e9c948649baba80584b1339dd3393a3f37b39475fe1d6a4addaaa2adcd16ba57b4c5db43ab9f8de6e9332871915b1fff7b7882ad5e8d64580
DIST python-textile-4.0.2.gh.tar.gz 49296 BLAKE2B
e9ac36b0ecf401a07aea1037c1f4390e440123d7e16f8fef64c257d27f6ef9c6918018ff34e9f8ad367767f3ebc5ce7957be424b2e6dac62fe8a1f7736b8eff7
SHA512
eb59e44b9a8521bcfa98f476e23efd727ffd867277d24f102bbb9511a99a0d636c324e22f8562382074007f304490c4ec6a5fde529f41b15f055a9cf16d49b8e
diff --git a/app-text/pytextile/pytextile-4.0.1.ebuild
b/app-text/pytextile/pytextile-4.0.1.ebuild
deleted file mode 100644
index 37ef028d8b06..000000000000
--- a/app-text/pytextile/pytextile-4.0.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{9..10} )
-inherit distutils-r1
-
-MY_P="python-textile-${PV}"
-
-DESCRIPTION="A Python port of Textile, A humane web text generator"
-HOMEPAGE="https://github.com/textile/python-textile"
-SRC_URI="https://github.com/textile/python-textile/archive/${PV}.tar.gz ->
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 ~riscv sparc x86"
-
-RDEPEND="
- dev-python/html5lib[${PYTHON_USEDEP}]
- dev-python/regex[${PYTHON_USEDEP}]
- dev-python/six[${PYTHON_USEDEP}]"
-
-S="${WORKDIR}/${MY_P}"
-
-distutils_enable_tests pytest
-
-src_prepare() {
- default
- # remove useless --cov arg injection
- rm pytest.ini || die
- # remove useless pytest-runner dep
- sed -e "s/pytest-runner//g" -i setup.py || die
-}
-
-python_test() {
- local deselect=(
- # tests that need network access
- tests/test_getimagesize.py
- tests/test_imagesize.py
- tests/test_textile.py
- )
- epytest ${deselect[@]/#/--deselect }
-}