mirror of
https://git.yoctoproject.org/poky
synced 2026-07-26 19:17:07 +00:00
bash-completion: update to 2.4
(From OE-Core rev: 7f23afc08141b48c4adea51820b9ad9a8fa21867) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
31eadec93c
commit
32ac9347d6
@@ -0,0 +1,42 @@
|
||||
SUMMARY = "Programmable Completion for Bash 4"
|
||||
HOMEPAGE = "http://bash-completion.alioth.debian.org/"
|
||||
BUGTRACKER = "https://alioth.debian.org/projects/bash-completion/"
|
||||
|
||||
LICENSE = "GPLv2"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
|
||||
|
||||
SECTION = "console/utils"
|
||||
|
||||
SRC_URI = "https://github.com/scop/bash-completion/releases/download/${PV}/${BPN}-${PV}.tar.xz"
|
||||
|
||||
SRC_URI[md5sum] = "1ea94864fb2b2446fbbdf82f10bd25df"
|
||||
SRC_URI[sha256sum] = "c0f76b5202fec9ef8ffba82f5605025ca003f27cfd7a85115f838ba5136890f6"
|
||||
UPSTREAM_CHECK_REGEX = "bash-completion-(?P<pver>(?!2008).+)\.tar"
|
||||
UPSTREAM_CHECK_URI = "https://github.com/scop/bash-completion/releases"
|
||||
|
||||
PARALLEL_MAKE = ""
|
||||
|
||||
inherit autotools
|
||||
|
||||
do_install_append() {
|
||||
# compatdir
|
||||
install -d ${D}${sysconfdir}/bash_completion.d/
|
||||
echo '. ${datadir}/${BPN}/bash_completion' >${D}${sysconfdir}/bash_completion
|
||||
|
||||
# Delete files already provided by util-linux
|
||||
local i
|
||||
for i in mount umount; do
|
||||
rm ${D}${datadir}/${BPN}/completions/$i
|
||||
done
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} = "bash"
|
||||
|
||||
# Some recipes are providing ${PN}-bash-completion packages
|
||||
PACKAGES =+ "${PN}-extra"
|
||||
FILES_${PN}-extra = "${datadir}/${BPN}/completions/ \
|
||||
${datadir}/${BPN}/helpers/"
|
||||
|
||||
FILES_${PN}-dev += "${datadir}/cmake"
|
||||
|
||||
BBCLASSEXTEND = "nativesdk"
|
||||
Reference in New Issue
Block a user