From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1362382-garchives=archives.gentoo.org@lists.gentoo.org> 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 B59BB158088 for <garchives@archives.gentoo.org>; Sat, 29 Jan 2022 03:56:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 065C22BC04E; Sat, 29 Jan 2022 03:56:25 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E49C32BC051 for <gentoo-commits@lists.gentoo.org>; Sat, 29 Jan 2022 03:56:24 +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 09E33342C9D for <gentoo-commits@lists.gentoo.org>; Sat, 29 Jan 2022 03:56:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 56D4B2B3 for <gentoo-commits@lists.gentoo.org>; Sat, 29 Jan 2022 03:56:21 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1643428569.730fc769fc6806fd55a77b95832abc5dfa5fe92b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-accessibility/espeak-ng/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild app-accessibility/espeak-ng/espeak-ng-1.50.ebuild app-accessibility/espeak-ng/espeak-ng-9999.ebuild X-VCS-Directories: app-accessibility/espeak-ng/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 730fc769fc6806fd55a77b95832abc5dfa5fe92b X-VCS-Branch: master Date: Sat, 29 Jan 2022 03:56:21 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: da060847-5fa4-450f-89e8-3e7e780e91c0 X-Archives-Hash: 4cb452eaa780b4bac825194c64ca2629 commit: 730fc769fc6806fd55a77b95832abc5dfa5fe92b Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Jan 29 02:14:30 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Jan 29 03:56:09 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=730fc769 app-accessibility/espeak-ng: run tests serially A bunch of fixes have landed upstream to fix parallel build & tests but they don't apply at all to the last release, so let's force -j1 for now to let us proceed with keywording & stabling. Closes: https://bugs.gentoo.org/812062 Signed-off-by: Sam James <sam <AT> gentoo.org> app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild | 6 ++++-- app-accessibility/espeak-ng/espeak-ng-1.50.ebuild | 8 +++++--- app-accessibility/espeak-ng/espeak-ng-9999.ebuild | 5 ----- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild index ac99a8facef1..814a89258ff2 100644 --- a/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild +++ b/app-accessibility/espeak-ng/espeak-ng-1.50-r1.ebuild @@ -67,14 +67,16 @@ src_configure() { src_compile() { # see docs/building.md + # The -j1s from compile/test/install may be droppable in next release + # (after 1.50). Several bugs have been fixed upstream in git. emake -j1 } src_test() { - emake check + emake check -j1 } src_install() { - emake DESTDIR="${D}" VIMDIR=/usr/share/vimfiles install + emake DESTDIR="${D}" VIMDIR=/usr/share/vimfiles install -j1 rm "${ED}"/usr/lib*/*.la || die } diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild index de70028fc38a..c9289793f7fa 100644 --- a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild +++ b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -67,14 +67,16 @@ src_configure() { src_compile() { # see docs/building.md + # The -j1s from compile/test/install may be droppable in next release + # (after 1.50). Several bugs have been fixed upstream in git. emake -j1 } src_test() { - emake check + emake check -j1 } src_install() { - emake DESTDIR="${D}" VIMDIR=/usr/share/vimfiles install + emake DESTDIR="${D}" VIMDIR=/usr/share/vimfiles install -j1 rm "${ED}"/usr/lib*/*.la || die } diff --git a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild index dfba4f0058bf..e8f33d12072d 100644 --- a/app-accessibility/espeak-ng/espeak-ng-9999.ebuild +++ b/app-accessibility/espeak-ng/espeak-ng-9999.ebuild @@ -67,11 +67,6 @@ src_configure() { econf "${econf_args[@]}" } -src_compile() { - # see docs/building.md - emake -j1 -} - src_test() { emake check }