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 4B5EF1382C5 for ; Fri, 26 Mar 2021 19:09:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81206E0829; Fri, 26 Mar 2021 19:09:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 64C19E0829 for ; Fri, 26 Mar 2021 19:09:06 +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 5691D340E3A for ; Fri, 26 Mar 2021 19:09:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B2D744EE for ; Fri, 26 Mar 2021 19:09:03 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1616785693.f309e4fb5f81233f293291ed924e231d76f36db5.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/tclap/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/tclap/tclap-1.2.2.ebuild X-VCS-Directories: dev-cpp/tclap/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: f309e4fb5f81233f293291ed924e231d76f36db5 X-VCS-Branch: master Date: Fri, 26 Mar 2021 19:09:03 +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: b7808327-1e4c-4a6b-b250-b37cad1c2b46 X-Archives-Hash: c1cd504b9daa50b3b593728c116a09cc commit: f309e4fb5f81233f293291ed924e231d76f36db5 Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Thu Dec 31 00:00:00 2020 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Fri Mar 26 19:08:13 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f309e4fb dev-cpp/tclap: Disable parallelization for test suite. Closes: https://bugs.gentoo.org/718658 Signed-off-by: Arfrever Frehtes Taifersar Arahesis Apache.Org> Signed-off-by: Mike Gilbert gentoo.org> dev-cpp/tclap/tclap-1.2.2.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-cpp/tclap/tclap-1.2.2.ebuild b/dev-cpp/tclap/tclap-1.2.2.ebuild index 1b75faff6e9..82435d7207e 100644 --- a/dev-cpp/tclap/tclap-1.2.2.ebuild +++ b/dev-cpp/tclap/tclap-1.2.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 2007-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -18,6 +18,10 @@ src_configure() { econf $(use_enable doc doxygen) } +src_test() { + emake -j1 check +} + src_install() { emake DESTDIR="${D}" docdir="${EPREFIX}/usr/share/doc/${PF}/html" install }