[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated (ec8a5ec15f -> 178c3115c4)
From: |
guix-commits |
Subject: |
branch master updated (ec8a5ec15f -> 178c3115c4) |
Date: |
Tue, 3 Dec 2024 02:45:46 -0500 (EST) |
janneke pushed a change to branch master
in repository guix.
from ec8a5ec15f gnu: make-bootstrap: Update gcc-static to gcc-14, for the
64bit Hurd.
new 4d9c5984fe gnu: bootstrap: Add support for x86_64-gnu, aka the 64bit
Hurd.
new de5239b675 system: image: Add hurd64 image types.
new b371174536 gnu: libgpg-error: Support the 64bit Hurd.
new 82e8ef994c gnu: openssl-3.0: Support the 64bit Hurd.
new 5482403f35 gnu: pciutils: Support the 64bit Hurd.
new 36f9348675 gnu: libpciaccess: Support the 64bit Hurd.
new c2a67e8743 gnu: netdde: Update to
c0ef248dc7c5ccc1273e2a796f3ece30c5b645df.
new b331a07a46 gnu: netdde: Support the 64bit Hurd.
new ba8fb8c2fb gnu: rumpkernel: Update to
f1ffd6405f225336e595a0f99f01095ed7438337.
new de8196f571 gnu: rumpkernel: Support the 64bit Hurd.
new f21fb53a8d gnu: hurd: Build fixes for the 64bit Hurd.
new 70ed0260b3 gnu: inetutils: Fix build for the 64bit Hurd.
new 3d664f8301 gnu: grub: Fix build for the 64bit Hurd.
new c86448f38b gnu: guile-fibers: Fix build for the 64bit Hurd.
new 493e07bd00 gnu: m4: Fix build for the 64bit Hurd.
new df35583970 gnu: commencement: gnumach-headers-boot0: Update to
1.8+git20240714.
new 25daa817f3 gnu: commencement: mig-boot0: Update to 1.8+git20231217..
new 013b1143a5 gnu: commencement: hurd-headers-boot0: Update to
0.9.git20240714.
new be81d46472 gnu: commencement: libstdc++-boot0-gcc7: Replace by
make-libstdc++-boot0.
new f905df43ba gnu: gettext: Fix cross-build shebangs.
new baf4a33307 gnu: Add gdb-15.2, with support for the 64bit Hurd.
new 204fe1b1f0 gnu: bootstrap: %bootstrap-glibc: Also fix libm.so.
new 9e2eae54f9 system: examples: Add bare-hurd64.tmpl.
new bd785af995 system: examples: Add devel-hurd64.tmpl.
new a82e75d807 gnu: Use gcc-14, gcc-toolchain-14 on the 64bit Hurd.
new 527fc6906d gnu: commencement: kernel-headers-boot0: Support the 64bit
Hurd.
new 1241699427 gnu: hurd: Add refcounts-assert patch.
new 877b925df1 gnu: bootstrap: %bootstrap-gcc: Also wrap g++ for the 64bit
Hurd.
new 62130a7f4d gnu: commencement: libstdc++-boot0: Support the 64bit Hurd.
new 265c54ed03 gnu: commencement: gcc-boot0: Support the 64bit Hurd.
new a41f2bdc19 gnu: commencement: gcc-final: Support the 64bit Hurd.
new d54b6bc11a gnu: coreutils: Skip some tests on the 64bit Hurd.
new 74f8ca11e0 gnu: grep: Skip a test on the 64bit Hurd.
new d9bb372453 gnu: diffutils: Skip some tests on the 64bit Hurd.
new 178c3115c4 gnu: m4: Fix build of tests on the 64bit Hurd.
The 35 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
doc/guix.texi | 9 +-
gnu/local.mk | 10 +
gnu/packages/admin.scm | 14 +-
gnu/packages/base.scm | 33 +-
gnu/packages/bootloaders.scm | 8 +
gnu/packages/bootstrap.scm | 83 +-
gnu/packages/commencement.scm | 106 ++-
gnu/packages/gcc.scm | 5 +-
gnu/packages/gdb.scm | 22 +
gnu/packages/gettext.scm | 16 +-
gnu/packages/gnupg.scm | 22 +-
gnu/packages/guile-xyz.scm | 2 +-
gnu/packages/hurd.scm | 173 ++--
gnu/packages/m4.scm | 15 +-
gnu/packages/patches/gdb-hurd64.patch | 923 +++++++++++++++++++++
gnu/packages/patches/grub-hurd64.patch | 32 +
gnu/packages/patches/hurd-64bit.patch | 56 ++
gnu/packages/patches/hurd-refcounts-assert.patch | 26 +
gnu/packages/patches/inetutils-hurd64.patch | 65 ++
gnu/packages/patches/libgpg-error-hurd64.patch | 78 ++
gnu/packages/patches/libpciaccess-hurd64.patch | 58 ++
gnu/packages/patches/netdde-csum.patch | 18 +
gnu/packages/patches/openssl-hurd64.patch | 99 +++
gnu/packages/patches/pciutils-hurd64.patch | 31 +
gnu/packages/pciutils.scm | 25 +-
gnu/packages/tls.scm | 17 +-
gnu/packages/xorg.scm | 23 +-
gnu/system/examples/bare-hurd.tmpl | 21 +-
.../examples/{bare-hurd.tmpl => bare-hurd64.tmpl} | 33 +-
gnu/system/examples/devel-hurd.tmpl | 70 +-
gnu/system/examples/devel-hurd64.tmpl | 65 ++
gnu/system/hurd.scm | 17 +
gnu/system/images/hurd.scm | 72 +-
guix/packages.scm | 8 +-
guix/utils.scm | 19 +
m4/guix.m4 | 12 +-
36 files changed, 2081 insertions(+), 205 deletions(-)
create mode 100644 gnu/packages/patches/gdb-hurd64.patch
create mode 100644 gnu/packages/patches/grub-hurd64.patch
create mode 100644 gnu/packages/patches/hurd-64bit.patch
create mode 100644 gnu/packages/patches/hurd-refcounts-assert.patch
create mode 100644 gnu/packages/patches/inetutils-hurd64.patch
create mode 100644 gnu/packages/patches/libgpg-error-hurd64.patch
create mode 100644 gnu/packages/patches/libpciaccess-hurd64.patch
create mode 100644 gnu/packages/patches/netdde-csum.patch
create mode 100644 gnu/packages/patches/openssl-hurd64.patch
create mode 100644 gnu/packages/patches/pciutils-hurd64.patch
copy gnu/system/examples/{bare-hurd.tmpl => bare-hurd64.tmpl} (66%)
create mode 100644 gnu/system/examples/devel-hurd64.tmpl
- branch master updated (ec8a5ec15f -> 178c3115c4),
guix-commits <=
- 11/35: gnu: hurd: Build fixes for the 64bit Hurd., guix-commits, 2024/12/03
- 04/35: gnu: openssl-3.0: Support the 64bit Hurd., guix-commits, 2024/12/03
- 05/35: gnu: pciutils: Support the 64bit Hurd., guix-commits, 2024/12/03
- 03/35: gnu: libgpg-error: Support the 64bit Hurd., guix-commits, 2024/12/03
- 09/35: gnu: rumpkernel: Update to f1ffd6405f225336e595a0f99f01095ed7438337., guix-commits, 2024/12/03
- 08/35: gnu: netdde: Support the 64bit Hurd., guix-commits, 2024/12/03
- 10/35: gnu: rumpkernel: Support the 64bit Hurd., guix-commits, 2024/12/03
- 12/35: gnu: inetutils: Fix build for the 64bit Hurd., guix-commits, 2024/12/03
- 01/35: gnu: bootstrap: Add support for x86_64-gnu, aka the 64bit Hurd., guix-commits, 2024/12/03
- 07/35: gnu: netdde: Update to c0ef248dc7c5ccc1273e2a796f3ece30c5b645df., guix-commits, 2024/12/03