diff options
author | Azamat H. Hackimov <azamat.hackimov@gmail.com> | 2020-07-07 17:02:13 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-07-09 11:13:10 +0300 |
commit | c313d784e21b3349f3203dc08e57bb510505e185 (patch) | |
tree | 6f508ecdd7a8cd65b23c3a5c7f1328166b72ea47 /dev-python/doit | |
parent | dev-python/doit: remove old versions (diff) | |
download | gentoo-c313d784e21b3349f3203dc08e57bb510505e185.tar.gz gentoo-c313d784e21b3349f3203dc08e57bb510505e185.tar.bz2 gentoo-c313d784e21b3349f3203dc08e57bb510505e185.zip |
dev-python/doit: add python3_8 target
Bug: https://bugs.gentoo.org/718636
Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Azamat H. Hackimov <azamat.hackimov@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16626
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-python/doit')
-rw-r--r-- | dev-python/doit/doit-0.32.0-r2.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/dev-python/doit/doit-0.32.0-r2.ebuild b/dev-python/doit/doit-0.32.0-r2.ebuild new file mode 100644 index 000000000000..b59594aad9b3 --- /dev/null +++ b/dev-python/doit/doit-0.32.0-r2.ebuild @@ -0,0 +1,54 @@ +# 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 + +PATCHES=( + "${FILESDIR}/${P}_pytest5.4.patch" + "${FILESDIR}/${P}_unpickable.patch" +) + +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} +} |