Re: [gentoo-dev] [PATCH] texlive-common.eclass: add EAPI 8

2023-04-08 Thread Thomas Bracht Laumann Jespersen
>> -[ -f "${mark}" ] >> +[[ -f "${mark}" ]] > > The quotes are no longer needed in [[ ]]. ack. Will include in a v2. I'll also add a patch to add EAPI 8 to texlive-module.eclass. -- Thomas

Re: [gentoo-dev] [PATCH] texlive-common.eclass: add EAPI 8

2023-04-08 Thread Ulrich Mueller
> On Sat, 08 Apr 2023, Thomas Bracht Laumann Jespersen wrote: > - [ -f "${mark}" ] > + [[ -f "${mark}" ]] The quotes are no longer needed in [[ ]].

[gentoo-dev] [PATCH] texlive-common.eclass: add EAPI 8

2023-04-08 Thread Thomas Bracht Laumann Jespersen
Signed-off-by: Thomas Bracht Laumann Jespersen --- As an initial step in the work to add texlive 2023, let's start with adding EAPI 8 support to texlive-common.eclass. Needs a consideration for dosym -r in one place, and also changes a test block with single brackets to double brackets.