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, 13 Jan 2022 21:37:27
Message-Id: 1642108152.6daac4235622b88a878fa86e7217491e9172279d.gyakovlev@gentoo
1 commit: 6daac4235622b88a878fa86e7217491e9172279d
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 13 20:45:27 2022 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 13 21:09:12 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6daac423
7
8 rust-toolchain.eclass: support EAPI=8
9
10 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
11
12 eclass/rust-toolchain.eclass | 5 +++--
13 1 file changed, 3 insertions(+), 2 deletions(-)
14
15 diff --git a/eclass/rust-toolchain.eclass b/eclass/rust-toolchain.eclass
16 index 64caf3a55559..8c783eaf0610 100644
17 --- a/eclass/rust-toolchain.eclass
18 +++ b/eclass/rust-toolchain.eclass
19 @@ -1,10 +1,10 @@
20 -# Copyright 1999-2021 Gentoo Authors
21 +# Copyright 1999-2022 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 # @ECLASS: rust-toolchain.eclass
25 # @MAINTAINER:
26 # Rust Project <rust@g.o>
27 -# @SUPPORTED_EAPIS: 6 7
28 +# @SUPPORTED_EAPIS: 6 7 8
29 # @BLURB: helps map gentoo arches to rust ABIs
30 # @DESCRIPTION:
31 # This eclass contains a src_unpack default phase function, and
32 @@ -14,6 +14,7 @@
33 case ${EAPI} in
34 6) : ;;
35 7) : ;;
36 + 8) : ;;
37 *) die "EAPI=${EAPI:-0} is not supported" ;;
38 esac