diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-12-17 14:57:38 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-12-17 14:57:38 +0000 |
commit | 5959c8510d12e770f9320c71e55b4419e49154ee (patch) | |
tree | 560c7460ed5e13f38e3e946871031d4caaebdd13 /eclass | |
parent | 7278fa233720d99bfac63a408deeed0143a61dcc (diff) |
gentoo auto-resync : 17:12:2023 - 14:57:38
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/Manifest.gz | bin | 38951 -> 38954 bytes | |||
-rw-r--r-- | eclass/distutils-r1.eclass | 6 |
2 files changed, 3 insertions, 3 deletions
diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz Binary files differindex 3cbcefdcc514..c1be04a6b4e0 100644 --- a/eclass/Manifest.gz +++ b/eclass/Manifest.gz diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 0a9815f2d459..5a99ba88eddb 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -1243,7 +1243,7 @@ _distutils-r1_get_backend() { if [[ -f pyproject.toml ]]; then # if pyproject.toml exists, try getting the backend from it # NB: this could fail if pyproject.toml doesn't list one - build_backend=$(gpep517 get-backend) + build_backend=$("${EPYTHON}" -m gpep517 get-backend) fi if [[ -z ${build_backend} && ${DISTUTILS_USE_PEP517} == setuptools && -f setup.py ]] @@ -1317,7 +1317,7 @@ distutils_wheel_install() { einfo " Installing ${wheel##*/} to ${root}" local cmd=( - gpep517 install-wheel + "${EPYTHON}" -m gpep517 install-wheel --destdir="${root}" --interpreter="${PYTHON}" --prefix="${EPREFIX}/usr" @@ -1446,7 +1446,7 @@ distutils_pep517_install() { local build_backend=$(_distutils-r1_get_backend) einfo " Building the wheel for ${PWD#${WORKDIR}/} via ${build_backend}" local cmd=( - gpep517 build-wheel + "${EPYTHON}" -m gpep517 build-wheel --prefix="${EPREFIX}/usr" --backend "${build_backend}" --output-fd 3 |