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 948C41382C5 for ; Tue, 26 Jan 2021 15:07:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DCAC5E0CCC; Tue, 26 Jan 2021 15:07:25 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 C6CA7E0CCC for ; Tue, 26 Jan 2021 15:07:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 4E2B4340FFA for ; Tue, 26 Jan 2021 15:07:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C4FD04C for ; Tue, 26 Jan 2021 15:07:22 +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: <1611673639.3126e63ca57aaab646080cae98e534b0c90a27bc.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/proda/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/proda/proda-1.0.ebuild X-VCS-Directories: sci-biology/proda/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 3126e63ca57aaab646080cae98e534b0c90a27bc X-VCS-Branch: master Date: Tue, 26 Jan 2021 15:07:22 +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: 55b3edb5-f9c0-4350-83bb-307f3e39cd12 X-Archives-Hash: 53355f9a3f1fe7b618d49745df019c62 commit: 3126e63ca57aaab646080cae98e534b0c90a27bc Author: Andrew Ammerlaan riseup net> AuthorDate: Tue Jan 26 15:07:19 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Tue Jan 26 15:07:19 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=3126e63c sci-biology/proda: EAPI bump Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Andrew Ammerlaan riseup.net> sci-biology/proda/proda-1.0.ebuild | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/sci-biology/proda/proda-1.0.ebuild b/sci-biology/proda/proda-1.0.ebuild index 67def6a7e..0723b9512 100644 --- a/sci-biology/proda/proda-1.0.ebuild +++ b/sci-biology/proda/proda-1.0.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -inherit eutils flag-o-matic toolchain-funcs versionator +inherit flag-o-matic toolchain-funcs -MY_PV=$(replace_all_version_separators '_') +MY_PV=${PV//./_} DESCRIPTION="Multiple alignment of protein sequences with repeated and shuffled elements" HOMEPAGE="http://proda.stanford.edu/" @@ -13,7 +13,8 @@ SRC_URI="http://proda.stanford.edu/proda_${MY_PV}.tar.gz" LICENSE="public-domain" SLOT="0" -IUSE="debug " +IUSE="debug" + KEYWORDS="~amd64 ~x86" S="${WORKDIR}"/${PN} @@ -24,7 +25,7 @@ PATCHES=( ) src_prepare() { - epatch ${PATCHES[@]} + default use debug || append-flags -DNDEBUG tc-export CXX }