dev-python/ebuildtester: Add bash-completion

Package-Manager: Portage-2.3.19, Repoman-2.3.6
This commit is contained in:
Nicolas Bock
2018-02-20 10:26:49 -07:00
parent 2f0ffce0d6
commit 17ca3c97e3
2 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{3,4,5,6} )
inherit bash-completion-r1 distutils-r1
DESCRIPTION="A dockerized approach to test a Gentoo package within a clean stage3"
HOMEPAGE="http://ebuildtester.readthedocs.io/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
RDEPEND="
app-emulation/docker
"
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
"
src_install() {
newbashcomp "${FILESDIR}/${PN}.bash-completion" "${PN}"
}

View File

@@ -0,0 +1,20 @@
_ebuildtester() {
local cur prev opts
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
opts="--help --portage-dir --atom --threads"
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
fi
case "${prev}" in
--portage-dir)
COMPREPLY=( $(compgen -o dirnames -A directory ${cur}) )
;;
esac
}
complete -F _ebuildtester ebuildtester