diff options
author | Azamat H. Hackimov <azamat.hackimov@gmail.com> | 2023-04-21 18:14:48 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2023-04-21 18:14:48 +0200 |
commit | 1a83473efee510daa2699fa579c29a05daa20ab0 (patch) | |
tree | d34137d3aa47098573a3d7e7628fb6fd422c8cb1 /dev-python/doit | |
parent | dev-perl/Term-Shell: drop 0.120.0 (diff) | |
download | gentoo-1a83473efee510daa2699fa579c29a05daa20ab0.tar.gz gentoo-1a83473efee510daa2699fa579c29a05daa20ab0.tar.bz2 gentoo-1a83473efee510daa2699fa579c29a05daa20ab0.zip |
dev-python/doit: drop 0.36.0
Signed-off-by: Azamat H. Hackimov <azamat.hackimov@gmail.com>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-python/doit')
-rw-r--r-- | dev-python/doit/doit-0.36.0.ebuild | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/dev-python/doit/doit-0.36.0.ebuild b/dev-python/doit/doit-0.36.0.ebuild deleted file mode 100644 index af8d208e3e29..000000000000 --- a/dev-python/doit/doit-0.36.0.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) -inherit bash-completion-r1 distutils-r1 - -DESCRIPTION="Automation tool" -HOMEPAGE="https://pydoit.org/ - https://pypi.org/project/doit/ - https://github.com/pydoit/doit" -SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~riscv x86" - -RDEPEND=" - dev-python/cloudpickle[${PYTHON_USEDEP}] - dev-python/pyinotify[${PYTHON_USEDEP}] - || ( - dev-python/tomli[${PYTHON_USEDEP}] - dev-python/tomlkit[${PYTHON_USEDEP}] - ) -" -BDEPEND=" - test? ( - $(python_gen_impl_dep sqlite) - dev-python/pyflakes[${PYTHON_USEDEP}] - ) -" -PDEPEND=">=dev-python/doit-py-0.4.0[${PYTHON_USEDEP}]" - -distutils_enable_tests pytest -distutils_enable_sphinx doc \ - dev-python/sphinx-rtd-theme - -EPYTEST_DESELECT=( - # test failing due to impact on PATH run in a sandbox - tests/test_cmd_strace.py::TestCmdStrace::test_dep # #836164 - tests/test_cmd_strace.py::TestCmdStrace::test_target -) - -src_prepare() { - # Replace custom theme with builtin for documentation - sed -e '/html_theme/s/press/sphinx_rtd_theme/' -i doc/conf.py || die - # Remove non-exist modules for doc generation (#832754) - sed \ - -e '/sphinx_sitemap/d' \ - -e '/sphinx_reredirects/d' \ - -i doc/conf.py || die - - distutils-r1_src_prepare -} - -src_install() { - distutils-r1_src_install - newbashcomp bash_completion_doit ${PN} - insinto /usr/share/zsh/site-functions - newins zsh_completion_doit _${PN} -} |