diff options
author | Ulrich Müller <ulm@gentoo.org> | 2020-09-08 13:03:07 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2020-09-08 13:04:00 +0200 |
commit | 60ece27b54550bedcc19e4a8a799c1df5d5f774b (patch) | |
tree | 89b5d9582e7cc59cb7c81963dc211eb0abc35ebc /eclass | |
parent | app-portage/portpeek: Clean up old versions (diff) | |
download | gentoo-60ece27b54550bedcc19e4a8a799c1df5d5f774b.tar.gz gentoo-60ece27b54550bedcc19e4a8a799c1df5d5f774b.tar.bz2 gentoo-60ece27b54550bedcc19e4a8a799c1df5d5f774b.zip |
oasis.eclass: Fix @SUPPORTED_EAPIS.
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/oasis.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/oasis.eclass b/eclass/oasis.eclass index 3071243265b2..bcc46b4af326 100644 --- a/eclass/oasis.eclass +++ b/eclass/oasis.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: oasis.eclass @@ -6,7 +6,7 @@ # maintainer-needed@gentoo.org # @AUTHOR: # Original Author: Alexis Ballier <aballier@gentoo.org> -# @SUPPORTED_EAPIS: 3 4 5 6 7 +# @SUPPORTED_EAPIS: 3 4 5 # @BLURB: Provides common ebuild phases for oasis-based packages. # @DESCRIPTION: # Provides common ebuild phases for oasis-based packages. @@ -51,6 +51,7 @@ inherit multilib findlib eutils base +# Implicitly limited to EAPI 5 or earlier because of base.eclass case ${EAPI:-0} in 0|1|2) die "You need at least EAPI-3 to use oasis.eclass";; 3|4) RDEPEND=">=dev-lang/ocaml-3.12[ocamlopt?]";; |