[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/47: gnu: mig: Update to 04bfe7a91223ba15d868f7165e49328b1c6e86c3.
From: |
guix-commits |
Subject: |
07/47: gnu: mig: Update to 04bfe7a91223ba15d868f7165e49328b1c6e86c3. |
Date: |
Sat, 3 Jun 2023 07:23:34 -0400 (EDT) |
janneke pushed a commit to branch wip-hurd
in repository guix.
commit 79c522a4cc9cd03d301e3643e375a6dbdef412ae
Author: Josselin Poiret <dev@jpoiret.xyz>
AuthorDate: Mon May 22 11:04:17 2023 +0200
gnu: mig: Update to 04bfe7a91223ba15d868f7165e49328b1c6e86c3.
* gnu/packages/hurd.scm (mig): Update to
04bfe7a91223ba15d868f7165e49328b1c6e86c3.
---
gnu/packages/hurd.scm | 74 +++++++++++++++++++++++++--------------------------
1 file changed, 36 insertions(+), 38 deletions(-)
diff --git a/gnu/packages/hurd.scm b/gnu/packages/hurd.scm
index d44962ae55..61d8774075 100644
--- a/gnu/packages/hurd.scm
+++ b/gnu/packages/hurd.scm
@@ -98,49 +98,47 @@ GNU/Hurd."
(license gpl2+)))
(define-public mig
- (package
- (name "mig")
- (version "1.8+git20220827")
- (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"))
- (sha256
- (base32
- "163d37s9lscd6zxyfng421m9nl857464mgjj90xsrcl5ykbng5p2"))
- (patches (search-patches "mig-cpu.h-generation.patch"))))
- (build-system gnu-build-system)
- ;; Flex is needed both at build and run time.
- (inputs (list gnumach-headers flex))
- (native-inputs (list flex bison))
- (arguments
- (list #:tests? #f
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'install 'avoid-perl-dependency
- (lambda* (#:key build inputs outputs #:allow-other-keys)
- (let* ((out (assoc-ref outputs "out"))
- (bin (string-append out "/bin")))
- ;; By default 'mig' (or 'TARGET-mig') uses Perl to
- ;; compute 'libexecdir_rel'. Avoid it.
- (substitute* (find-files bin "mig$")
- (("^libexecdir_rel=.*")
- "libexecdir_rel=../libexec\n"))))))))
- (home-page
"https://www.gnu.org/software/hurd/microkernel/mach/mig/gnu_mig.html")
- (synopsis "Mach 3.0 interface generator for the Hurd")
- (description
- "GNU MIG is the GNU distribution of the Mach 3.0 interface generator
+ (let ((revision "1")
+ (commit "04bfe7a91223ba15d868f7165e49328b1c6e86c3"))
+ (package
+ (name "mig")
+ (version (git-version "1.8" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.savannah.gnu.org/git/hurd/mig.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0zw2w3hnz76f9602znshciqabylmvavx0h04y01qjlmhd9wh8iw5"))))
+ (build-system gnu-build-system)
+ ;; Flex is needed both at build and run time.
+ (inputs (list gnumach-headers flex))
+ (native-inputs (list autoconf automake flex bison))
+ (arguments
+ (list #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'install 'avoid-perl-dependency
+ (lambda* (#:key build inputs outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (bin (string-append out "/bin")))
+ ;; By default 'mig' (or 'TARGET-mig') uses Perl to
+ ;; compute 'libexecdir_rel'. Avoid it.
+ (substitute* (find-files bin "mig$")
+ (("^libexecdir_rel=.*")
+ "libexecdir_rel=../libexec\n"))))))))
+ (home-page
"https://www.gnu.org/software/hurd/microkernel/mach/mig/gnu_mig.html")
+ (synopsis "Mach 3.0 interface generator for the Hurd")
+ (description
+ "GNU MIG is the GNU distribution of the Mach 3.0 interface generator
MIG, as maintained by the GNU Hurd developers for the GNU project.
You need this tool to compile the GNU Mach and GNU Hurd distributions,
and to compile the GNU C library for the Hurd. Also, you will need it
for other software in the GNU system that uses Mach-based inter-process
communication.")
- (license gpl2+)))
+ (license gpl2+))))
(define-public hurd-headers
;; This commit is now slightly behind 0.9.git20220818 as this one needs a
- 15/47: gnu: parted: Support building for the Hurd., (continued)
- 15/47: gnu: parted: Support building for the Hurd., guix-commits, 2023/06/03
- 17/47: hurd-boot: Setup pci-arbiter and rumpdisk translators., guix-commits, 2023/06/03
- 27/47: gnu: commencement: Add autoconf-boot0., guix-commits, 2023/06/03
- 26/47: gnu: gnumach: Disable builtin networking., guix-commits, 2023/06/03
- 28/47: gnu: commencement: Add automake-boot0., guix-commits, 2023/06/03
- 34/47: gnu: commencement: glibc-final: Use libc-for-target for source too., guix-commits, 2023/06/03
- 33/47: gnu: commencement: glibc-final-with-bootstrap-bash: Use libc-for-target., guix-commits, 2023/06/03
- 42/47: gnu: gettext-minimal: Remove XFAIL_TESTS for the Hurd., guix-commits, 2023/06/03
- 01/47: hurd-boot: Add urandom and default-pager translators., guix-commits, 2023/06/03
- 04/47: gnu: hurd: Update supported systems., guix-commits, 2023/06/03
- 07/47: gnu: mig: Update to 04bfe7a91223ba15d868f7165e49328b1c6e86c3.,
guix-commits <=
- 14/47: gnu: hurd-minimal: Include libshouldbeinlibc and libstore., guix-commits, 2023/06/03
- 19/47: system: hurd: Boot with pci.arbiter and rumpdisk., guix-commits, 2023/06/03
- 31/47: gnu: commencement: hurd-headers-boot0: Update to 0.9.git20230216., guix-commits, 2023/06/03
- 35/47: Revert "gnu: libunistring: Fix make check for the Hurd.", guix-commits, 2023/06/03
- 37/47: gnu: coreutils: Skip hanging and failing test for the Hurd., guix-commits, 2023/06/03
- 39/47: Revert "gnu: sed: Skip failing test on GNU/Hurd.", guix-commits, 2023/06/03
- 40/47: gnu: findutils: Move test-strerror_r from XFAIL to skip for the Hurd., guix-commits, 2023/06/03
- 09/47: Revert "hurd-boot: Add urandom and default-pager translators.", guix-commits, 2023/06/03
- 12/47: gnu: hurd: Update libpciaccess to 0.17., guix-commits, 2023/06/03
- 22/47: gnu: netdde: Resurrect and update to 2.6.32.65-2-e67c284ac1., guix-commits, 2023/06/03