diff options
author | David Seifert <soap@gentoo.org> | 2021-04-05 16:14:29 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-04-05 16:14:29 +0200 |
commit | 1b0ca49c014402e88ececdad4b79acef07c15725 (patch) | |
tree | dfb7a90da158372072bfc081e22dd50d33649cd6 /sci-biology | |
parent | dev-python/ssl-fetch: Tidyup and EAPI-7 bump (diff) | |
download | gentoo-1b0ca49c014402e88ececdad4b79acef07c15725.tar.gz gentoo-1b0ca49c014402e88ececdad4b79acef07c15725.tar.bz2 gentoo-1b0ca49c014402e88ececdad4b79acef07c15725.zip |
sci-biology/update-blastdb: Port to EAPI 7
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-biology')
-rw-r--r-- | sci-biology/update-blastdb/update-blastdb-12.0.0.ebuild | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/sci-biology/update-blastdb/update-blastdb-12.0.0.ebuild b/sci-biology/update-blastdb/update-blastdb-12.0.0.ebuild index e1524b487a03..293055ff1633 100644 --- a/sci-biology/update-blastdb/update-blastdb-12.0.0.ebuild +++ b/sci-biology/update-blastdb/update-blastdb-12.0.0.ebuild @@ -1,27 +1,22 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -inherit versionator - -MY_PV="$(replace_all_version_separators _)" +MY_PV="$(ver_rs 1- _)" DESCRIPTION="update_blastdb.pl for local blast db maintainance" HOMEPAGE="http://www.ncbi.nlm.nih.gov/books/bv.fcgi?rid=toolkit" SRC_URI="ftp://ftp.ncbi.nih.gov/toolbox/ncbi_tools++/ARCHIVE/${MY_PV}/ncbi_cxx--${MY_PV}.tar.gz" +S="${WORKDIR}" -SLOT="0" LICENSE="public-domain" +SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="" RDEPEND=" dev-lang/perl !sci-biology/ncbi-tools++" -DEPEND="" - -S="${WORKDIR}" src_install() { dobin ncbi_cxx--${MY_PV}/src/app/blast/update_blastdb.pl |