summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/makeself/makeself_2.7.1.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2025-12-18 17:03:31 +0800
committerKhem Raj <raj.khem@gmail.com>2025-12-21 08:54:02 -0800
commit2fdab67aced3685ae23b8ddc53df392fe9d5c105 (patch)
tree5a0a289620fc5dde4763755b27b9de2914b581b4 /meta-oe/recipes-devtools/makeself/makeself_2.7.1.bb
parent6c3cd83b8d72546b21333db3a008f2ee619e2519 (diff)
downloadmeta-openembedded-2fdab67aced3685ae23b8ddc53df392fe9d5c105.tar.gz
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 <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/makeself/makeself_2.7.1.bb')
-rw-r--r--meta-oe/recipes-devtools/makeself/makeself_2.7.1.bb27
1 files changed, 27 insertions, 0 deletions
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 @@
1SUMMARY = "A self-extracting archiving tool for Unix systems, in 100% shell script."
2DESCRIPTION = "\
3 makeself.sh is a small shell script that generates a self-extractable \
4 compressed tar archive from a directory. The resulting file appears as \
5 a shell script (many of those have a .run suffix), and can be launched as is.\
6"
7HOMEPAGE = "https://makeself.io/"
8LICENSE = "GPL-2.0-only"
9LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
10
11SRC_URI = "\
12 git://github.com/megastep/${BPN}.git;protocol=https;branch=master;tag=release-${PV} \
13"
14
15SRCREV = "3815292f7359a4ccab8e27bdbe8a844947c51e4c"
16
17
18do_configure[noexec] = "1"
19do_compile[noexec] = "1"
20
21do_install() {
22 install -d ${D}${bindir}
23 install -m 0755 ${S}/makeself.sh ${D}${bindir}/
24 install -m 0755 ${S}/makeself-header.sh ${D}${bindir}/
25}
26
27BBCLASSEXTEND = "native"