This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch hurd-team
in repository guix.

The following commit(s) were added to refs/heads/hurd-team by this push:
     new 4650163903 gnu: hurd: Update to 0.9.git20251029-0.6290b4c.
4650163903 is described below

commit 4650163903676137b8b42b02f4dc69fb3fe71783
Author: Janneke Nieuwenhuizen <[email protected]>
AuthorDate: Sun Mar 1 12:18:24 2026 +0100

    gnu: hurd: Update to 0.9.git20251029-0.6290b4c.
    
    * gnu/packages/hurd.scm (hurd-headers): Update to 0.9.git20251029-0.6290b4c.
    
    Change-Id: I951130ad373f9d323bfdfc5d18aab5584bb51a16
---
 gnu/packages/hurd.scm | 112 +++++++++++++++++++++++++-------------------------
 1 file changed, 57 insertions(+), 55 deletions(-)

diff --git a/gnu/packages/hurd.scm b/gnu/packages/hurd.scm
index 652cdeed58..7693ac71f2 100644
--- a/gnu/packages/hurd.scm
+++ b/gnu/packages/hurd.scm
@@ -134,65 +134,67 @@ communication.")
       (license gpl2+))))
 
 (define-public hurd-headers
-  (package
-    (name "hurd-headers")
-    (version "0.9.git20251029")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                     (url "https://git.savannah.gnu.org/git/hurd/hurd.git";)
-                     (commit (string-append "v" version))))
-              (sha256
-               (base32
-                "09pi6ci375ivbjvxlgdqp6vpm47arfvlh325sr2a5dmwxhs9pnp9"))
-              (file-name (git-file-name name version))))
-    (build-system gnu-build-system)
-    (native-inputs
-     (list autoconf
-           automake
-           (if (%current-target-system)
-               (cross-mig (%current-target-system))
-               mig)))
-    (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (replace 'install
-           (lambda _
-             (invoke "make" "install-headers" "no_deps=t")))
-         (delete 'build))
+  (let ((commit "6290b4cf92963f64ffa447cdaba099812c80fbfb")
+        (revision "0"))
+    (package
+      (name "hurd-headers")
+      (version (git-version "0.9.git20251029" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                       (url "https://git.savannah.gnu.org/git/hurd/hurd.git";)
+                       (commit commit)))
+                (sha256
+                 (base32
+                  "0lkmxw2016isb80k8pjjr64il6irgwsqgd3634f79bry2fabhbdj"))
+                (file-name (git-file-name name version))))
+      (build-system gnu-build-system)
+      (native-inputs
+       (list autoconf
+             automake
+             (if (%current-target-system)
+                 (cross-mig (%current-target-system))
+                 mig)))
+      (arguments
+       `(#:phases
+         (modify-phases %standard-phases
+           (replace 'install
+             (lambda _
+               (invoke "make" "install-headers" "no_deps=t")))
+           (delete 'build))
 
-       #:configure-flags '( ;; Reduce set of dependencies.
-                           "--without-parted"
-                           "--disable-ncursesw"
-                           "--disable-test"
-                           "--without-libbz2"
-                           "--without-libcrypt"
-                           "--without-libz"
-                           "--without-rump"
-                           ;; Skip the clnt_create check because it expects
-                           ;; a working glibc causing a circular dependency.
-                           "ac_cv_search_clnt_create=no"
+         #:configure-flags '( ;; Reduce set of dependencies.
+                             "--without-parted"
+                             "--disable-ncursesw"
+                             "--disable-test"
+                             "--without-libbz2"
+                             "--without-libcrypt"
+                             "--without-libz"
+                             "--without-rump"
+                             ;; Skip the clnt_create check because it expects
+                             ;; a working glibc causing a circular dependency.
+                             "ac_cv_search_clnt_create=no"
 
-                           ;; Annihilate the checks for the 'file_exec_paths'
-                           ;; & co. libc functions to avoid "link tests are
-                           ;; not allowed after AC_NO_EXECUTABLES" error.
-                           "ac_cv_func_file_exec_paths=no"
-                           "ac_cv_func_exec_exec_paths=no"
-                           "ac_cv_func__hurd_exec_paths=no"
-                           "ac_cv_func__hurd_libc_proc_init=no"
-                           "ac_cv_func_mach_port_set_ktype=no"
-                           "ac_cv_func_file_futimens=no"
-                           "ac_cv_func_file_utimens=no"
-                           "ac_cv_lib_acpica_acpi_init=no")
+                             ;; Annihilate the checks for the 'file_exec_paths'
+                             ;; & co. libc functions to avoid "link tests are
+                             ;; not allowed after AC_NO_EXECUTABLES" error.
+                             "ac_cv_func_file_exec_paths=no"
+                             "ac_cv_func_exec_exec_paths=no"
+                             "ac_cv_func__hurd_exec_paths=no"
+                             "ac_cv_func__hurd_libc_proc_init=no"
+                             "ac_cv_func_mach_port_set_ktype=no"
+                             "ac_cv_func_file_futimens=no"
+                             "ac_cv_func_file_utimens=no"
+                             "ac_cv_lib_acpica_acpi_init=no")
 
-       #:tests? #f))
-    (supported-systems %hurd-systems)
-    (home-page "https://www.gnu.org/software/hurd/hurd.html";)
-    (synopsis "GNU Hurd headers")
-    (description
-     "This package provides C headers of the GNU Hurd, used to build the GNU C
+         #:tests? #f))
+      (supported-systems %hurd-systems)
+      (home-page "https://www.gnu.org/software/hurd/hurd.html";)
+      (synopsis "GNU Hurd headers")
+      (description
+       "This package provides C headers of the GNU Hurd, used to build the GNU 
C
 Library and other user programs.")
-    (license gpl2+)))
+      (license gpl2+))))
 
 (define-public hurd-minimal
   (package (inherit hurd-headers)

Reply via email to