diff options
author | 2020-09-08 22:46:02 +0300 | |
---|---|---|
committer | 2020-09-17 20:22:17 +0000 | |
commit | 1e77158c0ccfec4f005ee9955e54b3fb23f26c70 (patch) | |
tree | 5504e189afb63d282062d124e66922e3c0a44198 /dev-python/doit/doit-0.33.1.ebuild | |
parent | app-text/hunspell: Fix DESCRIPTION, HOMEPAGE, DEPEND->BDEPEND (diff) | |
download | gentoo-1e77158c0ccfec4f005ee9955e54b3fb23f26c70.tar.gz gentoo-1e77158c0ccfec4f005ee9955e54b3fb23f26c70.tar.bz2 gentoo-1e77158c0ccfec4f005ee9955e54b3fb23f26c70.zip |
dev-python/doit: update to 0.33.1
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Azamat H. Hackimov <azamat.hackimov@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-python/doit/doit-0.33.1.ebuild')
-rw-r--r-- | dev-python/doit/doit-0.33.1.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/dev-python/doit/doit-0.33.1.ebuild b/dev-python/doit/doit-0.33.1.ebuild new file mode 100644 index 000000000000..b32d380528b9 --- /dev/null +++ b/dev-python/doit/doit-0.33.1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit bash-completion-r1 distutils-r1 + +DESCRIPTION="Automation tool" +HOMEPAGE="https://pydoit.org/ https://pypi.org/project/doit/" +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/cloudpickle[${PYTHON_USEDEP}] + dev-python/pyinotify[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}]" +DEPEND=" + test? ( + ${RDEPEND} + $(python_gen_impl_dep sqlite) + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pyflakes[${PYTHON_USEDEP}] + >=dev-python/pytest-5.4[${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 + +src_prepare() { + default + # Replace custom theme with builtin for documentation + sed -i -e "s:'press':'sphinx_rtd_theme':" doc/conf.py || die + # Disable test failing due to impact on PATH run in a sandbox + sed -i -e "s:test_target:_&:" tests/test_cmd_strace.py || die +} + +src_install() { + distutils-r1_src_install + newbashcomp bash_completion_doit ${PN} + insinto /usr/share/zsh/site-functions + newins zsh_completion_doit _${PN} +} |