dev-ada/gnatcoll-core: use get_makeopts_*

multiprocessing backward deprecated makeopts_* in <EAPI-9, breaking CI

Done via:
```
grep -RP '(?<!get_)makeopts_jobs'
sed -e 's/(\(makeopts_jobs\))/\(get_\1)/g' -i */*/*.ebuild eclass/*.eclass
sed -e 's/(\(makeopts_jobs\)/\(get_\1/g' -i */*/*.ebuild eclass/*.eclass

grep -RP '(?<!get_)makeopts_loadavg'
sed -e 's/(\(makeopts_loadavg\))/\(get_\1)/g' -i */*/*.ebuild eclass/*.eclass
sed -e 's/(\(makeopts_loadavg\)/\(get_\1/g' -i */*/*.ebuild eclass/*.eclass
```

Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com>
Part-of: https://codeberg.org/gentoo/gentoo/pulls/426
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
This commit is contained in:
Paul Zander
2026-03-26 20:58:27 +01:00
committed by Alfredo Tupone
parent 45eec56edc
commit 336bf490f4
2 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2025 Gentoo Authors
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -81,7 +81,7 @@ src_prepare() {
src_compile() {
export GPR_PROJECT_PATH=minimal:core
build() {
gprbuild -v -p -m -P$2/gnatcoll_$2.gpr -j$(makeopts_jobs) \
gprbuild -v -p -m -P$2/gnatcoll_$2.gpr -j$(get_makeopts_jobs) \
-XGNATCOLL_VERSION=$(ver_cut 1-2) -XLIBRARY_TYPE=$1 \
-cargs:C ${CFLAGS} -cargs:Ada ${ADAFLAGS} || die
}

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2025 Gentoo Authors
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -76,7 +76,7 @@ src_prepare() {
src_compile() {
export GPR_PROJECT_PATH=minimal:core
build() {
gprbuild -v -p -m -P$2/gnatcoll_$2.gpr -j$(makeopts_jobs) \
gprbuild -v -p -m -P$2/gnatcoll_$2.gpr -j$(get_makeopts_jobs) \
-XGNATCOLL_VERSION=$(ver_cut 1-2) -XLIBRARY_TYPE=$1 \
-cargs:C ${CFLAGS} -cargs:Ada ${ADAFLAGS} || die
}