From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CF00E158020 for ; Tue, 1 Nov 2022 18:49:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A8057E0BE8; Tue, 1 Nov 2022 18:49:06 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8C8A3E0BE8 for ; Tue, 1 Nov 2022 18:49:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8737C3411E2 for ; Tue, 1 Nov 2022 18:49:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A78B46DB for ; Tue, 1 Nov 2022 18:49:03 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1667328492.f14c66d1ae4971049e399e4396eba1992f434b5c.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/upx/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/upx/upx-4.0.0.ebuild X-VCS-Directories: app-arch/upx/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: f14c66d1ae4971049e399e4396eba1992f434b5c X-VCS-Branch: master Date: Tue, 1 Nov 2022 18:49:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 31058bd7-b63c-4ed1-a57c-262d16551b1d X-Archives-Hash: d68e2d90a3d8bf8ca9705ef15fba4874 commit: f14c66d1ae4971049e399e4396eba1992f434b5c Author: Azamat H. Hackimov gmail com> AuthorDate: Tue Nov 1 12:31:38 2022 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Tue Nov 1 18:48:12 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f14c66d1 app-arch/upx: fix running tests (#878977) Tests should runs sequentially since there no dependencies for each test step. Closes: https://bugs.gentoo.org/878977 Signed-off-by: Azamat H. Hackimov gmail.com> Closes: https://github.com/gentoo/gentoo/pull/28076 Signed-off-by: Conrad Kostecki gentoo.org> app-arch/upx/upx-4.0.0.ebuild | 9 +++++++++ 1 file changed, 9 insertions(+) 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 +}