https://bugzilla.redhat.com/show_bug.cgi?id=1416705 --- Comment #25 from Robert-André Mauchin <zebob.m@xxxxxxxxx> --- - You didn't fix it as I recommended, you need to remove the shebang, not add executable bitsor change the shebang: # E: wrong-script-interpreter sed -i -e 's|#!/usr/bin/env python|#!/usr/bin/python3|g' kivy/tools/kviewer.py sed -i -e 's|#!/usr/bin/env python|#!/usr/bin/python3|g' kivy/tools/pep8checker/pep8.py sed -i -e 's|#!/usr/bin/env python|#!/usr/bin/python3|g' kivy/tools/pep8checker/pre-commit.githook # E: non-executable-script chmod a+x kivy/tools/kviewer.py chmod a+x kivy/tools/pep8checker/pep8.py chmod a+x kivy/tools/pep8checker/pre-commit.githook for lib in $(find -type f -name '*.py'); do sed '1{\@^#!@d}' $lib > $lib.new && touch -r $lib $lib.new && mv $lib.new $lib done We don't care about pre-commit.githook - I can't build the package: DEBUG util.py:585: BUILDSTDERR: No matching package to install: 'google-roboto-mono-fonts' DEBUG util.py:585: BUILDSTDERR: Not all dependencies satisfied DEBUG util.py:585: BUILDSTDERR: Error: Some packages could not be found. This package does not exist. -- You are receiving this mail because: You are on the CC list for the bug. You are always notified about changes to this product and component _______________________________________________ package-review mailing list -- package-review@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to package-review-leave@xxxxxxxxxxxxxxxxxxxxxxx Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/package-review@xxxxxxxxxxxxxxxxxxxxxxx