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 38923158094 for ; Thu, 7 Jul 2022 19:58:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3EE5BE0955; Thu, 7 Jul 2022 19:58:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 1FACDE0951 for ; Thu, 7 Jul 2022 19:58:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 EE6E3340E3E for ; Thu, 7 Jul 2022 19:58:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9E1A753E for ; Thu, 7 Jul 2022 19:58:13 +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: <1657223826.485da2906a2d1d2756f99724d54f5db647538266.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/pilercr/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-biology/pilercr/pilercr-1.0-r1.ebuild sci-biology/pilercr/pilercr-1.0-r2.ebuild X-VCS-Directories: sci-biology/pilercr/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 485da2906a2d1d2756f99724d54f5db647538266 X-VCS-Branch: master Date: Thu, 7 Jul 2022 19:58:13 +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: e055c555-33cf-4e67-8d33-c539134bf166 X-Archives-Hash: 10f38ab1f384aaf19e358f23e5e8dba2 commit: 485da2906a2d1d2756f99724d54f5db647538266 Author: David Seifert gentoo org> AuthorDate: Thu Jul 7 19:57:06 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Thu Jul 7 19:57:06 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=485da290 sci-biology/pilercr: update EAPI 6 -> 8 Signed-off-by: David Seifert gentoo.org> .../pilercr/{pilercr-1.0-r1.ebuild => pilercr-1.0-r2.ebuild} | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/sci-biology/pilercr/pilercr-1.0-r1.ebuild b/sci-biology/pilercr/pilercr-1.0-r2.ebuild similarity index 86% rename from sci-biology/pilercr/pilercr-1.0-r1.ebuild rename to sci-biology/pilercr/pilercr-1.0-r2.ebuild index 8b1abd5de7d7..819fb3fbb03e 100644 --- a/sci-biology/pilercr/pilercr-1.0-r1.ebuild +++ b/sci-biology/pilercr/pilercr-1.0-r2.ebuild @@ -1,20 +1,18 @@ -# 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 inherit toolchain-funcs DESCRIPTION="Analysis of Clustered Regularly Interspaced Short Palindromic Repeats (CRISPRs)" HOMEPAGE="http://www.drive5.com/pilercr/" SRC_URI="http://www.drive5.com/pilercr/pilercr1.06.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}" LICENSE="public-domain" SLOT="0" KEYWORDS="amd64 x86" -IUSE="" - -S=${WORKDIR} PATCHES=( "${FILESDIR}"/${PN}-1.0-fix-build-system.patch @@ -26,5 +24,5 @@ src_configure() { } src_install() { - dobin ${PN} + dobin pilercr }