summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-09-01 19:02:12 +0200
committerMichał Górny <mgorny@gentoo.org>2023-09-01 19:05:21 +0200
commite611e1d2428ec784ab4b5a269c7c5b2595ff4048 (patch)
tree692903ccfce8c3ffd1f54ae7712da07cf472aef1 /dev-python/sphinx-prompt
parentdev-python/vcrpy: Remove old (diff)
downloadgentoo-e611e1d2428ec784ab4b5a269c7c5b2595ff4048.tar.gz
gentoo-e611e1d2428ec784ab4b5a269c7c5b2595ff4048.tar.bz2
gentoo-e611e1d2428ec784ab4b5a269c7c5b2595ff4048.zip
dev-python/sphinx-prompt: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/sphinx-prompt')
-rw-r--r--dev-python/sphinx-prompt/Manifest1
-rw-r--r--dev-python/sphinx-prompt/sphinx-prompt-1.6.0-r1.ebuild35
2 files changed, 0 insertions, 36 deletions
diff --git a/dev-python/sphinx-prompt/Manifest b/dev-python/sphinx-prompt/Manifest
index d68d73969f3c..c7f963b5b191 100644
--- a/dev-python/sphinx-prompt/Manifest
+++ b/dev-python/sphinx-prompt/Manifest
@@ -1,2 +1 @@
-DIST sphinx-prompt-1.6.0.gh.tar.gz 38245 BLAKE2B da2ac8564e14a10d5b51ea5ebd2e5578e7c2795ea7f3c5d3f054c621090e4bf634b9a1f578f4c010bbeaa61cc0d18f1a48ce6c0d9a316e34504ada1b4fb61d7b SHA512 a896dad9d333fde843ab90f331be40c533fa32f75f68dfc012a6296d96661e726647250642e1cc4c54125d9acb237add640008671a657a5e47a885450831c21e
DIST sphinx-prompt-1.7.0.gh.tar.gz 38317 BLAKE2B b042b7821d16ff63d259b73de476f96cafea32345dc98d24a9abb97dd46ecbd6947862ef727b830c27889f4b8a17c30c8dd86a4bddd38294a3a4bca00349bf87 SHA512 1b0df502c75ea4cac4e4a5b11c0aa762851b82c39892410c97f0ed45bdd74e5706a580a906d4ebb8c47700324c089c5114eba12cd4617aba37cfea8c338ac9d5
diff --git a/dev-python/sphinx-prompt/sphinx-prompt-1.6.0-r1.ebuild b/dev-python/sphinx-prompt/sphinx-prompt-1.6.0-r1.ebuild
deleted file mode 100644
index 8399bc45d556..000000000000
--- a/dev-python/sphinx-prompt/sphinx-prompt-1.6.0-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=poetry
-PYTHON_COMPAT=( pypy3 python3_{9..11} )
-inherit distutils-r1
-
-DESCRIPTION="Sphinx directive to add unselectable prompt"
-HOMEPAGE="https://github.com/sbrunner/sphinx-prompt/"
-SRC_URI="https://github.com/sbrunner/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86"
-
-RDEPEND="
- dev-python/sphinx[${PYTHON_USEDEP}]
- dev-python/pygments[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
- # for Version: https://github.com/sbrunner/sphinx-prompt/pull/330
- # for Sphinx dep: https://github.com/sbrunner/sphinx-prompt/issues/174
- # and poetry-plugin-tweak-dependencies-version usage.
- sed -E -i \
- -e "/^version =/s:([0-9.]+):${PV}:" \
- -e "/^Sphinx =/s:([0-9.]+):>=5:" \
- pyproject.toml || die
-
- distutils-r1_python_prepare_all
-}