commit:     5aac1340ca4fbc0c59d111b860688e63f6a9a1cf
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 12 12:31:53 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 12 12:32:26 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5aac1340

sci-geosciences/gpsd: sync live

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-geosciences/gpsd/gpsd-9999.ebuild | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/sci-geosciences/gpsd/gpsd-9999.ebuild 
b/sci-geosciences/gpsd/gpsd-9999.ebuild
index 75899a3a66c3..9a4ff1315e67 100644
--- a/sci-geosciences/gpsd/gpsd-9999.ebuild
+++ b/sci-geosciences/gpsd/gpsd-9999.ebuild
@@ -213,10 +213,11 @@ python_test() {
        :;
 }
 
-python_install(){
-       mkdir "${T}/scripts" || die
-       grep -Rl "${D}/usr/bin" -e "/usr/bin/env python" | xargs mv -t 
"${T}/scripts"
-       python_doscript "${T}"/scripts/*
+python_install() {
+       while read -d '' -r file ; do
+               grep -q "#!/usr/bin/env python" "${file}" && python_doscript 
"${file}"
+       done < <(find "${T}"/scripts -type f -print0)
+
        distutils-r1_python_install
 }
 
@@ -232,6 +233,9 @@ src_install() {
 
        # Install correct multi-python copy
        pushd "${PN}"-* || die
+       mkdir -p "${T}/scripts" || die
+       grep -Rl "${D}/usr/bin" -e "/usr/bin/env python" | xargs cp -t 
"${T}/scripts"
+       assert "Moving Python scripts failed"
        distutils-r1_src_install
        popd || die
 }

Reply via email to