summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthieu CRAPET <Matthieu.CRAPET@ingenico.com>2014-03-20 13:33:50 +0100
committerMartin Jansa <Martin.Jansa@gmail.com>2014-04-20 15:38:32 +0200
commit4479cf9a6d4b476757ad6dc5ac7a9ece2432db5c (patch)
tree9002c3f7ee97ff3440d3ead7afbf8b06ecc878cd
parent6291199ee4c9dde2ac05e1d48372c667f92b14ff (diff)
downloadmeta-openembedded-4479cf9a6d4b476757ad6dc5ac7a9ece2432db5c.tar.gz
bash-completion: update to version 2.1
Notes: - PARALLEL_MAKE is still required - inherit allarch is not present because of runtime dependency with bash (TUNE_PKGARCH) Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r--meta-oe/recipes-support/bash-completion/bash-completion_2.1.bb (renamed from meta-oe/recipes-support/bash-completion/bash-completion_2.0.bb)11
1 files changed, 5 insertions, 6 deletions
diff --git a/meta-oe/recipes-support/bash-completion/bash-completion_2.0.bb b/meta-oe/recipes-support/bash-completion/bash-completion_2.1.bb
index 014d122cb..bafe32d4f 100644
--- a/meta-oe/recipes-support/bash-completion/bash-completion_2.0.bb
+++ b/meta-oe/recipes-support/bash-completion/bash-completion_2.1.bb
@@ -5,26 +5,25 @@ BUGTRACKER = "https://alioth.debian.org/projects/bash-completion/"
5LICENSE = "GPLv2" 5LICENSE = "GPLv2"
6LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" 6LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
7 7
8PR = "r1"
9
10SECTION = "console/utils" 8SECTION = "console/utils"
11 9
12SRC_URI="http://bash-completion.alioth.debian.org/files/${BPN}-${PV}.tar.bz2" 10SRC_URI="http://bash-completion.alioth.debian.org/files/${BPN}-${PV}.tar.bz2"
13 11
14SRC_URI[md5sum] = "0d903f398be8c8f24bc5ffa6f86127f8" 12SRC_URI[md5sum] = "4e2a9f11a4042a38ee79ddcd048e8b9e"
15SRC_URI[sha256sum] = "e5a490a4301dfb228361bdca2ffca597958e47dd6056005ef9393a5852af5804" 13SRC_URI[sha256sum] = "2b606804a7d5f823380a882e0f7b6c8a37b0e768e72c3d4107c51fbe8a46ae4f"
16 14
17PARALLEL_MAKE = "" 15PARALLEL_MAKE = ""
18 16
19inherit allarch autotools 17inherit autotools
20 18
21do_install_append() { 19do_install_append() {
20 # compatdir
22 install -d ${D}${sysconfdir}/bash_completion.d/ 21 install -d ${D}${sysconfdir}/bash_completion.d/
23 echo '. ${datadir}/${BPN}/bash_completion' >${D}${sysconfdir}/bash_completion 22 echo '. ${datadir}/${BPN}/bash_completion' >${D}${sysconfdir}/bash_completion
24 23
25 # Delete files already provided by util-linux 24 # Delete files already provided by util-linux
26 local i 25 local i
27 for i in cal dmesg hwclock ionice look renice rtcwake; do 26 for i in cal dmesg eject hexdump hwclock ionice look renice rtcwake; do
28 rm ${D}${datadir}/${BPN}/completions/$i 27 rm ${D}${datadir}/${BPN}/completions/$i
29 done 28 done
30} 29}