diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-12-25 23:06:25 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-12-25 23:06:25 +0000 |
commit | 441d1370330332b7d78f238d2f5e13f7aed5e4e0 (patch) | |
tree | 6a5171dd615dfeee62a45044144c66e864738fb0 /dev-python/sphinxcontrib-pretty-searchresults | |
parent | ab3da91fb6c91a9df52fff8f991570f456fd3c7a (diff) |
gentoo christmass resync : 25.12.2020
Diffstat (limited to 'dev-python/sphinxcontrib-pretty-searchresults')
3 files changed, 0 insertions, 63 deletions
diff --git a/dev-python/sphinxcontrib-pretty-searchresults/Manifest b/dev-python/sphinxcontrib-pretty-searchresults/Manifest deleted file mode 100644 index 94bc76fcd088..000000000000 --- a/dev-python/sphinxcontrib-pretty-searchresults/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST sphinxcontrib-pretty-searchresults-0.3.5.tar.gz 9996 BLAKE2B 64324f306aec1d6eac9c791acc0f3f4a0a434f734abcf9bb0d34151137e20407d59e95ea3a3a981e425ded6b6fd82bd36627323a3ed493a47b92979ac5fe2f77 SHA512 30c9a0af183ffada3300c03495afb9f52fbba5522dd386c5a05a28fa1e6dd0fb66725499db7a537534496843e6707c7dcceea45511ee3953d02c3e2275e68630 -EBUILD sphinxcontrib-pretty-searchresults-0.3.5.ebuild 989 BLAKE2B 3a2d7b0fd2b505bc1541ff7b42f208ad2f056cc9743121a921e3aa6487f06e39f2bef24c0819c60bb2caaaea01681f1489cdc24ee164b525b85dfd2acaf1e44e SHA512 1a035b898a5ac22aba271edd7541cdcb7d5acae5f6cefe74854e9f4e94a4229a8f69e3d4439aeb31aff9ca0f6786cb5aa4ea477c4ed2cb5740f2ad7db8f55548 -MISC metadata.xml 720 BLAKE2B f062d14a7911e63eb321a7a3ecd1d16a0ada35cfb90bbd86af40aef9cfb5e020d48d8d923afd2fb12742c7d9e70e972e1b277f1a69240fd4e5b2d43432ca672d SHA512 3b248b7f23892cc5c96ac8a9d434f4e13d3d227a830241562e39eb0ea661abe9192ac81785339169df2550ab453523e5298cf8ab2ca89285305848c23b960e22 diff --git a/dev-python/sphinxcontrib-pretty-searchresults/metadata.xml b/dev-python/sphinxcontrib-pretty-searchresults/metadata.xml deleted file mode 100644 index afa928b178fa..000000000000 --- a/dev-python/sphinxcontrib-pretty-searchresults/metadata.xml +++ /dev/null @@ -1,18 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <longdescription lang="en"> - Sphinx: pretty search results is an extension for the Sphinx - documentation tool. - - To display search results, Sphinx is fetching the - source files of search hits and rendering excerpts in raw markup - (Example). This extension removes the markup from these source files - (during build time), so the search results look decent. - </longdescription> - <upstream> - <remote-id type="pypi">sphinxprettysearchresults</remote-id> - <remote-id type="github">sphinx-contrib/sphinx-pretty-searchresults</remote-id> - </upstream> -</pkgmetadata> diff --git a/dev-python/sphinxcontrib-pretty-searchresults/sphinxcontrib-pretty-searchresults-0.3.5.ebuild b/dev-python/sphinxcontrib-pretty-searchresults/sphinxcontrib-pretty-searchresults-0.3.5.ebuild deleted file mode 100644 index 394b9756c615..000000000000 --- a/dev-python/sphinxcontrib-pretty-searchresults/sphinxcontrib-pretty-searchresults-0.3.5.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) - -inherit distutils-r1 - -MY_PN="${PN/sphinxcontrib/sphinx}" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="Decently styled search results for sphinx-doc projects" -HOMEPAGE="https://github.com/sphinx-contrib/sphinx-pretty-searchresults" -SRC_URI="https://github.com/sphinx-contrib/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 arm64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -BDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - dev-python/sphinx-testing[${PYTHON_USEDEP}] - dev-python/nose[${PYTHON_USEDEP}] - dev-python/recommonmark[${PYTHON_USEDEP}] - ) -" -DEPEND=" - dev-python/docutils[${PYTHON_USEDEP}] - dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}] - dev-python/sphinx[${PYTHON_USEDEP}] -" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${MY_P}" - -python_test() { - cd tests || die - "${EPYTHON}" run.py || die -} |