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 d4e9d74b66 scripts: pack: Use correct Debian architecture for 
armhf-linux.
d4e9d74b66 is described below

commit d4e9d74b66ec4db91fcf42945edd68d8a857f342
Author: Efraim Flashner <[email protected]>
AuthorDate: Mon Mar 9 16:47:29 2026 +0200

    scripts: pack: Use correct Debian architecture for armhf-linux.
    
    Fixes guix/guix#6989.
    
    * guix/scripts/pack.scm (debian-archive): When creating a Debian package
    for an armhf-linux machine match our architecture to the closest one of
    Debian's supported architectures.
    
    Change-Id: I596db1087c507e61cc31f0808ebd9e39b4956c49
---
 guix/scripts/pack.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/guix/scripts/pack.scm b/guix/scripts/pack.scm
index a6a7babf59..722c707e50 100644
--- a/guix/scripts/pack.scm
+++ b/guix/scripts/pack.scm
@@ -707,6 +707,7 @@ Valid compressors are: ~a~%") compressor-name 
%valid-compressors)))
                 ("i686" "i386")
                 ("x86_64" "amd64")
                 ("aarch64" "arm64")
+                ("arm" "armhf") ; Guix only supports armv7 or later.
                 ("mipsisa32r6" "mipsr6")
                 ("mipsisa32r6el" "mipsr6el")
                 ("mipsisa64r6" "mips64r6")

Reply via email to