summaryrefslogtreecommitdiff
path: root/dev-python/sphinx-prompt
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/sphinx-prompt
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/sphinx-prompt')
-rw-r--r--dev-python/sphinx-prompt/Manifest1
-rw-r--r--dev-python/sphinx-prompt/metadata.xml13
-rw-r--r--dev-python/sphinx-prompt/sphinx-prompt-1.10.2.ebuild43
3 files changed, 0 insertions, 57 deletions
diff --git a/dev-python/sphinx-prompt/Manifest b/dev-python/sphinx-prompt/Manifest
deleted file mode 100644
index 718023352e88..000000000000
--- a/dev-python/sphinx-prompt/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST sphinx-prompt-1.10.2.gh.tar.gz 37762 BLAKE2B c3de02a429676aea72ad61cd11a0ac774f52d35ab8d1bf6f50e88b1cdeb4d1a96afabfe25a1f81215e2a55eec63da4f94add3cc9698696bb8a1fedd67e20b373 SHA512 41889afe21cb47bcb0352d7184de1d20046a636be3368e7ceb21d0afe7070e287d784f4871df9123c50da669603b3c96be6ed2e43d871222a07f9bae68e0228c
diff --git a/dev-python/sphinx-prompt/metadata.xml b/dev-python/sphinx-prompt/metadata.xml
deleted file mode 100644
index 77a03f5fbd57..000000000000
--- a/dev-python/sphinx-prompt/metadata.xml
+++ /dev/null
@@ -1,13 +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>
- <stabilize-allarches/>
- <upstream>
- <remote-id type="pypi">sphinx-prompt</remote-id>
- <remote-id type="github">sbrunner/sphinx-prompt</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/sphinx-prompt/sphinx-prompt-1.10.2.ebuild b/dev-python/sphinx-prompt/sphinx-prompt-1.10.2.ebuild
deleted file mode 100644
index 68fe45aa16a9..000000000000
--- a/dev-python/sphinx-prompt/sphinx-prompt-1.10.2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=poetry
-PYTHON_COMPAT=( python3_{13..14} )
-
-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 ~m68k ppc ppc64 ~riscv ~s390 ~sparc x86"
-
-RDEPEND="
- dev-python/sphinx[${PYTHON_USEDEP}]
- dev-python/pygments[${PYTHON_USEDEP}]
-"
-
-EPYTEST_PLUGINS=()
-distutils_enable_tests pytest
-
-python_prepare_all() {
- # version number relies on git repo, sigh
- # also unpin dependencies
- # also hack to install as "sphinx-prompt"
- sed -i \
- -e "/^version =/s:[0-9.]\+:${PV}:" \
- -e '/include.*sphinx-prompt/d' \
- pyproject.toml || die
-
- distutils-r1_python_prepare_all
-}