Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/upx/
Date: Mon, 31 Oct 2022 22:51:23
Message-Id: 1667256657.5f6c4062375fef16a763f3d413b099addef73432.conikost@gentoo
1 commit: 5f6c4062375fef16a763f3d413b099addef73432
2 Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
3 AuthorDate: Sun Oct 30 11:49:41 2022 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 31 22:50:57 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f6c4062
7
8 app-arch/upx: add 4.0.0
9
10 Bug: https://bugs.gentoo.org/778530
11 Bug: https://bugs.gentoo.org/790281
12 Bug: https://bugs.gentoo.org/792348
13 Bug: https://bugs.gentoo.org/866794
14 Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
15 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
16
17 app-arch/upx/Manifest | 1 +
18 app-arch/upx/upx-4.0.0.ebuild | 18 ++++++++++++++++++
19 2 files changed, 19 insertions(+)
20
21 diff --git a/app-arch/upx/Manifest b/app-arch/upx/Manifest
22 index 1464eec2d85e..305f77a6cf04 100644
23 --- a/app-arch/upx/Manifest
24 +++ b/app-arch/upx/Manifest
25 @@ -1 +1,2 @@
26 DIST upx-3.96-src.tar.xz 792524 BLAKE2B 21af85dbcfdd1bf0151a653c865db13c9f30b9de0b9b4b94557ddd55736c7053dd829c5d72b9a7e5aa94a71ecc0151145dd66d7d98ded178c50ff7357d0ba442 SHA512 2d4d1be21d274d9bfdee9b9815396f5e5ff0bcdfb781b7be5fafa4d1e224028e412ec5f5ba607c482671aae27ccf9069abb2db0fb58f78f3a102a51897df2b11
27 +DIST upx-4.0.0-src.tar.xz 1159308 BLAKE2B d2626a63b626f9b4e913b822e699fa93b7080d322b19555d44d7cf4ce17b37f0d50ec1381d07d0e4f8827e8edcd29d525d497fa79acd18d520ac58e176fb2b72 SHA512 fe3e8c594e845a91338b1e11fe3cb6371430af40a567187d63835e27da8b2abf993a104b0693063f4db984234bada7b2bd16ad79e3ad90861a1f495d99de7de6
28
29 diff --git a/app-arch/upx/upx-4.0.0.ebuild b/app-arch/upx/upx-4.0.0.ebuild
30 new file mode 100644
31 index 000000000000..dcfcfaccee67
32 --- /dev/null
33 +++ b/app-arch/upx/upx-4.0.0.ebuild
34 @@ -0,0 +1,18 @@
35 +# Copyright 1999-2022 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=8
39 +
40 +inherit cmake
41 +
42 +DESCRIPTION="Ultimate Packer for eXecutables (free version using UCL compression and not NRV)"
43 +HOMEPAGE="https://upx.github.io/"
44 +SRC_URI="https://github.com/upx/upx/releases/download/v${PV}/${P}-src.tar.xz"
45 +S="${WORKDIR}/${P}-src"
46 +
47 +LICENSE="GPL-2+ UPX-exception" # Read the exception before applying any patches
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
50 +
51 +RDEPEND="!app-arch/upx-bin"
52 +BDEPEND="app-arch/xz-utils[extra-filters]"