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 87A6F158088 for ; Tue, 25 Jan 2022 10:20:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 280A02BC016; Tue, 25 Jan 2022 10:20:05 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 337382BC002 for ; Tue, 25 Jan 2022 10:20:04 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9840C342C17 for ; Tue, 25 Jan 2022 10:20:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 340C12A0 for ; Tue, 25 Jan 2022 10:20:00 +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: <1643104506.19eb71e9e2cc023a547e9ca34c246d0266dcbcf2.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/GAL/, sci-biology/GAL/files/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/GAL/GAL-0.2.2_p20200508.ebuild sci-biology/GAL/files/Build.PL.patch X-VCS-Directories: sci-biology/GAL/files/ sci-biology/GAL/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 19eb71e9e2cc023a547e9ca34c246d0266dcbcf2 X-VCS-Branch: master Date: Tue, 25 Jan 2022 10:20:00 +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: 14e61741-22cf-4381-8bbb-71a9d30f9f76 X-Archives-Hash: 2b6e0ce3c0b0cc3b40f3b42f01b62604 commit: 19eb71e9e2cc023a547e9ca34c246d0266dcbcf2 Author: Andrew Ammerlaan gentoo org> AuthorDate: Tue Jan 25 09:55:06 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Tue Jan 25 09:55:06 2022 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=19eb71e9 sci-biology/GAL: fix install Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan gentoo.org> sci-biology/GAL/GAL-0.2.2_p20200508.ebuild | 19 ++++++++++++------- sci-biology/GAL/files/Build.PL.patch | 24 +++++++++--------------- 2 files changed, 21 insertions(+), 22 deletions(-) diff --git a/sci-biology/GAL/GAL-0.2.2_p20200508.ebuild b/sci-biology/GAL/GAL-0.2.2_p20200508.ebuild index 1aa7e99be..f02907368 100644 --- a/sci-biology/GAL/GAL-0.2.2_p20200508.ebuild +++ b/sci-biology/GAL/GAL-0.2.2_p20200508.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 perl-module @@ -10,16 +10,15 @@ COMMIT="94af39622aab5ba48eb693f2327f6e90f1d202ed" DESCRIPTION="Genome Annotation Library (incl. fasta_tool)" HOMEPAGE="https://github.com/The-Sequence-Ontology/GAL" SRC_URI="https://github.com/The-Sequence-Ontology/GAL/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-${COMMIT}" LICENSE="( GPL-1+ Artistic )" SLOT="0" -KEYWORDS="" +KEYWORDS="~amd64" RESTRICT="test" DEPEND=" - >=dev-lang/perl-5.6.1 - dev-perl/Module-Build dev-perl/Config-Std virtual/perl-Data-Dumper dev-perl/Data-Types @@ -29,6 +28,7 @@ DEPEND=" dev-perl/Number-Format virtual/perl-Scalar-List-Utils dev-perl/Set-IntSpan-Fast + dev-perl/Statistics-Descriptive dev-perl/Statistics-Descriptive-Discrete dev-perl/Template-Toolkit dev-perl/Text-Graph @@ -36,7 +36,12 @@ DEPEND=" dev-perl/Text-Table dev-perl/Exception-Class dev-perl/Test-Warn - dev-perl/URI" + dev-perl/URI + sci-biology/fasta +" RDEPEND="${DEPEND}" +BDEPEND="dev-perl/Module-Build" -S="${WORKDIR}/${PN}-${COMMIT}" +PATCHES=( + "${FILESDIR}/Build.PL.patch" +) diff --git a/sci-biology/GAL/files/Build.PL.patch b/sci-biology/GAL/files/Build.PL.patch index 6d881f249..eee4fb60d 100644 --- a/sci-biology/GAL/files/Build.PL.patch +++ b/sci-biology/GAL/files/Build.PL.patch @@ -1,16 +1,11 @@ -diff -ruN GAL_0.2.2.orig/Build.PL GAL_0.2.2/Build.PL ---- GAL_0.2.2.orig/Build.PL 2014-01-30 01:35:11.000000000 +0100 -+++ GAL_0.2.2/Build.PL 2016-01-02 12:09:16.212623256 +0100 -@@ -6,26 +6,6 @@ - my $class = Module::Build->subclass - ( - class => 'Module::Build::Custom', -- code => q{ -- sub ACTION_build { -- my $self = shift; -- $self->SUPER::ACTION_build; -- $self->dispatch('installdeps'); -- } +diff --git a/Build.PL b/Build.PL +index 5915ca8..61eceb3 100644 +--- a/Build.PL ++++ b/Build.PL +@@ -12,19 +12,6 @@ my $class = Module::Build->subclass + $self->SUPER::ACTION_build; + $self->dispatch('installdeps'); + } - sub ACTION_install { - my $self = shift; - print "\n\nGAL does not do a system wide install\n\n"; @@ -24,7 +19,6 @@ diff -ruN GAL_0.2.2.orig/Build.PL GAL_0.2.2/Build.PL - print "remove the entire subroutine (ACTION_install) where this message\n"; - print "is printed run Build realclean and re-install.\n\n"; - } -- }, + }, ); - my $builder = $class->new(