summaryrefslogtreecommitdiff
path: root/app-text/pytextile
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-03-11 18:08:11 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-03-11 18:08:11 +0000
commit23650861e24563ddcf10919ab5b1912676c3ff0c (patch)
tree0853606be5f409f8f1859eb33652d0c8c1e62623 /app-text/pytextile
parent44a6f923079d51164af67c7bc3f3e0db24658088 (diff)
gentoo auto-resync : 11:03:2023 - 18:08:11
Diffstat (limited to 'app-text/pytextile')
-rw-r--r--app-text/pytextile/Manifest5
-rw-r--r--app-text/pytextile/metadata.xml15
-rw-r--r--app-text/pytextile/pytextile-4.0.1.ebuild44
-rw-r--r--app-text/pytextile/pytextile-4.0.2.ebuild43
4 files changed, 0 insertions, 107 deletions
diff --git a/app-text/pytextile/Manifest b/app-text/pytextile/Manifest
deleted file mode 100644
index 33eb89884257..000000000000
--- a/app-text/pytextile/Manifest
+++ /dev/null
@@ -1,5 +0,0 @@
-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
-EBUILD pytextile-4.0.1.ebuild 1015 BLAKE2B 4e2871f71b0f694ff49dae7d0c614f22966052e60335a8a147724a42e7a0fc1b72e06a08ca4c780c8c1500bb1583464bfe12ca7f9ec9e62e5ea7f36824446af9 SHA512 d76fd1f20fd076d0b9b52bdc7da972612e2e3df94efcbc7bd8c953132f8603ec8750bb5b56e4e921ca5ba790355d400198793abe08ca3f3b7798fde221784324
-EBUILD pytextile-4.0.2.ebuild 919 BLAKE2B d51a7813e643aebeabb9242acddea5cd3694b5e838cbedf53413ba3b5ced376b258f823c49f2a97ca887d2f107333062c7943cb0ff7481b185c35aa40e6f5388 SHA512 6a355376574c2b87142643603707cf33f026c23604919580f7788aff431908a167e04416402f1161d25ff56682626fa6f64ccea2c970edbc1796f55de21d4f7e
-MISC metadata.xml 580 BLAKE2B f318193518ce2529a1345249d6b876b6c98cf84f896666650323b94d60969fdded5c438e676c06f854a4050a85d7d27b7e16f74914ff80f12d51f1c66f234544 SHA512 7d9e4a0720730b6b96a2bc3828c21d3a31168f8b7ec4ae2f28a4f26b7632199a14b241dd954a944a42c1e9dffd07a8835720e60e7608d1952759e0627de176f7
diff --git a/app-text/pytextile/metadata.xml b/app-text/pytextile/metadata.xml
deleted file mode 100644
index 9fcb3d2c7ea1..000000000000
--- a/app-text/pytextile/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <longdescription lang="en">A Python implementation of Textile, Dean Allen's Human Text Generator.
- Textile simplifies the work of creating (X)HTML.</longdescription>
- <stabilize-allarches/>
- <upstream>
- <remote-id type="pypi">textile</remote-id>
- <remote-id type="github">textile/python-textile</remote-id>
- </upstream>
-</pkgmetadata>
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 }
-}
diff --git a/app-text/pytextile/pytextile-4.0.2.ebuild b/app-text/pytextile/pytextile-4.0.2.ebuild
deleted file mode 100644
index e0c784fe396a..000000000000
--- a/app-text/pytextile/pytextile-4.0.2.ebuild
+++ /dev/null
@@ -1,43 +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="python-textile-${PV}"
-DESCRIPTION="A Python port of Textile, A humane web text generator"
-HOMEPAGE="
- https://github.com/textile/python-textile/
- https://pypi.org/project/textile/
-"
-SRC_URI="
- https://github.com/textile/python-textile/archive/${PV}.tar.gz
- -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-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}]
-"
-
-distutils_enable_tests pytest
-
-python_test() {
- local EPYTEST_DESELECT=(
- # tests that need network access
- tests/test_getimagesize.py
- tests/test_imagesize.py
- tests/test_textile.py
- )
- epytest -o addopts=
-}