[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/67: gnu: mig: Update to 1.8+git20230520.
From: |
guix-commits |
Subject: |
08/67: gnu: mig: Update to 1.8+git20230520. |
Date: |
Tue, 18 Jul 2023 10:16:01 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit 61835f33c6fee35457c7277e3216c10c15d0a391
Author: Josselin Poiret <dev@jpoiret.xyz>
AuthorDate: Mon May 22 11:04:17 2023 +0200
gnu: mig: Update to 1.8+git20230520.
Now that mig-boot0 has been updated not to use mig's source, we can
safely update mig.
* gnu/packages/hurd.scm (mig)[source]: Update to 1.8+git20230520.
---
gnu/packages/hurd.scm | 20 ++++++++------------
1 file changed, 8 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/hurd.scm b/gnu/packages/hurd.scm
index 3785c47750..4064a9e2e8 100644
--- a/gnu/packages/hurd.scm
+++ b/gnu/packages/hurd.scm
@@ -91,24 +91,20 @@
(define-public mig
(package
(name "mig")
- (version "1.8+git20220827")
+ (version "1.8+git20230520")
(source (origin
- (method url-fetch)
- ;; XXX: Version 2.35 of glibc can only be built with an
- ;; unreleased version of MiG:
- ;;
<https://lists.gnu.org/archive/html/bug-hurd/2023-03/msg00025.html>.
- ;; It cannot be fetched from Git though, as the extra dependency
- ;; on Autoconf/Automake would complicate bootstrapping.
- (uri (string-append "mirror://gnu/guix/mirror/mig-"
- version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.savannah.gnu.org/git/hurd/mig.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "163d37s9lscd6zxyfng421m9nl857464mgjj90xsrcl5ykbng5p2"))
- (patches (search-patches "mig-cpu.h-generation.patch"))))
+ "10r0fdjqjzqsy6ajb21rifvhw0wpjvrw6a1zdyliqlzqny5k0qlz"))))
(build-system gnu-build-system)
;; Flex is needed both at build and run time.
(inputs (list gnumach-headers flex))
- (native-inputs (list flex bison))
+ (native-inputs (list autoconf automake flex bison))
(arguments
(list #:tests? #f
#:phases
- branch hurd-team created (now b20f928d3a), guix-commits, 2023/07/18
- 08/67: gnu: mig: Update to 1.8+git20230520.,
guix-commits <=
- 18/67: hurd: Support system init in /libexec/runsystem., guix-commits, 2023/07/18
- 20/67: gnu: openssl: Build fix for the Hurd., guix-commits, 2023/07/18
- 38/67: gnu: ruby-2.6: Skip test on the Hurd., guix-commits, 2023/07/18
- 32/67: gnu: procps: Skip linux-version test for the Hurd., guix-commits, 2023/07/18
- 41/67: gnu: zstd: Skip tests when building for the Hurd., guix-commits, 2023/07/18
- 45/67: gnu: graphite2: Skip test on the Hurd., guix-commits, 2023/07/18
- 54/67: system: hurd: Add procps to %base-packages/hurd., guix-commits, 2023/07/18
- 16/67: gnu: gettext-minimal: Remove XFAIL_TESTS for the Hurd., guix-commits, 2023/07/18
- 27/67: gnu: libgcrypt: Skip hanging benchmark tests on the Hurd., guix-commits, 2023/07/18
- 25/67: gnu: c-ares: Skip failing tests on the Hurd., guix-commits, 2023/07/18