diff options
| author | George McCollister <george.mccollister@gmail.com> | 2016-01-14 14:56:29 -0600 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-30 11:37:02 +0000 |
| commit | ddb786c858984b3bd91bf25826e27d8a966c445c (patch) | |
| tree | 7713c5c425a4b630542018dcf0139c4ad4633c3a | |
| parent | 74e2f682bb9ed90b0b729d5a32b7267f2b4efefd (diff) | |
| download | poky-ddb786c858984b3bd91bf25826e27d8a966c445c.tar.gz | |
bash-completion: move in recipe from meta-oe
Recipes in OE core are building packages that should RDEPEND on
bash-completion so it should be in this layer.
(From OE-Core rev: 2788bc07846f39adc10420dfb9d690c5da5469d9)
Signed-off-by: George McCollister <george.mccollister@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-support/bash-completion/bash-completion_2.1.bb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/meta/recipes-support/bash-completion/bash-completion_2.1.bb b/meta/recipes-support/bash-completion/bash-completion_2.1.bb new file mode 100644 index 0000000000..5c39863c40 --- /dev/null +++ b/meta/recipes-support/bash-completion/bash-completion_2.1.bb | |||
| @@ -0,0 +1,41 @@ | |||
| 1 | SUMMARY = "Programmable Completion for Bash 4" | ||
| 2 | HOMEPAGE = "http://bash-completion.alioth.debian.org/" | ||
| 3 | BUGTRACKER = "https://alioth.debian.org/projects/bash-completion/" | ||
| 4 | |||
| 5 | LICENSE = "GPLv2" | ||
| 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | ||
| 7 | |||
| 8 | SECTION = "console/utils" | ||
| 9 | |||
| 10 | SRC_URI="http://bash-completion.alioth.debian.org/files/${BPN}-${PV}.tar.bz2" | ||
| 11 | |||
| 12 | SRC_URI[md5sum] = "4e2a9f11a4042a38ee79ddcd048e8b9e" | ||
| 13 | SRC_URI[sha256sum] = "2b606804a7d5f823380a882e0f7b6c8a37b0e768e72c3d4107c51fbe8a46ae4f" | ||
| 14 | |||
| 15 | PARALLEL_MAKE = "" | ||
| 16 | |||
| 17 | inherit autotools | ||
| 18 | |||
| 19 | do_install_append() { | ||
| 20 | # compatdir | ||
| 21 | install -d ${D}${sysconfdir}/bash_completion.d/ | ||
| 22 | echo '. ${datadir}/${BPN}/bash_completion' >${D}${sysconfdir}/bash_completion | ||
| 23 | |||
| 24 | # Delete files already provided by util-linux | ||
| 25 | local i | ||
| 26 | for i in cal dmesg eject hexdump hwclock ionice look renice rtcwake su; do | ||
| 27 | rm ${D}${datadir}/${BPN}/completions/$i | ||
| 28 | done | ||
| 29 | |||
| 30 | # Delete files for networkmanager | ||
| 31 | rm ${D}${datadir}/${BPN}/completions/nmcli | ||
| 32 | } | ||
| 33 | |||
| 34 | RDEPENDS_${PN} = "bash" | ||
| 35 | |||
| 36 | # Some recipes are providing ${PN}-bash-completion packages | ||
| 37 | PACKAGES =+ "${PN}-extra" | ||
| 38 | FILES_${PN}-extra = "${datadir}/${BPN}/completions/ \ | ||
| 39 | ${datadir}/${BPN}/helpers/" | ||
| 40 | |||
| 41 | BBCLASSEXTEND = "nativesdk" | ||
