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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 08934158042 for ; Fri, 18 Oct 2024 19:43:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB889E07BA; Fri, 18 Oct 2024 19:43:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 pigeon.gentoo.org (Postfix) with ESMTPS id D13F7E07BA for ; Fri, 18 Oct 2024 19:43:56 +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 100683430CA for ; Fri, 18 Oct 2024 19:43:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6FEC719CB for ; Fri, 18 Oct 2024 19:43:54 +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: <1729280602.627572a9b3064067a523063b0fca25b0791d99eb.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/kbd/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/kbd/kbd-2.6.4.ebuild sys-apps/kbd/kbd-9999.ebuild X-VCS-Directories: sys-apps/kbd/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 627572a9b3064067a523063b0fca25b0791d99eb X-VCS-Branch: master Date: Fri, 18 Oct 2024 19:43:54 +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: ddff120e-acf5-41bc-a4fb-a2e67c3535d4 X-Archives-Hash: 2b186b59be3b9460a0d3005c2d3e5481 commit: 627572a9b3064067a523063b0fca25b0791d99eb Author: Sam James gentoo org> AuthorDate: Fri Oct 18 19:38:51 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Oct 18 19:43:22 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=627572a9 sys-apps/kbd: run tests in parallel They're not really slow anyway but why not? Plus it's a useful way to grep for things using autotest. Signed-off-by: Sam James gentoo.org> sys-apps/kbd/kbd-2.6.4.ebuild | 8 +++++++- sys-apps/kbd/kbd-9999.ebuild | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/sys-apps/kbd/kbd-2.6.4.ebuild b/sys-apps/kbd/kbd-2.6.4.ebuild index d4f32c7cb2bd..ebceb5c788ba 100644 --- a/sys-apps/kbd/kbd-2.6.4.ebuild +++ b/sys-apps/kbd/kbd-2.6.4.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 +inherit multiprocessing + if [[ ${PV} == 9999 ]] ; then inherit autotools git-r3 EGIT_REPO_URI="https://github.com/legionus/kbd.git https://git.kernel.org/pub/scm/linux/kernel/git/legion/kbd.git" @@ -75,6 +77,10 @@ src_configure() { econf "${myeconfargs[@]}" } +src_test() { + emake -Onone check TESTSUITEFLAGS="--jobs=$(get_makeopts_jobs)" +} + src_install() { default diff --git a/sys-apps/kbd/kbd-9999.ebuild b/sys-apps/kbd/kbd-9999.ebuild index 7cb13a1a8a2d..ca0b13cdd97e 100644 --- a/sys-apps/kbd/kbd-9999.ebuild +++ b/sys-apps/kbd/kbd-9999.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 +inherit multiprocessing + if [[ ${PV} == 9999 ]] ; then inherit autotools git-r3 EGIT_REPO_URI="https://github.com/legionus/kbd.git https://git.kernel.org/pub/scm/linux/kernel/git/legion/kbd.git" @@ -75,6 +77,10 @@ src_configure() { econf "${myeconfargs[@]}" } +src_test() { + emake -Onone check TESTSUITEFLAGS="--jobs=$(get_makeopts_jobs)" +} + src_install() { default