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 E88CE139694 for ; Sat, 22 Apr 2017 16:09:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 425E021C073; Sat, 22 Apr 2017 16:09:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 205FD21C073 for ; Sat, 22 Apr 2017 16:09:58 +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 37C61341301 for ; Sat, 22 Apr 2017 16:09:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CED83743C for ; Sat, 22 Apr 2017 16:09:55 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1492877392.4607de10af1d1389884d38ffdaad0c24baa8a0db.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/velvet/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-biology/velvet/velvet-1.2.10.ebuild X-VCS-Directories: sci-biology/velvet/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 4607de10af1d1389884d38ffdaad0c24baa8a0db X-VCS-Branch: master Date: Sat, 22 Apr 2017 16:09:55 +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-Archives-Salt: 905bc56e-c443-4f76-8ea3-edb4fe017a74 X-Archives-Hash: 4aa187d434bc5714446da5a905441595 commit: 4607de10af1d1389884d38ffdaad0c24baa8a0db Author: Martin Mokrejš fold natur cuni cz> AuthorDate: Sat Apr 15 11:22:35 2017 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Apr 22 16:09:52 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4607de10 sci-biology/velvet: v4 expose additional variables as described in manual Also move the -j1 argument values onto the emake line directly. Package-Manager: Portage-2.3.5, Repoman-2.3.2 Closes: https://github.com/gentoo/gentoo/pull/4421 Signed-off-by: Justin Lecher gentoo.org> sci-biology/velvet/velvet-1.2.10.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/sci-biology/velvet/velvet-1.2.10.ebuild b/sci-biology/velvet/velvet-1.2.10.ebuild index 645f9fe67d0..d5a93f2f3e4 100644 --- a/sci-biology/velvet/velvet-1.2.10.ebuild +++ b/sci-biology/velvet/velvet-1.2.10.ebuild @@ -34,7 +34,6 @@ src_prepare() { elog "Set them either in your environment or in /etc/portage/make.conf, then re-emerge" elog "the package. For example:" elog " VELVET_MAXKMERLENGTH=NN emerge [options] velvet" - MAKEOPTS+=" -j1" if [[ $(tc-getCC) =~ gcc ]]; then local eopenmp=-fopenmp @@ -61,12 +60,12 @@ src_prepare() { } src_compile() { - emake "${MAKE_XOPTS[@]}" - emake "${MAKE_XOPTS[@]}" color + emake "${MAKE_XOPTS[@]}" -j1 + emake "${MAKE_XOPTS[@]}" -j1 color } src_test() { - emake "${MAKE_XOPTS[@]}" test + emake "${MAKE_XOPTS[@]}" -j1 test } src_install() {