commit:     3b4be7207e710475110e52bba2464d1b048ec121
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 12 10:02:39 2021 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Mar 12 15:31:14 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b4be720

emboss-r2.eclass: Support EAPI-7

Closes: https://bugs.gentoo.org/770262
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 eclass/emboss-r2.eclass | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/eclass/emboss-r2.eclass b/eclass/emboss-r2.eclass
index 7d13f194eb7..ef240889c04 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 <ofise...@gmail.com>
 # Next gen author: Justin Lecher <j...@gentoo.org>
 # Next gen author: Ted Tanberry <ted.tanbe...@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"
 

Reply via email to