From 8ee7ab057f532d1d0c97756b40c00ee36541c210 Mon Sep 17 00:00:00 2001 From: Zang Ruochen Date: Sat, 1 Aug 2020 04:42:38 +0800 Subject: dash: upgrade 0.5.11 -> 0.5.11.1 Signed-off-by: Zang Ruochen Signed-off-by: Khem Raj --- meta-oe/recipes-shells/dash/dash_0.5.11.1.bb | 27 +++++++++++++++++++++++++++ meta-oe/recipes-shells/dash/dash_0.5.11.bb | 27 --------------------------- 2 files changed, 27 insertions(+), 27 deletions(-) create mode 100644 meta-oe/recipes-shells/dash/dash_0.5.11.1.bb delete mode 100644 meta-oe/recipes-shells/dash/dash_0.5.11.bb (limited to 'meta-oe') diff --git a/meta-oe/recipes-shells/dash/dash_0.5.11.1.bb b/meta-oe/recipes-shells/dash/dash_0.5.11.1.bb new file mode 100644 index 0000000000..c6914007db --- /dev/null +++ b/meta-oe/recipes-shells/dash/dash_0.5.11.1.bb @@ -0,0 +1,27 @@ +SUMMARY = "Small and fast POSIX-compliant shell" +HOMEPAGE = "http://gondor.apana.org.au/~herbert/dash/" +SECTION = "System Environment/Shells" + +LICENSE = "BSD & GPLv2+" +LIC_FILES_CHKSUM = "file://COPYING;md5=b5262b4a1a1bff72b48e935531976d2e" + +inherit autotools update-alternatives + +SRC_URI = "http://gondor.apana.org.au/~herbert/${BPN}/files/${BP}.tar.gz" +SRC_URI[md5sum] = "df978fd0324f60a6ff45f686fe269fdc" +SRC_URI[sha256sum] = "73c881f146e329ac54962766760fd62cb8bdff376cd6c2f5772eecc1570e1611" + +EXTRA_OECONF += "--bindir=${base_bindir}" + +ALTERNATIVE_${PN} = "sh" +ALTERNATIVE_LINK_NAME[sh] = "${base_bindir}/sh" +ALTERNATIVE_TARGET[sh] = "${base_bindir}/dash" +ALTERNATIVE_PRIORITY = "10" + +pkg_postinst_${PN} () { + grep -q "^${base_bindir}/dash$" $D${sysconfdir}/shells || echo ${base_bindir}/dash >> $D${sysconfdir}/shells +} + +pkg_postrm_${PN} () { + printf "$(grep -v "^${base_bindir}/dash$" $D${sysconfdir}/shells)\n" > $D${sysconfdir}/shells +} diff --git a/meta-oe/recipes-shells/dash/dash_0.5.11.bb b/meta-oe/recipes-shells/dash/dash_0.5.11.bb deleted file mode 100644 index b3a36651fc..0000000000 --- a/meta-oe/recipes-shells/dash/dash_0.5.11.bb +++ /dev/null @@ -1,27 +0,0 @@ -SUMMARY = "Small and fast POSIX-compliant shell" -HOMEPAGE = "http://gondor.apana.org.au/~herbert/dash/" -SECTION = "System Environment/Shells" - -LICENSE = "BSD & GPLv2+" -LIC_FILES_CHKSUM = "file://COPYING;md5=b5262b4a1a1bff72b48e935531976d2e" - -inherit autotools update-alternatives - -SRC_URI = "http://gondor.apana.org.au/~herbert/${BPN}/files/${BP}.tar.gz" -SRC_URI[md5sum] = "027236e48b9202607b1418fee42c473e" -SRC_URI[sha256sum] = "4dd9a6ed5fe7546095157918fe5d784bb0b7887ae13de50e1e2d11e1b5a391cb" - -EXTRA_OECONF += "--bindir=${base_bindir}" - -ALTERNATIVE_${PN} = "sh" -ALTERNATIVE_LINK_NAME[sh] = "${base_bindir}/sh" -ALTERNATIVE_TARGET[sh] = "${base_bindir}/dash" -ALTERNATIVE_PRIORITY = "10" - -pkg_postinst_${PN} () { - grep -q "^${base_bindir}/dash$" $D${sysconfdir}/shells || echo ${base_bindir}/dash >> $D${sysconfdir}/shells -} - -pkg_postrm_${PN} () { - printf "$(grep -v "^${base_bindir}/dash$" $D${sysconfdir}/shells)\n" > $D${sysconfdir}/shells -} -- cgit 1.2.3-korg