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 A607E158083 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 C3732E29B5; Tue, 17 Sep 2024 23:31:00 +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 A8214E29B5 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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BA7C1342FA4 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 D6FB7268D 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: <1726615794.f6757bf5e6c764e77743170168f1d2e9663005ff.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/evolution-ews/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnome-extra/evolution-ews/evolution-ews-3.50.2.ebuild gnome-extra/evolution-ews/evolution-ews-3.50.3-r1.ebuild gnome-extra/evolution-ews/evolution-ews-3.52.2.ebuild gnome-extra/evolution-ews/evolution-ews-3.52.4.ebuild X-VCS-Directories: gnome-extra/evolution-ews/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f6757bf5e6c764e77743170168f1d2e9663005ff 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: 9849d150-2971-4c52-ab64-dcc469d5fad9 X-Archives-Hash: cd8c016316d1328ea9844000c4d6302a commit: f6757bf5e6c764e77743170168f1d2e9663005ff Author: Sam James gentoo org> AuthorDate: Tue Sep 17 23:29:23 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Sep 17 23:29:54 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6757bf5 gnome-extra/evolution-ews: 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> gnome-extra/evolution-ews/evolution-ews-3.50.2.ebuild | 3 ++- gnome-extra/evolution-ews/evolution-ews-3.50.3-r1.ebuild | 3 ++- gnome-extra/evolution-ews/evolution-ews-3.52.2.ebuild | 3 ++- gnome-extra/evolution-ews/evolution-ews-3.52.4.ebuild | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/gnome-extra/evolution-ews/evolution-ews-3.50.2.ebuild b/gnome-extra/evolution-ews/evolution-ews-3.50.2.ebuild index be5af4aa8b97..d5b71171bddc 100644 --- a/gnome-extra/evolution-ews/evolution-ews-3.50.2.ebuild +++ b/gnome-extra/evolution-ews/evolution-ews-3.50.2.ebuild @@ -60,7 +60,8 @@ src_compile() { } src_test() { - cmake_src_test + # -j1: https://gitlab.gnome.org/GNOME/evolution-data-server/-/issues/522 + cmake_src_test -j1 } src_install() { diff --git a/gnome-extra/evolution-ews/evolution-ews-3.50.3-r1.ebuild b/gnome-extra/evolution-ews/evolution-ews-3.50.3-r1.ebuild index f1289dd7ac96..3fee01d4d062 100644 --- a/gnome-extra/evolution-ews/evolution-ews-3.50.3-r1.ebuild +++ b/gnome-extra/evolution-ews/evolution-ews-3.50.3-r1.ebuild @@ -63,7 +63,8 @@ src_compile() { } src_test() { - cmake_src_test + # -j1: https://gitlab.gnome.org/GNOME/evolution-data-server/-/issues/522 + cmake_src_test -j1 } src_install() { diff --git a/gnome-extra/evolution-ews/evolution-ews-3.52.2.ebuild b/gnome-extra/evolution-ews/evolution-ews-3.52.2.ebuild index b8536add3667..aa6c1306dab2 100644 --- a/gnome-extra/evolution-ews/evolution-ews-3.52.2.ebuild +++ b/gnome-extra/evolution-ews/evolution-ews-3.52.2.ebuild @@ -59,7 +59,8 @@ src_compile() { } src_test() { - cmake_src_test + # -j1: https://gitlab.gnome.org/GNOME/evolution-data-server/-/issues/522 + cmake_src_test -j1 } src_install() { diff --git a/gnome-extra/evolution-ews/evolution-ews-3.52.4.ebuild b/gnome-extra/evolution-ews/evolution-ews-3.52.4.ebuild index b8536add3667..aa6c1306dab2 100644 --- a/gnome-extra/evolution-ews/evolution-ews-3.52.4.ebuild +++ b/gnome-extra/evolution-ews/evolution-ews-3.52.4.ebuild @@ -59,7 +59,8 @@ src_compile() { } src_test() { - cmake_src_test + # -j1: https://gitlab.gnome.org/GNOME/evolution-data-server/-/issues/522 + cmake_src_test -j1 } src_install() {