This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 4c4451b923 gnu: diffoscope: Add phase fixing execute bit on script.
4c4451b923 is described below
commit 4c4451b9232ff22eef8bb2f8b512fd8a5e6b766c
Author: Vagrant Cascadian <[email protected]>
AuthorDate: Thu Jul 17 14:09:47 2025 -0700
gnu: diffoscope: Add phase fixing execute bit on script.
Fixes a regression introduced with the switch to pyproject-build-system in
a5b88a7a4de048defde08a44a7e14d693d0062fe.
* gnu/packages/diffoscope.scm (diffoscope)[phases]: Add
'make-extract-vmlinux-executable.
---
gnu/packages/diffoscope.scm | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/gnu/packages/diffoscope.scm b/gnu/packages/diffoscope.scm
index 680595aec8..ebf0316080 100644
--- a/gnu/packages/diffoscope.scm
+++ b/gnu/packages/diffoscope.scm
@@ -99,6 +99,13 @@
(lambda _
(delete-file "tests/comparators/test_berkeley_db.py")
(delete-file "tests/comparators/test_wasm.py")))
+ (add-after 'compress-documentation 'make-extract-vmlinux-executable
+ ;; The script extract-vmlinux needs to be marked executable to be
+ ;; able to extract vmlinux files.
+ (lambda _
+ (for-each (lambda (file)
+ (chmod file #o755))
+ (find-files #$output "extract-vmlinux"))))
(add-after 'unpack 'embed-tool-references
(lambda* (#:key inputs #:allow-other-keys)
(define (bin command)