diff options
author | Nicolas Bock <nicolasbock@gentoo.org> | 2020-03-26 06:43:01 -0600 |
---|---|---|
committer | Nicolas Bock <nicolasbock@gentoo.org> | 2020-03-26 06:43:31 -0600 |
commit | 53dbf2b5cbe93d769365b5a4794f4c9da5aae495 (patch) | |
tree | 27be333adf463ab629ba881487e5e0672a0846e7 /dev-python/ebuildtester/ebuildtester-0.1.16.ebuild | |
parent | dev-games/freecell-solver: 5.20.1 version bump (diff) | |
download | gentoo-53dbf2b5cbe93d769365b5a4794f4c9da5aae495.tar.gz gentoo-53dbf2b5cbe93d769365b5a4794f4c9da5aae495.tar.bz2 gentoo-53dbf2b5cbe93d769365b5a4794f4c9da5aae495.zip |
dev-python/ebuildtester: Version bump to v0.1.16
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Nicolas Bock <nicolasbock@gentoo.org>
Diffstat (limited to 'dev-python/ebuildtester/ebuildtester-0.1.16.ebuild')
-rw-r--r-- | dev-python/ebuildtester/ebuildtester-0.1.16.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/dev-python/ebuildtester/ebuildtester-0.1.16.ebuild b/dev-python/ebuildtester/ebuildtester-0.1.16.ebuild new file mode 100644 index 000000000000..db6d15de38e1 --- /dev/null +++ b/dev-python/ebuildtester/ebuildtester-0.1.16.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_6 python3_7 python3_8 ) + +inherit bash-completion-r1 distutils-r1 + +DESCRIPTION="A dockerized approach to test a Gentoo package within a clean stage3 container" +HOMEPAGE="http://ebuildtester.readthedocs.io/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + app-emulation/docker +" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/sphinx[${PYTHON_USEDEP}] +" + +src_install() { + distutils-r1_src_install + newbashcomp "${FILESDIR}/${PN}.bash-completion" "${PN}" +} |