diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-03-12 11:02:39 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-03-12 16:31:14 +0100 |
commit | 3b4be7207e710475110e52bba2464d1b048ec121 (patch) | |
tree | 4db721ec41559630ce7bc6f26bc80a8acd8c0457 /eclass/emboss-r2.eclass | |
parent | dev-lang/go: Stabilize 1.16.2 ppc64, #775326 (diff) | |
download | gentoo-3b4be7207e710475110e52bba2464d1b048ec121.tar.gz gentoo-3b4be7207e710475110e52bba2464d1b048ec121.tar.bz2 gentoo-3b4be7207e710475110e52bba2464d1b048ec121.zip |
emboss-r2.eclass: Support EAPI-7
Closes: https://bugs.gentoo.org/770262
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass/emboss-r2.eclass')
-rw-r--r-- | eclass/emboss-r2.eclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/emboss-r2.eclass b/eclass/emboss-r2.eclass index 7d13f194eb7a..ef240889c04a 100644 --- a/eclass/emboss-r2.eclass +++ b/eclass/emboss-r2.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: emboss-r2.eclass @@ -9,7 +9,7 @@ # Original author: Author Olivier Fisette <ofisette@gmail.com> # Next gen author: Justin Lecher <jlec@gentoo.org> # Next gen author: Ted Tanberry <ted.tanberry@gmail.com> -# @SUPPORTED_EAPIS: 6 +# @SUPPORTED_EAPIS: 6 7 # @BLURB: Use this to easy install EMBOSS and EMBASSY programs (EMBOSS add-ons). # @DESCRIPTION: # The inheriting ebuild must set at least EAPI=6 and provide EBO_DESCRIPTION before the inherit line. @@ -18,7 +18,7 @@ # # Example: # -# EAPI=6 +# EAPI=7 # # EBO_DESCRIPTION="applications from the CBS group" # @@ -38,7 +38,7 @@ if [[ ! ${_EMBOSS_R2} ]]; then case ${EAPI:-0} in - 6) ;; + [67]) ;; *) die "EAPI=${EAPI} is not supported" ;; esac @@ -47,8 +47,8 @@ inherit autotools flag-o-matic EXPORT_FUNCTIONS src_prepare src_configure src_install HOMEPAGE="http://emboss.sourceforge.net/" -LICENSE="LGPL-2 GPL-2" +LICENSE="LGPL-2 GPL-2" SLOT="0" IUSE="mysql pdf png postgres static-libs X" |