From 1e54869f0599660bbea760e449071baee3507e1c Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Wed, 22 May 2024 17:14:09 +0800 Subject: bash-completion: upgrade 2.13.0 -> 2.14.0 Changelog: ============= * _comp_{compgen,xfunc}:** use 'declare -F --' for arbitrary funcs * _comp_{load,realcommand}:** handle option-like command name * available_interfaces:** strip only trailing colon from entries * bash_completion,conftest:** use 'complete -p --' for arbitrary cmds * fio:** engines completion * ip:** Complete link change as well as set * ip:** Don't stop at proxy and nomaster in neigh * scp remote_files:** do not filter generated paths with "$cur" * scp remote_files:** localize variable 'cur' * ssh-keygen:** handling of bundled short options * ssh-keygen:** make work with custom IFS * ssh-keygen:** suggest -O arg completions depending on mode * use -- to pass arbitrary cmdnames to '_comp_load' * use 'pathcmd=$(type -P -- "$1")' for arbitrary cmds (From OE-Core rev: 90b365f307dcb952e744c44e44198142266d2d70) Signed-off-by: Wang Mingyu Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- .../bash-completion/bash-completion_2.13.0.bb | 38 ---------------------- .../bash-completion/bash-completion_2.14.0.bb | 38 ++++++++++++++++++++++ 2 files changed, 38 insertions(+), 38 deletions(-) delete mode 100644 meta/recipes-support/bash-completion/bash-completion_2.13.0.bb create mode 100644 meta/recipes-support/bash-completion/bash-completion_2.14.0.bb diff --git a/meta/recipes-support/bash-completion/bash-completion_2.13.0.bb b/meta/recipes-support/bash-completion/bash-completion_2.13.0.bb deleted file mode 100644 index f75d61e219..0000000000 --- a/meta/recipes-support/bash-completion/bash-completion_2.13.0.bb +++ /dev/null @@ -1,38 +0,0 @@ -SUMMARY = "Programmable Completion for Bash 4" -DESCRIPTION = "Collection of command line command completions for the Bash shell, \ -collection of helper functions to assist in creating new completions, \ -and set of facilities for loading completions automatically on demand, as well \ -as installing them." - -HOMEPAGE = "https://github.com/scop/bash-completion" -BUGTRACKER = "https://github.com/scop/bash-completion/issues" - -LICENSE = "GPL-2.0-only" -LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" - -SECTION = "console/utils" - -SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/${BPN}-${PV}.tar.xz" - -SRC_URI[sha256sum] = "c5f99a39e40f0d154c03ff15438e87ece1f5ac666336a4459899e2ff4bedf3d1" -GITHUB_BASE_URI = "https://github.com/scop/bash-completion/releases" - -PARALLEL_MAKE = "" - -inherit autotools github-releases - -do_install:append() { - # compatdir - install -d ${D}${sysconfdir}/bash_completion.d/ - echo '. ${datadir}/${BPN}/bash_completion' >${D}${sysconfdir}/bash_completion - -} - -RDEPENDS:${PN} = "bash" - -# Some recipes are providing ${PN}-bash-completion packages -PACKAGES =+ "${PN}-extra" -FILES:${PN}-extra = "${datadir}/${BPN}/completions/ \ - ${datadir}/${BPN}/helpers/" - -BBCLASSEXTEND = "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 @@ +SUMMARY = "Programmable Completion for Bash 4" +DESCRIPTION = "Collection of command line command completions for the Bash shell, \ +collection of helper functions to assist in creating new completions, \ +and set of facilities for loading completions automatically on demand, as well \ +as installing them." + +HOMEPAGE = "https://github.com/scop/bash-completion" +BUGTRACKER = "https://github.com/scop/bash-completion/issues" + +LICENSE = "GPL-2.0-only" +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" + +SECTION = "console/utils" + +SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/${BPN}-${PV}.tar.xz" + +SRC_URI[sha256sum] = "5c7494f968280832d6adb5aa19f745a56f1a79df311e59338c5efa6f7285e168" +GITHUB_BASE_URI = "https://github.com/scop/bash-completion/releases" + +PARALLEL_MAKE = "" + +inherit autotools github-releases + +do_install:append() { + # compatdir + install -d ${D}${sysconfdir}/bash_completion.d/ + echo '. ${datadir}/${BPN}/bash_completion' >${D}${sysconfdir}/bash_completion + +} + +RDEPENDS:${PN} = "bash" + +# Some recipes are providing ${PN}-bash-completion packages +PACKAGES =+ "${PN}-extra" +FILES:${PN}-extra = "${datadir}/${BPN}/completions/ \ + ${datadir}/${BPN}/helpers/" + +BBCLASSEXTEND = "nativesdk" -- cgit v1.2.3-54-g00ecf