diff options
author | 2022-07-02 17:40:01 +0200 | |
---|---|---|
committer | 2022-07-02 17:40:01 +0200 | |
commit | e78e96662afd2a985c7ddca38f7994f0ebd3d6db (patch) | |
tree | 5e0b829e01ff1638e4b5d989dab3c1638bed12df /sci-biology | |
parent | app-text/pastebinit: enable py3.10 and disable py3.7 (diff) | |
download | gentoo-e78e96662afd2a985c7ddca38f7994f0ebd3d6db.tar.gz gentoo-e78e96662afd2a985c7ddca38f7994f0ebd3d6db.tar.bz2 gentoo-e78e96662afd2a985c7ddca38f7994f0ebd3d6db.zip |
sci-biology/bioperl-db: update EAPI 6 -> 8
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-biology')
-rw-r--r-- | sci-biology/bioperl-db/bioperl-db-1.6.9-r2.ebuild (renamed from sci-biology/bioperl-db/bioperl-db-1.6.9-r1.ebuild) | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/sci-biology/bioperl-db/bioperl-db-1.6.9-r1.ebuild b/sci-biology/bioperl-db/bioperl-db-1.6.9-r2.ebuild index b36c22532f35..6359865b90e0 100644 --- a/sci-biology/bioperl-db/bioperl-db-1.6.9-r1.ebuild +++ b/sci-biology/bioperl-db/bioperl-db-1.6.9-r2.ebuild @@ -1,13 +1,14 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 BIOPERL_RELEASE=1.6.9 DIST_NAME=BioPerl-DB DIST_AUTHOR=CJFIELDS DIST_VERSION=1.006900 +DIST_TEST="do" # Parallelism probably bad inherit perl-module DESCRIPTION="Perl tools for bioinformatics - Perl API that accesses the BioSQL schema" @@ -15,34 +16,32 @@ HOMEPAGE="http://www.bioperl.org/" SLOT="0" KEYWORDS="amd64 x86" -RESTRICT="test" IUSE="test" +RESTRICT="test" -DIST_TEST="do" # Parallelism probably bad -PATCHES=( "${FILESDIR}/${PN}-1.6.9-db.patch" ) RDEPEND=" >=sci-biology/bioperl-${PV} dev-perl/DBD-mysql dev-perl/DBI sci-biology/biosql" -DEPEND="${RDEPEND} - dev-perl/Module-Build +DEPEND=" + ${RDEPEND} test? ( dev-perl/Data-Stag dev-perl/Sub-Uplevel dev-perl/Test-Warn dev-perl/Test-Exception virtual/perl-Test-Simple - ) -" + )" +BDEPEND="dev-perl/Module-Build" + +PATCHES=( "${FILESDIR}"/${PN}-1.6.9-db.patch ) + src_prepare() { export GENTOO_DB_HOSTNAME=localhost perl-module_src_prepare } -src_install() { - mydoc="AUTHORS BUGS FAQ" - perl-module_src_install -} + src_test() { einfo "Removing bundled test libraries t/lib" rm -r "${S}/t/lib" || die "Cannot remove t/lib" @@ -97,3 +96,8 @@ src_test() { pkill -F "${pidfile}" eend $? } + +src_install() { + mydoc="AUTHORS BUGS FAQ" + perl-module_src_install +} |