summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/bash-completion
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/bash-completion')
-rw-r--r--meta/recipes-support/bash-completion/bash-completion_2.11.bb39
-rw-r--r--meta/recipes-support/bash-completion/bash-completion_2.14.0.bb38
2 files changed, 38 insertions, 39 deletions
diff --git a/meta/recipes-support/bash-completion/bash-completion_2.11.bb b/meta/recipes-support/bash-completion/bash-completion_2.11.bb
deleted file mode 100644
index f00e0fc5b7..0000000000
--- a/meta/recipes-support/bash-completion/bash-completion_2.11.bb
+++ /dev/null
@@ -1,39 +0,0 @@
1SUMMARY = "Programmable Completion for Bash 4"
2DESCRIPTION = "bash completion extends bash's standard completion behavior to \
3achieve complex command lines with just a few keystrokes."
4HOMEPAGE = "https://github.com/scop/bash-completion"
5BUGTRACKER = "https://github.com/scop/bash-completion/issues"
6
7LICENSE = "GPLv2"
8LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
9
10SECTION = "console/utils"
11
12SRC_URI = "https://github.com/scop/bash-completion/releases/download/${PV}/${BPN}-${PV}.tar.xz"
13
14SRC_URI[md5sum] = "2514c6772d0de6254758b98c53f91861"
15SRC_URI[sha256sum] = "73a8894bad94dee83ab468fa09f628daffd567e8bef1a24277f1e9a0daf911ac"
16UPSTREAM_CHECK_REGEX = "bash-completion-(?P<pver>(?!2008).+)\.tar"
17UPSTREAM_CHECK_URI = "https://github.com/scop/bash-completion/releases"
18
19PARALLEL_MAKE = ""
20
21inherit autotools
22
23do_install_append() {
24 # compatdir
25 install -d ${D}${sysconfdir}/bash_completion.d/
26 echo '. ${datadir}/${BPN}/bash_completion' >${D}${sysconfdir}/bash_completion
27
28}
29
30RDEPENDS_${PN} = "bash"
31
32# Some recipes are providing ${PN}-bash-completion packages
33PACKAGES =+ "${PN}-extra"
34FILES_${PN}-extra = "${datadir}/${BPN}/completions/ \
35 ${datadir}/${BPN}/helpers/"
36
37FILES_${PN}-dev += "${datadir}/cmake"
38
39BBCLASSEXTEND = "nativesdk"
diff --git a/meta/recipes-support/bash-completion/bash-completion_2.14.0.bb b/meta/recipes-support/bash-completion/bash-completion_2.14.0.bb
new file mode 100644
index 0000000000..06c81beaa0
--- /dev/null
+++ b/meta/recipes-support/bash-completion/bash-completion_2.14.0.bb
@@ -0,0 +1,38 @@
1SUMMARY = "Programmable Completion for Bash 4"
2DESCRIPTION = "Collection of command line command completions for the Bash shell, \
3collection of helper functions to assist in creating new completions, \
4and set of facilities for loading completions automatically on demand, as well \
5as installing them."
6
7HOMEPAGE = "https://github.com/scop/bash-completion"
8BUGTRACKER = "https://github.com/scop/bash-completion/issues"
9
10LICENSE = "GPL-2.0-only"
11LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
12
13SECTION = "console/utils"
14
15SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/${BPN}-${PV}.tar.xz"
16
17SRC_URI[sha256sum] = "5c7494f968280832d6adb5aa19f745a56f1a79df311e59338c5efa6f7285e168"
18GITHUB_BASE_URI = "https://github.com/scop/bash-completion/releases"
19
20PARALLEL_MAKE = ""
21
22inherit autotools github-releases
23
24do_install:append() {
25 # compatdir
26 install -d ${D}${sysconfdir}/bash_completion.d/
27 echo '. ${datadir}/${BPN}/bash_completion' >${D}${sysconfdir}/bash_completion
28
29}
30
31RDEPENDS:${PN} = "bash"
32
33# Some recipes are providing ${PN}-bash-completion packages
34PACKAGES =+ "${PN}-extra"
35FILES:${PN}-extra = "${datadir}/${BPN}/completions/ \
36 ${datadir}/${BPN}/helpers/"
37
38BBCLASSEXTEND = "nativesdk"