Gentoo Archives: gentoo-dev

From: Anna Vyalkova <cyber+gentoo@×××××.in>
To: gentoo-dev@l.g.o
Subject: Re: [gentoo-dev] [PATCH v4 2/9] vim-plugin.eclass: support EAPI 8
Date: Thu, 07 Apr 2022 12:48:55
Message-Id: Yk7dqLWv64xW+IoT@sysrq.in
In Reply to: Re: [gentoo-dev] [PATCH v4 2/9] vim-plugin.eclass: support EAPI 8 by Ulrich Mueller
1 On 2022-04-07 14:39, Ulrich Mueller wrote:
2 > >>>>> On Thu, 07 Apr 2022, Anna Vyalkova wrote:
3 >
4 > > case ${EAPI} in
5 > > - 6|7);;
6 > > - *) die "EAPI ${EAPI:-0} unsupported (too old)";;
7 > > + 6|7|8);;
8 > > + *) die "${ECLASS}: EAPI ${EAPI:-0} unsupported (too old)";;
9 >
10 > The "(too old)" part will look strange with EAPI 9. Just say that it's
11 > not supported.
12
13 Fixed in PR.