[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated (5cb84f2013 -> ec8a5ec15f)
From: |
guix-commits |
Subject: |
branch master updated (5cb84f2013 -> ec8a5ec15f) |
Date: |
Tue, 3 Dec 2024 02:41:11 -0500 (EST) |
janneke pushed a change to branch master
in repository guix.
from 5cb84f2013 system: Add "installer" sub-command.
new d3eb509abe gnu: gnumach: Update to v1.8+git20240714.
new a3cce93271 gnu: mig: Update to 1.8+git20231217.
new ae2213ed98 gnu: hurd: Update to 0.9.git20240714.
new 94dfb68d43 gnu: Add basic support for x86_64-pc-gnu target, aka 64bit
Hurd.
new b8c5057e50 gnu: cross-libc: Support cross-building for the 64bit Hurd.
new 59289e1cdd gnu: bash-minimal: Support [cross-]build with gcc-14.
new 43ba6d2a0d gnu: elfutils: Fix build for 64bit Hurd.
new 6fa9d0b177 gnu: grep: Fix build for the 64bit Hurd.
new d53f374a8a gnu: patch: Fix build for the 64bit Hurd.
new 5f0a02a190 gnu: libxcrypt: Support the 64bit Hurd.
new cb765c4218 gnu: libstdc++: Support the 64bit Hurd.
new a9005279d0 gnu: glibc/hurd: Add patches for the 64bit Hurd.
new a56e8f0a87 gnu: bash: Avoid hang when cross-built for the Hurd.
new ed1ef9bbb2 gnu: git-minimal: Support [cross-]build with gcc-14 and the
64bit Hurd.
new b727c38e43 gnu: flex: Fix [cross-]build with gcc-14.
new 962c8191d9 gnu: libffi: Fix [cross-]build with gcc-14.
new fbf815dc84 gnu: perl: Support [cross-]build with gcc-14 and the 64bit
Hurd.
new ef15b48379 gnu: texinfo-4: Fix [cross-]build with gcc-14 and the 64bit
Hurd.
new ee8a9cdcf3 gnu: hurd: Fix build with gcc-14.
new 883869970c gnu: netdde: Fix build with gcc-14.
new b2a9eb5c9e gnu: libedit: Fix [cross-]build with gcc-14 for 32bit.
new 2d37f0e071 gnu: libssh: Fix [cross-]build with gcc-14 for 32bit.
new 47f2cabe37 gnu: guile-lzlib: Support [cross-]build with gcc-14 and the
64bit Hurd.
new d6780d79d9 gnu: cross-base: Update %xgcc to gcc-14, to support the
64bit Hurd.
new 4d077bba89 gnu: gcc-14: Force libdir /lib instead of /lib64 for the
64bit Hurd.
new 5ffbd2015c gnu: glibc/hurd: Add patch for the 64bit Hurd, fixing
"raise".
new ec8a5ec15f gnu: make-bootstrap: Update gcc-static to gcc-14, for the
64bit Hurd.
The 27 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:
gnu/local.mk | 8 +
gnu/packages/base.scm | 78 +++-
gnu/packages/bash.scm | 22 +
gnu/packages/bootstrap.scm | 5 +-
gnu/packages/commencement.scm | 1 +
gnu/packages/cross-base.scm | 18 +-
gnu/packages/crypto.scm | 13 +
gnu/packages/elf.scm | 6 +-
gnu/packages/flex.scm | 8 +
gnu/packages/gcc.scm | 13 +-
gnu/packages/guile.scm | 16 +-
gnu/packages/hurd.scm | 37 +-
gnu/packages/libedit.scm | 8 +
gnu/packages/libffi.scm | 8 +-
gnu/packages/make-bootstrap.scm | 49 +-
.../glibc-hurd-pthread_setcancelstate.patch | 92 ++++
gnu/packages/patches/glibc-hurd64-fault.patch | 32 ++
.../patches/glibc-hurd64-gcc-14.2-tls-bug.patch | 28 ++
.../patches/glibc-hurd64-intr-msg-clobber.patch | 62 +++
.../patches/glibc-hurd64-sgms-context.patch | 505 +++++++++++++++++++++
gnu/packages/patches/gnumach-version.patch | 23 +
gnu/packages/patches/guile-lzlib-hurd64.patch | 32 ++
gnu/packages/patches/libxcrypt-hurd64.patch | 38 ++
gnu/packages/perl.scm | 18 +-
gnu/packages/ssh.scm | 9 +-
gnu/packages/texinfo.scm | 50 +-
gnu/packages/version-control.scm | 7 +-
gnu/system.scm | 1 -
guix/platforms/x86.scm | 11 +-
guix/utils.scm | 15 +-
30 files changed, 1107 insertions(+), 106 deletions(-)
create mode 100644 gnu/packages/patches/glibc-hurd-pthread_setcancelstate.patch
create mode 100644 gnu/packages/patches/glibc-hurd64-fault.patch
create mode 100644 gnu/packages/patches/glibc-hurd64-gcc-14.2-tls-bug.patch
create mode 100644 gnu/packages/patches/glibc-hurd64-intr-msg-clobber.patch
create mode 100644 gnu/packages/patches/glibc-hurd64-sgms-context.patch
create mode 100644 gnu/packages/patches/gnumach-version.patch
create mode 100644 gnu/packages/patches/guile-lzlib-hurd64.patch
create mode 100644 gnu/packages/patches/libxcrypt-hurd64.patch
- branch master updated (5cb84f2013 -> ec8a5ec15f),
guix-commits <=
- 04/27: gnu: Add basic support for x86_64-pc-gnu target, aka 64bit Hurd., guix-commits, 2024/12/03
- 07/27: gnu: elfutils: Fix build for 64bit Hurd., guix-commits, 2024/12/03
- 06/27: gnu: bash-minimal: Support [cross-]build with gcc-14., guix-commits, 2024/12/03
- 15/27: gnu: flex: Fix [cross-]build with gcc-14., guix-commits, 2024/12/03
- 01/27: gnu: gnumach: Update to v1.8+git20240714., guix-commits, 2024/12/03
- 03/27: gnu: hurd: Update to 0.9.git20240714., guix-commits, 2024/12/03
- 05/27: gnu: cross-libc: Support cross-building for the 64bit Hurd., guix-commits, 2024/12/03
- 02/27: gnu: mig: Update to 1.8+git20231217., guix-commits, 2024/12/03
- 08/27: gnu: grep: Fix build for the 64bit Hurd., guix-commits, 2024/12/03
- 10/27: gnu: libxcrypt: Support the 64bit Hurd., guix-commits, 2024/12/03