blob: 765522f0cf97edc1451ed6a3fd9a761e7acabb78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=(python3_{10,11,12})
DISTUTILS_USE_SETUPTOOLS=rdepend
inherit bash-completion-r1 distutils-r1
DESCRIPTION="Pythonic task management & command execution"
HOMEPAGE="http://pyinvoke.org"
SRC_URI="https://github.com/pyinvoke/invoke/archive/${PV}.tar.gz -> ${P}.tar.gz"
# pypi tarball does not include the completion directory
RESTRICT="mirror"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND="
${PYTHON_DEPS}
"
DEPEND="
test? (
dev-python/spec[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
dev-python/flake8[${PYTHON_USEDEP}]
)
dev-python/setuptools[${PYTHON_USEDEP}]
${RDEPEND}
"
DOCS="README.rst"
PATCHES=( \
"${FILESDIR}/loader-sys-path.0.22.0.patch" \
"${FILESDIR}/encode-fallback.0.20.1.patch" \
"${FILESDIR}/capture-buffer-size.1.1.0.patch" \
)
src_install() {
dodoc ${DOCS}
distutils-r1_src_install
newbashcomp completion/bash "${PN}"
newbashcomp completion/bash inv
}
src_test() {
flake8 --verbose --config="${S}"/setup.cfg "${S}"/invoke
spec --where="${S}"/tests
}
|