summaryrefslogtreecommitdiff
path: root/app-arch/upx
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-11-01 21:08:07 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-11-01 21:08:07 +0000
commitc37d894982b59595356319a2b4655fed277097ae (patch)
treeca83d38d2302991de53be516dfae53cf09dab271 /app-arch/upx
parentdb16929598ac333b179fdfead630dbdfa68840a5 (diff)
gentoo auto-resync : 01:11:2022 - 21:08:07
Diffstat (limited to 'app-arch/upx')
-rw-r--r--app-arch/upx/Manifest2
-rw-r--r--app-arch/upx/upx-4.0.0.ebuild9
2 files changed, 10 insertions, 1 deletions
diff --git a/app-arch/upx/Manifest b/app-arch/upx/Manifest
index 084b6db76174..a32dd790fa08 100644
--- a/app-arch/upx/Manifest
+++ b/app-arch/upx/Manifest
@@ -1,3 +1,3 @@
DIST upx-4.0.0-src.tar.xz 1159308 BLAKE2B d2626a63b626f9b4e913b822e699fa93b7080d322b19555d44d7cf4ce17b37f0d50ec1381d07d0e4f8827e8edcd29d525d497fa79acd18d520ac58e176fb2b72 SHA512 fe3e8c594e845a91338b1e11fe3cb6371430af40a567187d63835e27da8b2abf993a104b0693063f4db984234bada7b2bd16ad79e3ad90861a1f495d99de7de6
-EBUILD upx-4.0.0.ebuild 575 BLAKE2B 65e6b039add2d11a9c84ff1e37cf611e8fe0f9231c65e178ebb85c2e7f2081884e0eca0bb0382a8e245683bb67d5acb04880b99087f6a9fccdd3773176ba784a SHA512 9b058ba2aaca4fef07c60d5e804546f4339ad5b0cf6273f7b33461805b28cdeb64f8a26798ef7988afcdb690bd9fef33533a268a40331f219dfed810812b58fe
+EBUILD upx-4.0.0.ebuild 711 BLAKE2B cbff29ebf9e587238c9f5949448782929baf06811d27dbc1f69849558f9b0b437df38a8d6df065eaefb6521e61a24293fd36da4b1d54cb437d4d9d91a0a699ca SHA512 34697bb081d04c04697c8eb43848d7c571372bda999dfdb9dc6e449c5449f226196312f7a78697f4341ab391c6a94c730be6ce57130dd582aaa1bec5e776960b
MISC metadata.xml 479 BLAKE2B fafbeeb827ba16ec14c3682982e7cbb1ef9264b637086d58aca32a632b1f273f1cc7ede069d61439a498f04e09368e4095829de7dd95b17afafc80f7ceb15695 SHA512 956e31235fec93e773f9bdbe62de739e3994d92b3a56ea97f65db5b20f182f4fbeed62370a28bf98447fddfa89efec4b8b4d63daf9020210810bd8bb201534e4
diff --git a/app-arch/upx/upx-4.0.0.ebuild b/app-arch/upx/upx-4.0.0.ebuild
index dcfcfaccee67..45118519051f 100644
--- a/app-arch/upx/upx-4.0.0.ebuild
+++ b/app-arch/upx/upx-4.0.0.ebuild
@@ -13,6 +13,15 @@ S="${WORKDIR}/${P}-src"
LICENSE="GPL-2+ UPX-exception" # Read the exception before applying any patches
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="test"
+
+RESTRICT="!test? ( test )"
RDEPEND="!app-arch/upx-bin"
BDEPEND="app-arch/xz-utils[extra-filters]"
+
+src_test() {
+ # Don't run tests in parallel, #878977
+ cd "${BUILD_DIR}" || die
+ ctest || die
+}