Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Thu, 27 Jan 2022 23:57:34
Message-Id: 1643327355.87cf5f0a445b2f091fd867c517a589baaf41dd6b.gyakovlev@gentoo
1 commit: 87cf5f0a445b2f091fd867c517a589baaf41dd6b
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 27 23:33:08 2022 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 27 23:49:15 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87cf5f0a
7
8 java-vm-2.eclass: support EAPI=7
9
10 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
11
12 eclass/java-vm-2.eclass | 6 +++---
13 1 file changed, 3 insertions(+), 3 deletions(-)
14
15 diff --git a/eclass/java-vm-2.eclass b/eclass/java-vm-2.eclass
16 index d24339200ce0..0d1eb2dc938f 100644
17 --- a/eclass/java-vm-2.eclass
18 +++ b/eclass/java-vm-2.eclass
19 @@ -1,17 +1,17 @@
20 -# Copyright 1999-2019 Gentoo Authors
21 +# Copyright 1999-2022 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 # @ECLASS: java-vm-2.eclass
25 # @MAINTAINER:
26 # java@g.o
27 -# @SUPPORTED_EAPIS: 6 8
28 +# @SUPPORTED_EAPIS: 6 7 8
29 # @BLURB: Java Virtual Machine eclass
30 # @DESCRIPTION:
31 # This eclass provides functionality which assists with installing
32 # virtual machines, and ensures that they are recognized by java-config.
33
34 case ${EAPI:-0} in
35 - [68]) ;;
36 + [678]) ;;
37 *) die "EAPI=${EAPI} is not supported" ;;
38 esac