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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A7BBE158087 for ; Tue, 25 Jan 2022 19:15:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82FE42BC00E; Tue, 25 Jan 2022 19:15:49 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 845B22BC00E for ; Tue, 25 Jan 2022 19:15:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 60FCB342D03 for ; Tue, 25 Jan 2022 19:15:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E49252A2 for ; Tue, 25 Jan 2022 19:15:45 +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: <1643127538.55eaf4a3f112c53b328f1d861aa2aec4f211e802.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/ssaha2-bin/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/ssaha2-bin/ssaha2-bin-2.5.5-r1.ebuild sci-biology/ssaha2-bin/ssaha2-bin-2.5.5.ebuild X-VCS-Directories: sci-biology/ssaha2-bin/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 55eaf4a3f112c53b328f1d861aa2aec4f211e802 X-VCS-Branch: master Date: Tue, 25 Jan 2022 19:15:45 +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: f240ae07-aecd-4f81-9f64-58cc42601cee X-Archives-Hash: 0e8dd28cd4f5454ac0621e8381f8a329 commit: 55eaf4a3f112c53b328f1d861aa2aec4f211e802 Author: Andrew Ammerlaan gentoo org> AuthorDate: Tue Jan 25 16:18:58 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Tue Jan 25 16:18:58 2022 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=55eaf4a3 sci-biology/ssaha2-bin: fix WORKDIR PMS violation Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan gentoo.org> ...{ssaha2-bin-2.5.5.ebuild => ssaha2-bin-2.5.5-r1.ebuild} | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/sci-biology/ssaha2-bin/ssaha2-bin-2.5.5.ebuild b/sci-biology/ssaha2-bin/ssaha2-bin-2.5.5-r1.ebuild similarity index 86% rename from sci-biology/ssaha2-bin/ssaha2-bin-2.5.5.ebuild rename to sci-biology/ssaha2-bin/ssaha2-bin-2.5.5-r1.ebuild index 3122e2188..2c0d5f63d 100644 --- a/sci-biology/ssaha2-bin/ssaha2-bin-2.5.5.ebuild +++ b/sci-biology/ssaha2-bin/ssaha2-bin-2.5.5-r1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit toolchain-funcs @@ -20,9 +20,10 @@ LICENSE="all-rights-reserved" SLOT="0" KEYWORDS="~amd64 ~x86" -QA_PREBUILT="/opt/.*" +QA_PREBUILT="*" -pkg_setup() { +src_unpack() { + default use x86 && export S="${WORKDIR}"/${MY_P}_i686 use amd64 && export S="${WORKDIR}"/${MY_P}_x86_64 } @@ -31,8 +32,7 @@ src_compile() { } src_install() { - dobin samflag - exeinto /opt/bin - doexe ssaha2 ssaha2Build ssahaSNP + dobin samflag ssaha2 ssaha2Build ssahaSNP dodoc README "${DISTDIR}"/ssaha2-manual.pdf + einstalldocs }