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 4872115808B 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 7926EE29B4; 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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5EC25E29B4 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 6518C342FA3 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 C3AF61E37 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.ef09dfba82e970e5ba895dacea7fbf1dd25d35ff.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/evolution/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-client/evolution/evolution-3.50.2.ebuild mail-client/evolution/evolution-3.50.4-r1.ebuild mail-client/evolution/evolution-3.50.4.ebuild mail-client/evolution/evolution-3.52.2.ebuild mail-client/evolution/evolution-3.52.4.ebuild X-VCS-Directories: mail-client/evolution/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ef09dfba82e970e5ba895dacea7fbf1dd25d35ff 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: a35f6849-8ad0-466b-b8f6-7b17d2e347fb X-Archives-Hash: 4d0ed1619d27a65ada0e06cccb571985 commit: ef09dfba82e970e5ba895dacea7fbf1dd25d35ff Author: Sam James gentoo org> AuthorDate: Tue Sep 17 23:27:46 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=ef09dfba mail-client/evolution: 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> mail-client/evolution/evolution-3.50.2.ebuild | 3 ++- mail-client/evolution/evolution-3.50.4-r1.ebuild | 3 ++- mail-client/evolution/evolution-3.50.4.ebuild | 3 ++- mail-client/evolution/evolution-3.52.2.ebuild | 3 ++- mail-client/evolution/evolution-3.52.4.ebuild | 3 ++- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/mail-client/evolution/evolution-3.50.2.ebuild b/mail-client/evolution/evolution-3.50.2.ebuild index 74293119e3ca..d2ea0aa53be8 100644 --- a/mail-client/evolution/evolution-3.50.2.ebuild +++ b/mail-client/evolution/evolution-3.50.2.ebuild @@ -138,7 +138,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/mail-client/evolution/evolution-3.50.4-r1.ebuild b/mail-client/evolution/evolution-3.50.4-r1.ebuild index 6695759493a3..82f499b4d1c5 100644 --- a/mail-client/evolution/evolution-3.50.4-r1.ebuild +++ b/mail-client/evolution/evolution-3.50.4-r1.ebuild @@ -140,7 +140,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/mail-client/evolution/evolution-3.50.4.ebuild b/mail-client/evolution/evolution-3.50.4.ebuild index 8f920528f44d..3ef4b2f97780 100644 --- a/mail-client/evolution/evolution-3.50.4.ebuild +++ b/mail-client/evolution/evolution-3.50.4.ebuild @@ -138,7 +138,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/mail-client/evolution/evolution-3.52.2.ebuild b/mail-client/evolution/evolution-3.52.2.ebuild index b38c7fda6a5a..5e3c21998ec5 100644 --- a/mail-client/evolution/evolution-3.52.2.ebuild +++ b/mail-client/evolution/evolution-3.52.2.ebuild @@ -136,7 +136,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/mail-client/evolution/evolution-3.52.4.ebuild b/mail-client/evolution/evolution-3.52.4.ebuild index 20a459401c3e..bd2df262d68d 100644 --- a/mail-client/evolution/evolution-3.52.4.ebuild +++ b/mail-client/evolution/evolution-3.52.4.ebuild @@ -136,7 +136,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() {