commit: dc20246b5de7865a49f9671b44b3fe53632d6bfe Author: Viorel Munteanu <ceamac <AT> gentoo <DOT> org> AuthorDate: Sun Mar 1 11:26:55 2026 +0000 Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org> CommitDate: Sun Mar 1 15:06:20 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc20246b
app-arch/makeself: add 2.7.1 Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org> app-arch/makeself/Manifest | 1 + app-arch/makeself/makeself-2.7.1.ebuild | 40 +++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/app-arch/makeself/Manifest b/app-arch/makeself/Manifest index efa4fe638270..72b7d5c2f77a 100644 --- a/app-arch/makeself/Manifest +++ b/app-arch/makeself/Manifest @@ -1,3 +1,4 @@ DIST makeself-2.5.0.tar.gz 43996 BLAKE2B 60e5b7a55bd03e45d25753600ddb4e0e15f05eabc95db18f1a9da10308d018bb913ba1e8bc264c3bd828c3d229aca34fae4ab1682bf6cf59c591a6fdef186061 SHA512 cd0ce98579f00a02f9559848b39e0a6efea9df1866073d419f0b6560034cc186ed8315f8b4589e03f626b040727d9ae646bc2abaebe4f4da556b87617bdd770f DIST makeself-2.6.0.tar.gz 45308 BLAKE2B 5b5c90295bd12c75711bc5c255ea15552799568349cc3e2b747bbcfe1695be57f9faac7f3460da7019c0c9ea18c0e3ca33d49612142fa2171665a42257a790f0 SHA512 6733f9e07d595084265f249754842224de3aec9b718f2e3176325593cec25a2274cabdbc1b114b9e40d57a3efe27330dcbd2890b9c78d4b91b1076a1edc7ef6f DIST makeself-2.7.0.tar.gz 46003 BLAKE2B e1ad9177d0a82cb5a1144a93e0b9ed3a152c850e19548bb2e019bd0c4e76fd7310097dba46ca7a8a913591ff9d86a214316105d122defb6d6743e1ba696d924d SHA512 4809efb50226c0977265eb708b19b0833614e17a60531d86f0a7377ad43b2764dafa6cfff7cc61bdb638cd08481a37cc0176a28dd53c265c78cd73b6487e7de0 +DIST makeself-2.7.1.tar.gz 46359 BLAKE2B b498b60cefcde130ac086b5955a66a695abb7fe961c71676e6b9807c7d46a84e86de906ef47f3d0a56fd54ef0e07dc05f4a7b10ff1c91e9d91f546950fb42dee SHA512 2dad883a4c994baf756868d0c4155b555486be25d5df68eef26426ed78fb731c4929048a2551ef1c046f0ed941c6baf6ec5056008944cd55b825dc9e394d762b diff --git a/app-arch/makeself/makeself-2.7.1.ebuild b/app-arch/makeself/makeself-2.7.1.ebuild new file mode 100644 index 000000000000..db6bae7c6a67 --- /dev/null +++ b/app-arch/makeself/makeself-2.7.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit optfeature + +DESCRIPTION="Shell script that generates a self-extractible tar.gz" +HOMEPAGE="https://makeself.io/" +SRC_URI="https://github.com/megastep/makeself/archive/refs/tags/release-${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-release-${PV}" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~x86" + +# NB: The test framework requires bashunit (which isn't a big deal), but the +# tests themselves are not of great quality. You should avoid running them +# yourself as they like to run commands like gpg against your own ~/ settings. +RESTRICT="test" + +src_compile() { :; } + +src_install() { + dobin makeself-header.sh makeself.sh + dosym makeself.sh /usr/bin/makeself + doman makeself.1 + dodoc README.md +} + +pkg_postinst() { + optfeature "bzip3 support" app-arch/bzip3 + optfeature "lz4 support" app-arch/lz4 + optfeature "lzop support" app-arch/lzop + optfeature "pbzip2 support" app-arch/pbzip2 + optfeature "pigz support" app-arch/pigz + optfeature "zstd support" app-arch/zstd + + # Also bzip2 and xz are supported but they are in @system. +}
