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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 524E3138334 for ; Sat, 13 Apr 2019 13:57:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 741CBE0998; Sat, 13 Apr 2019 13:57:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 499FEE0998 for ; Sat, 13 Apr 2019 13:57:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B9F8A340F3A for ; Sat, 13 Apr 2019 13:57:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 622C257E for ; Sat, 13 Apr 2019 13:57:36 +0000 (UTC) From: "Tiziano Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tiziano Müller" Message-ID: <1555163840.364ab66d47a0098019eb131714254a8b38a3afc4.dev-zero@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/source-highlight/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/source-highlight/source-highlight-3.1.8.ebuild X-VCS-Directories: dev-util/source-highlight/ X-VCS-Committer: dev-zero X-VCS-Committer-Name: Tiziano Müller X-VCS-Revision: 364ab66d47a0098019eb131714254a8b38a3afc4 X-VCS-Branch: master Date: Sat, 13 Apr 2019 13:57:36 +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: 2b989187-ce5b-4648-927d-959c173e97f5 X-Archives-Hash: 5b70aad9080d260ff63d2c4fbda6d86d commit: 364ab66d47a0098019eb131714254a8b38a3afc4 Author: Tiziano Müller gentoo org> AuthorDate: Sat Apr 13 13:56:35 2019 +0000 Commit: Tiziano Müller gentoo org> CommitDate: Sat Apr 13 13:57:20 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=364ab66d dev-util/source-highlight: serialize tests Upstream uses the same intermediate files in multiple tests, running them in parallel by make will eventually break one or more tests. Closes: https://bugs.gentoo.org/635100 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Tiziano Müller gentoo.org> dev-util/source-highlight/source-highlight-3.1.8.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-util/source-highlight/source-highlight-3.1.8.ebuild b/dev-util/source-highlight/source-highlight-3.1.8.ebuild index 4cc9a772630..4f6024727e8 100644 --- a/dev-util/source-highlight/source-highlight-3.1.8.ebuild +++ b/dev-util/source-highlight/source-highlight-3.1.8.ebuild @@ -44,5 +44,7 @@ src_install () { src_test() { export LD_LIBRARY_PATH="${S}/lib/srchilite/.libs/" - default + # upstream uses the same temporary filenames in numerous places + # see https://bugs.gentoo.org/635100 + emake -j1 check }