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 1E80B158083 for ; Tue, 17 Sep 2024 23:31:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F33CE29AF; Tue, 17 Sep 2024 23:31:00 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 234BBE29AF for ; Tue, 17 Sep 2024 23:31:00 +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 4FDED335D6F for ; Tue, 17 Sep 2024 23:30:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF30114D3 for ; Tue, 17 Sep 2024 23:30:57 +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: <1726615793.7691ecc5a4304f66cad7cad28b9dd16d49f0b0f1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/evolution-data-server/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnome-extra/evolution-data-server/evolution-data-server-3.50.2-r1.ebuild gnome-extra/evolution-data-server/evolution-data-server-3.50.4.ebuild gnome-extra/evolution-data-server/evolution-data-server-3.52.2.ebuild gnome-extra/evolution-data-server/evolution-data-server-3.52.4.ebuild X-VCS-Directories: gnome-extra/evolution-data-server/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7691ecc5a4304f66cad7cad28b9dd16d49f0b0f1 X-VCS-Branch: master Date: Tue, 17 Sep 2024 23:30:57 +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: 10527f9a-084d-431a-806b-2c4e2f10dc48 X-Archives-Hash: 3ee3476c8ba8773744aded177b26a7fa commit: 7691ecc5a4304f66cad7cad28b9dd16d49f0b0f1 Author: Sam James gentoo org> AuthorDate: Tue Sep 17 23:24:42 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Sep 17 23:29:53 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7691ecc5 gnome-extra/evolution-data-server: run tests serially The tests fail in parallel. Upstream have added forcing them to run serially to their CMake for newer versions though. Bug: https://gitlab.gnome.org/GNOME/evolution-data-server/-/issues/522 Closes: https://bugs.gentoo.org/922977 Signed-off-by: Sam James gentoo.org> .../evolution-data-server/evolution-data-server-3.50.2-r1.ebuild | 3 ++- gnome-extra/evolution-data-server/evolution-data-server-3.50.4.ebuild | 3 ++- gnome-extra/evolution-data-server/evolution-data-server-3.52.2.ebuild | 3 ++- gnome-extra/evolution-data-server/evolution-data-server-3.52.4.ebuild | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/gnome-extra/evolution-data-server/evolution-data-server-3.50.2-r1.ebuild b/gnome-extra/evolution-data-server/evolution-data-server-3.50.2-r1.ebuild index 641888ecc6e9..f066b4c3f06f 100644 --- a/gnome-extra/evolution-data-server/evolution-data-server-3.50.2-r1.ebuild +++ b/gnome-extra/evolution-data-server/evolution-data-server-3.50.2-r1.ebuild @@ -146,7 +146,8 @@ src_compile() { } src_test() { - virtx cmake_src_test + # -j1: https://gitlab.gnome.org/GNOME/evolution-data-server/-/issues/522 + virtx cmake_src_test -j1 } src_install() { diff --git a/gnome-extra/evolution-data-server/evolution-data-server-3.50.4.ebuild b/gnome-extra/evolution-data-server/evolution-data-server-3.50.4.ebuild index fc2d5296f008..b20947255e52 100644 --- a/gnome-extra/evolution-data-server/evolution-data-server-3.50.4.ebuild +++ b/gnome-extra/evolution-data-server/evolution-data-server-3.50.4.ebuild @@ -146,7 +146,8 @@ src_compile() { } src_test() { - virtx cmake_src_test + # -j1: https://gitlab.gnome.org/GNOME/evolution-data-server/-/issues/522 + virtx cmake_src_test -j1 } src_install() { diff --git a/gnome-extra/evolution-data-server/evolution-data-server-3.52.2.ebuild b/gnome-extra/evolution-data-server/evolution-data-server-3.52.2.ebuild index 738c9a6e2f38..f77aac0a3a6c 100644 --- a/gnome-extra/evolution-data-server/evolution-data-server-3.52.2.ebuild +++ b/gnome-extra/evolution-data-server/evolution-data-server-3.52.2.ebuild @@ -145,7 +145,8 @@ src_compile() { } src_test() { - virtx cmake_src_test + # -j1: https://gitlab.gnome.org/GNOME/evolution-data-server/-/issues/522 + virtx cmake_src_test -j1 } src_install() { diff --git a/gnome-extra/evolution-data-server/evolution-data-server-3.52.4.ebuild b/gnome-extra/evolution-data-server/evolution-data-server-3.52.4.ebuild index ec3f65f0138d..bf476cbae0e7 100644 --- a/gnome-extra/evolution-data-server/evolution-data-server-3.52.4.ebuild +++ b/gnome-extra/evolution-data-server/evolution-data-server-3.52.4.ebuild @@ -145,7 +145,8 @@ src_compile() { } src_test() { - virtx cmake_src_test + # -j1: https://gitlab.gnome.org/GNOME/evolution-data-server/-/issues/522 + virtx cmake_src_test -j1 } src_install() {