Gentoo Archives: gentoo-commits

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