summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2024-08-24 14:58:36 +0200
committerMichał Górny <mgorny@gentoo.org>2024-08-24 14:58:36 +0200
commit36fe1f816ec36deeb64734f1091fd57ad019733f (patch)
treeafeb3f635984896cc29ff0805f79d4a19d0315a6 /dev-python/sphinx-prompt
parentdev-python/numpydoc: Remove old (diff)
downloadgentoo-36fe1f816ec36deeb64734f1091fd57ad019733f.tar.gz
gentoo-36fe1f816ec36deeb64734f1091fd57ad019733f.tar.bz2
gentoo-36fe1f816ec36deeb64734f1091fd57ad019733f.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.8.0.ebuild43
2 files changed, 0 insertions, 44 deletions
diff --git a/dev-python/sphinx-prompt/Manifest b/dev-python/sphinx-prompt/Manifest
index 0199b5855a29..71b542fcd68f 100644
--- a/dev-python/sphinx-prompt/Manifest
+++ b/dev-python/sphinx-prompt/Manifest
@@ -1,2 +1 @@
-DIST sphinx-prompt-1.8.0.gh.tar.gz 38424 BLAKE2B c469e2acfdad076afd472c30380a59aae4d719edce653794fd4d09a2c8008b7f67642ce2a740fb1408987243ba5d520e28b3dc4d7ec34899de6fcf57f2171456 SHA512 1acaa18066537adaab71eb900f0b0fb8041f8f25a9079e171b98b98106d5b7d1885e23bae2c1fd278bbf22c66d17238fbf386cb61fc5725475862aaf86d5701e
DIST sphinx-prompt-1.9.0.gh.tar.gz 39458 BLAKE2B 16b646bd0e288da3d2f401650c3131c7c6b9fb27023617717821927c7bd8b8d031f14d82b7dd02c6603f3ece084e766a28022cc418867646d770886cdce538ce SHA512 f9ee34b86ead0eda791ba7d648ae54785c09ca276279197c4632963892a03080e547d1930743d81ddb3b327c912c70a58dea968b1da763c4875ec84014b207f8
diff --git a/dev-python/sphinx-prompt/sphinx-prompt-1.8.0.ebuild b/dev-python/sphinx-prompt/sphinx-prompt-1.8.0.ebuild
deleted file mode 100644
index f508d7f45965..000000000000
--- a/dev-python/sphinx-prompt/sphinx-prompt-1.8.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=poetry
-PYTHON_COMPAT=( pypy3 python3_{10..13} )
-
-inherit distutils-r1
-
-DESCRIPTION="Sphinx directive to add unselectable prompt"
-HOMEPAGE="
- https://github.com/sbrunner/sphinx-prompt/
- https://pypi.org/project/sphinx-prompt/
-"
-SRC_URI="
- https://github.com/sbrunner/sphinx-prompt/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() {
- # version number relies on git repo, sigh
- # also all dependencies are pinned to exact versions, sigh
- # also huge hack to install package as "sphinx-prompt", sigh
- sed -i \
- -e "/^version =/s:[0-9.]\+:${PV}:" \
- -e '/^\[tool\.poetry\.dependencies\]$/,$s:"[0-9.]\+:"*:' \
- -e '/include.*sphinx-prompt/d' \
- pyproject.toml || die
-
- distutils-r1_python_prepare_all
-}