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 A4F971382C5 for ; Tue, 26 Jan 2021 21:10:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ACC0DE0AAF; Tue, 26 Jan 2021 21:10:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 8D79FE0AAF for ; Tue, 26 Jan 2021 21:10:24 +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 40FBF340917 for ; Tue, 26 Jan 2021 21:10:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9EFEE54 for ; Tue, 26 Jan 2021 21:10:21 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1611695414.8a24647b19039e4a4e392688f98cbfcea24d302d.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/salmon/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/salmon/salmon-0.10.2.ebuild X-VCS-Directories: sci-biology/salmon/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 8a24647b19039e4a4e392688f98cbfcea24d302d X-VCS-Branch: master Date: Tue, 26 Jan 2021 21:10:21 +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: 87c0e90c-041c-47dd-9fca-4187d885b157 X-Archives-Hash: 25be6b912697ade79ff2d6c4311bb52e commit: 8a24647b19039e4a4e392688f98cbfcea24d302d Author: Andrew Ammerlaan riseup net> AuthorDate: Tue Jan 26 21:10:14 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Tue Jan 26 21:10:14 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=8a24647b sci-biology/salmon: cmake-utils --> cmake EAPI bump Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andrew Ammerlaan riseup.net> sci-biology/salmon/salmon-0.10.2.ebuild | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/sci-biology/salmon/salmon-0.10.2.ebuild b/sci-biology/salmon/salmon-0.10.2.ebuild index a4d6a40e1..914ab0e69 100644 --- a/sci-biology/salmon/salmon-0.10.2.ebuild +++ b/sci-biology/salmon/salmon-0.10.2.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit cmake-utils +inherit cmake DESCRIPTION="Transcript-level quantification from RNA-seq reads using lightweight alignments" HOMEPAGE="https://github.com/COMBINE-lab/salmon" @@ -44,12 +44,16 @@ RDEPEND="${DEPEND}" # see the many curl executions: # salmon-0.10.2$ find . -type f | xargs grep curl 2>/dev/null # -DEPEND="net-misc/curl - app-arch/unzip - sys-libs/zlib - app-arch/bzip2 - app-arch/xz-utils - dev-libs/boost:0[threads] - >=dev-libs/jemalloc-5.0.1 - >=dev-cpp/tbb-2018.20180312" +DEPEND=" + sys-libs/zlib + app-arch/bzip2 + app-arch/xz-utils + dev-libs/boost:0[threads] + >=dev-libs/jemalloc-5.0.1 + >=dev-cpp/tbb-2018.20180312 +" RDEPEND="${DEPEND}" +BDEPEND=" + net-misc/curl + app-arch/unzip +"