From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 0A5D21580EB for ; Fri, 23 May 2025 08:17:40 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id E2C083434B6 for ; Fri, 23 May 2025 08:17:39 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id BAE0911047D; Fri, 23 May 2025 08:17:34 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 bobolink.gentoo.org (Postfix) with ESMTPS id AF4ED11047D for ; Fri, 23 May 2025 08:17:34 +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 45CAF3434B7 for ; Fri, 23 May 2025 08:17:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DEFC19E5 for ; Fri, 23 May 2025 08:17:32 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1747988217.78b7c705f0b312d1a295a550733c5246bfe8d234.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/dpkg/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/dpkg/dpkg-1.22.14.ebuild X-VCS-Directories: app-arch/dpkg/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 78b7c705f0b312d1a295a550733c5246bfe8d234 X-VCS-Branch: master Date: Fri, 23 May 2025 08:17:32 +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: cc4395c3-da38-4acf-9594-69167dce74a2 X-Archives-Hash: fb070e5aacc65d0ae07ae14783656561 commit: 78b7c705f0b312d1a295a550733c5246bfe8d234 Author: Sam James gentoo org> AuthorDate: Fri May 23 07:38:10 2025 +0000 Commit: Sam James gentoo org> CommitDate: Fri May 23 08:16:57 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78b7c705 app-arch/dpkg: run tests in parallel (and verbosely) Signed-off-by: Sam James gentoo.org> app-arch/dpkg/dpkg-1.22.14.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app-arch/dpkg/dpkg-1.22.14.ebuild b/app-arch/dpkg/dpkg-1.22.14.ebuild index bbd537850d2b..f17343d9982e 100644 --- a/app-arch/dpkg/dpkg-1.22.14.ebuild +++ b/app-arch/dpkg/dpkg-1.22.14.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit autotools toolchain-funcs +inherit autotools toolchain-funcs multiprocessing DESCRIPTION="Package maintenance system for Debian" HOMEPAGE="https://packages.qa.debian.org/dpkg" @@ -92,6 +92,10 @@ src_compile() { emake AR="$(tc-getAR)" } +src_test() { + emake -Onone check TEST_PARALLEL="$(makeopts_jobs)" TEST_VERBOSE=1 +} + src_install() { local DOCS=( debian/changelog THANKS TODO ) default