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 B600A158094 for ; Thu, 7 Jul 2022 19:58:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B3784E095A; Thu, 7 Jul 2022 19:58:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 4FA72E095F for ; Thu, 7 Jul 2022 19:58:18 +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 47C97340E13 for ; Thu, 7 Jul 2022 19:58:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3EFD9548 for ; Thu, 7 Jul 2022 19:58:14 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1657223834.0693e7cba36ecc4f4162e62e4bbd0a5ce4fca50b.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/trf/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-biology/trf/trf-4.04-r1.ebuild sci-biology/trf/trf-4.04-r2.ebuild X-VCS-Directories: sci-biology/trf/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 0693e7cba36ecc4f4162e62e4bbd0a5ce4fca50b X-VCS-Branch: master Date: Thu, 7 Jul 2022 19:58:14 +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: 49760ec4-9780-4e9e-b669-75ad960da1e2 X-Archives-Hash: 6b5df5b075f0e8c328d3d656efa08f0b commit: 0693e7cba36ecc4f4162e62e4bbd0a5ce4fca50b Author: David Seifert gentoo org> AuthorDate: Thu Jul 7 19:57:14 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Thu Jul 7 19:57:14 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0693e7cb sci-biology/trf: update EAPI 6 -> 8 Signed-off-by: David Seifert gentoo.org> .../trf/{trf-4.04-r1.ebuild => trf-4.04-r2.ebuild} | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/sci-biology/trf/trf-4.04-r1.ebuild b/sci-biology/trf/trf-4.04-r2.ebuild similarity index 64% rename from sci-biology/trf/trf-4.04-r1.ebuild rename to sci-biology/trf/trf-4.04-r2.ebuild index 3b906fb31aaf..c534b74988bd 100644 --- a/sci-biology/trf/trf-4.04-r1.ebuild +++ b/sci-biology/trf/trf-4.04-r2.ebuild @@ -1,29 +1,28 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 MY_P="${PN}404" DESCRIPTION="Tandem Repeats Finder" HOMEPAGE="http://tandem.bu.edu/trf/trf.html" SRC_URI="http://tandem.bu.edu/trf/downloads/${MY_P}.linux" +S="${WORKDIR}" LICENSE="trf" # http://tandem.bu.edu/trf/trf.license.html SLOT="0" KEYWORDS="amd64 x86" RESTRICT="mirror bindist" -S=${WORKDIR} - -QA_PREBUILT="opt/${PN}/.*" +QA_PREBUILT="opt/trf/.*" src_unpack() { - cp "${DISTDIR}/${MY_P}.linux" "${S}/${MY_P}.linux.exe" || die + cp "${DISTDIR}"/${MY_P}.linux "${S}"/${MY_P}.linux.exe || die } src_install() { - exeinto /opt/${PN} + exeinto /opt/trf doexe trf404.linux.exe - dosym /opt/${PN}/${MY_P}.linux.exe /opt/bin/trf + dosym ../trf/${MY_P}.linux.exe /opt/bin/trf }