mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-29 22:28:08 -07:00
dev-python/ebuildtester: Add bash-completion
Package-Manager: Portage-2.3.19, Repoman-2.3.6
This commit is contained in:
29
dev-python/ebuildtester/ebuildtester-0.1.6-r1.ebuild
Normal file
29
dev-python/ebuildtester/ebuildtester-0.1.6-r1.ebuild
Normal 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}"
|
||||
}
|
||||
20
dev-python/ebuildtester/files/ebuildtester.bash-completion
Normal file
20
dev-python/ebuildtester/files/ebuildtester.bash-completion
Normal 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
|
||||
Reference in New Issue
Block a user