From 2fdab67aced3685ae23b8ddc53df392fe9d5c105 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Thu, 18 Dec 2025 17:03:31 +0800 Subject: makeself: upgrade 2.6.0 -> 2.7.1 Changelog: ============ - Base64 encoding now runs after compression, consistent with other post-compression encryption/encoding options. - Documentation updated to reflect that compression can be combined with encryption/encoding. - Compression now precedes encryption so both can be enabled together. - Signing passphrases are masked in stored metadata. - Added coverage for combined encryption + compression flows. - Access archive name from script - pre-extraction script execution in combination with --notemp -Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- .../recipes-devtools/makeself/makeself_2.6.0.bb | 27 ---------------------- .../recipes-devtools/makeself/makeself_2.7.1.bb | 27 ++++++++++++++++++++++ 2 files changed, 27 insertions(+), 27 deletions(-) delete mode 100644 meta-oe/recipes-devtools/makeself/makeself_2.6.0.bb create mode 100644 meta-oe/recipes-devtools/makeself/makeself_2.7.1.bb diff --git a/meta-oe/recipes-devtools/makeself/makeself_2.6.0.bb b/meta-oe/recipes-devtools/makeself/makeself_2.6.0.bb deleted file mode 100644 index cd2c4c16de..0000000000 --- a/meta-oe/recipes-devtools/makeself/makeself_2.6.0.bb +++ /dev/null @@ -1,27 +0,0 @@ -SUMMARY = "A self-extracting archiving tool for Unix systems, in 100% shell script." -DESCRIPTION = "\ - makeself.sh is a small shell script that generates a self-extractable \ - compressed tar archive from a directory. The resulting file appears as \ - a shell script (many of those have a .run suffix), and can be launched as is.\ -" -HOMEPAGE = "https://makeself.io/" -LICENSE = "GPL-2.0-only" -LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" - -SRC_URI = "\ - git://github.com/megastep/${BPN}.git;protocol=https;branch=master;tag=release-${PV} \ -" - -SRCREV = "55d96ab79d39e10e3aec1bb1a7647ec0d4ddf1aa" - - -do_configure[noexec] = "1" -do_compile[noexec] = "1" - -do_install() { - install -d ${D}${bindir} - install -m 0755 ${S}/makeself.sh ${D}${bindir}/ - install -m 0755 ${S}/makeself-header.sh ${D}${bindir}/ -} - -BBCLASSEXTEND = "native" diff --git a/meta-oe/recipes-devtools/makeself/makeself_2.7.1.bb b/meta-oe/recipes-devtools/makeself/makeself_2.7.1.bb new file mode 100644 index 0000000000..1deb59587e --- /dev/null +++ b/meta-oe/recipes-devtools/makeself/makeself_2.7.1.bb @@ -0,0 +1,27 @@ +SUMMARY = "A self-extracting archiving tool for Unix systems, in 100% shell script." +DESCRIPTION = "\ + makeself.sh is a small shell script that generates a self-extractable \ + compressed tar archive from a directory. The resulting file appears as \ + a shell script (many of those have a .run suffix), and can be launched as is.\ +" +HOMEPAGE = "https://makeself.io/" +LICENSE = "GPL-2.0-only" +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" + +SRC_URI = "\ + git://github.com/megastep/${BPN}.git;protocol=https;branch=master;tag=release-${PV} \ +" + +SRCREV = "3815292f7359a4ccab8e27bdbe8a844947c51e4c" + + +do_configure[noexec] = "1" +do_compile[noexec] = "1" + +do_install() { + install -d ${D}${bindir} + install -m 0755 ${S}/makeself.sh ${D}${bindir}/ + install -m 0755 ${S}/makeself-header.sh ${D}${bindir}/ +} + +BBCLASSEXTEND = "native" -- cgit v1.2.3-54-g00ecf