From 5878445245647f715ddf57b51cd46e75a14981e5 Mon Sep 17 00:00:00 2001 From: Alarig Le Lay Date: Fri, 14 Jul 2023 16:49:25 +0200 Subject: [PATCH] dev-python/sphinx-argparse: treeclean --- dev-python/sphinx-argparse/Manifest | 1 - dev-python/sphinx-argparse/metadata.xml | 8 ---- .../sphinx-argparse-0.2.5.ebuild | 42 ------------------- 3 files changed, 51 deletions(-) delete mode 100644 dev-python/sphinx-argparse/Manifest delete mode 100644 dev-python/sphinx-argparse/metadata.xml delete mode 100644 dev-python/sphinx-argparse/sphinx-argparse-0.2.5.ebuild diff --git a/dev-python/sphinx-argparse/Manifest b/dev-python/sphinx-argparse/Manifest deleted file mode 100644 index a0e62ec..0000000 --- a/dev-python/sphinx-argparse/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST sphinx-argparse-0.2.5.tar.gz 24890 BLAKE2B 870329d588c5c1131bb104e548e6f1caf673b6b4ffa9cb074a9a6e769f90d8d351ec14ce05f902d10ce4ae2336e05a119a386ea154faf2a5c57ba240514c9b92 SHA512 8e946947c9d018c10d7283b19c49cf19bf5813ba5c227bf3aac21752e5ecddf4653ec2bb1e2b67b8c1c3d8eb50ede55acc5b0e0071297433a2468606d3baa0b1 diff --git a/dev-python/sphinx-argparse/metadata.xml b/dev-python/sphinx-argparse/metadata.xml deleted file mode 100644 index a69b0a0..0000000 --- a/dev-python/sphinx-argparse/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - Alarig Le Lay - alarig@swordarmor.fr - - diff --git a/dev-python/sphinx-argparse/sphinx-argparse-0.2.5.ebuild b/dev-python/sphinx-argparse/sphinx-argparse-0.2.5.ebuild deleted file mode 100644 index a5cacc2..0000000 --- a/dev-python/sphinx-argparse/sphinx-argparse-0.2.5.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8} ) - -inherit distutils-r1 - -DESCRIPTION="Sphinx extension that automatically documents argparse commands and options" -HOMEPAGE="https://pypi.org/project/sphinx-argparse/ - https://github.com/alex-rudakov/sphinx-argparse" -SRC_URI="https://github.com/alex-rudakov/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="" -RDEPEND=" - ${DEPEND} - dev-python/sphinx[${PYTHON_USEDEP}] - dev-python/commonmark[${PYTHON_USEDEP}] -" - -distutils_enable_tests pytest -# requires self to build own documentation -distutils_enable_sphinx docs dev-python/sphinx_rtd_theme dev-python/sphinx-argparse - -python_prepare_all() { - # test fails, skip it until a fix is found: - # AssertionError: assert [{'action_groups': [{'description': None,\n 'options': [{'default': None,\n - sed -i -e 's:test_parse_nested:_&:' \ - -e 's:test_parse_nested_traversal:_&:' \ - test/test_parser.py || die - - # needs test files in workdir to compile docs for some reason - cp -r test "${WORKDIR}/test/" || die - - distutils-r1_python_prepare_all -}