[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/89: gnu: Add libc-locales-for-target and glibc-locales/hurd.
From: |
guix-commits |
Subject: |
09/89: gnu: Add libc-locales-for-target and glibc-locales/hurd. |
Date: |
Tue, 20 Jun 2023 05:58:51 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit c4475d92f8cadb1ada4af5a7a9af7a752e5f13c6
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Wed Jun 7 19:19:01 2023 +0200
gnu: Add libc-locales-for-target and glibc-locales/hurd.
* gnu/packages/base.scm (glibc-locales/hurd): New variable
(libc-locales-for-target): Use it in new procedure.
(glibc-utf8-locales/hurd): New variable.
(libc-utf8-locales-for-target): Use it in new procedure.
---
gnu/packages/base.scm | 35 +++++++++++++++++++++++++++++++----
1 file changed, 31 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index 304b0713ee..86e7f0bcdc 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -76,6 +76,8 @@
#:use-module (srfi srfi-26)
#:export (glibc
libc-for-target
+ libc-locales-for-target
+ libc-utf8-locales-for-target
make-ld-wrapper
libiconv-if-needed))
@@ -1450,10 +1452,10 @@ command.")
(native-inputs
(modify-inputs (package-native-inputs glibc/hurd)
(prepend (if (%current-target-system)
- (let* ((cross-base (resolve-interface '(gnu packages
cross-base)))
- (cross-mig (module-ref cross-base 'cross-mig)))
- (cross-mig (%current-target-system)))
- mig))))
+ (let* ((cross-base (resolve-interface '(gnu packages
cross-base)))
+ (cross-mig (module-ref cross-base 'cross-mig)))
+ (cross-mig (%current-target-system)))
+ mig))))
(arguments
(substitute-keyword-arguments (package-arguments glibc/hurd)
;; We just pass the flags really needed to build the headers.
@@ -1485,6 +1487,31 @@ command.")
(_
glibc)))
+(define-public glibc-locales/hurd
+ (make-glibc-locales glibc/hurd))
+
+(define* (libc-locales-for-target #:optional
+ (target (or (%current-target-system)
+ (%current-system))))
+ (match target
+ ((? target-hurd?)
+ glibc-locales/hurd)
+ (_
+ glibc-locales)))
+
+(define-public glibc-utf8-locales/hurd
+ (hidden-package
+ (make-glibc-utf8-locales glibc/hurd)))
+
+(define* (libc-utf8-locales-for-target #:optional
+ (target (or (%current-target-system)
+ (%current-system))))
+ (match target
+ ((? target-hurd?)
+ glibc-utf8-locales/hurd)
+ (_
+ glibc-utf8-locales)))
+
(define-public tzdata
(package
(name "tzdata")
- 76/89: gnu: harfbuzz: Support build for the Hurd., (continued)
- 76/89: gnu: harfbuzz: Support build for the Hurd., guix-commits, 2023/06/20
- 78/89: gnu: fontforge: Support build on the Hurd., guix-commits, 2023/06/20
- 81/89: system: hurd: Add procps to %base-packages/hurd., guix-commits, 2023/06/20
- 80/89: gnu: guile-2.0: Skip failing tests on the Hurd., guix-commits, 2023/06/20
- 82/89: system: hurd: Add swap-services to hurd-default-essential-services., guix-commits, 2023/06/20
- 83/89: build: Build gnu/packages/*.go in four steps., guix-commits, 2023/06/20
- 86/89: gnu: guix: Update to 1.4.0-8.656960a93a., guix-commits, 2023/06/20
- 88/89: DRAFT hurd-boot: Support second boot., guix-commits, 2023/06/20
- 03/89: gnu: gnumach-headers: Cross-build without relying on x86., guix-commits, 2023/06/20
- 08/89: gnu: gnumach: Update to 1.8+git20221224., guix-commits, 2023/06/20
- 09/89: gnu: Add libc-locales-for-target and glibc-locales/hurd.,
guix-commits <=
- 04/89: gnu: hurd: Update supported systems., guix-commits, 2023/06/20
- 11/89: squash! gnu: mig: Update to 04bfe7a91223ba15d868f7165e49328b1c6e86c3., guix-commits, 2023/06/20
- 12/89: gnu: hurd: Update to v0.9.git20230216., guix-commits, 2023/06/20
- 18/89: gnu: parted: Support building for the Hurd., guix-commits, 2023/06/20
- 19/89: gnu: hurd: Add rumpkernel., guix-commits, 2023/06/20
- 21/89: services: childhurd: Bump default qemu memory to 2048MB., guix-commits, 2023/06/20
- 23/89: bootloader: grub: Use rumpdisk-style root when booting with "noide"., guix-commits, 2023/06/20
- 15/89: gnu: hurd: Update libpciaccess to 0.17., guix-commits, 2023/06/20
- 17/89: gnu: hurd-minimal: Include libshouldbeinlibc and libstore., guix-commits, 2023/06/20
- 24/89: gnu: gnumach: Support "noide" argument., guix-commits, 2023/06/20