commit: 94e254d76d2212d0afd3876659cb4a3058e9918c Author: Alarig Le Lay <alarig <AT> swordarmor <DOT> fr> AuthorDate: Sat Apr 25 11:51:55 2020 +0000 Commit: Nicolas Bock <nicolasbock <AT> gentoo <DOT> org> CommitDate: Wed Dec 16 17:44:31 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94e254d7
dev-python/ebuildtester: Adding sys-fs/fuse dep Closes: https://bugs.gentoo.org/719388 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Alarig Le Lay <alarig <AT> swordarmor.fr> Signed-off-by: Nicolas Bock <nicolasbock <AT> gentoo.org> .../ebuildtester/ebuildtester-0.1.16-r1.ebuild | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/dev-python/ebuildtester/ebuildtester-0.1.16-r1.ebuild b/dev-python/ebuildtester/ebuildtester-0.1.16-r1.ebuild new file mode 100644 index 00000000000..d155bc3888b --- /dev/null +++ b/dev-python/ebuildtester/ebuildtester-0.1.16-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit bash-completion-r1 distutils-r1 + +DESCRIPTION="A dockerized approach to test a Gentoo package within a clean stage3 container" +HOMEPAGE="https://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 + sys-fs/fuse +" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/setuptools_scm[${PYTHON_USEDEP}] + dev-python/sphinx[${PYTHON_USEDEP}] +" + +src_install() { + distutils-r1_src_install + newbashcomp "${FILESDIR}/${PN}.bash-completion" "${PN}" +}
