[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/85: gnu: Add libc-locales-for-target and glibc-locales/hurd.
From: |
guix-commits |
Subject: |
09/85: gnu: Add libc-locales-for-target and glibc-locales/hurd. |
Date: |
Thu, 15 Jun 2023 02:32:36 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit 45d5856e4b78f2a81f74bf0bc2d99335e4f7ad4f
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 0281cf2ba2..a63ac3f8bb 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")
- branch hurd-team created (now 61616f4ceb), guix-commits, 2023/06/15
- 01/85: hurd-boot: Add urandom and default-pager translators., guix-commits, 2023/06/15
- 06/85: squash! gnu: Add libc-for-target and glibc/hurd., guix-commits, 2023/06/15
- 09/85: gnu: Add libc-locales-for-target and glibc-locales/hurd.,
guix-commits <=
- 07/85: squash! gnu: Add libc-for-target and glibc/hurd., guix-commits, 2023/06/15
- 08/85: gnu: gnumach: Update to 1.8+git20221224., guix-commits, 2023/06/15
- 11/85: squash! gnu: mig: Update to 04bfe7a91223ba15d868f7165e49328b1c6e86c3., guix-commits, 2023/06/15
- 13/85: Revert "hurd-boot: Add urandom and default-pager translators.", guix-commits, 2023/06/15
- 24/85: gnu: gnumach: Support "noide" argument., guix-commits, 2023/06/15
- 27/85: system: hurd: Add netdde to %base-packages/hurd., guix-commits, 2023/06/15
- 28/85: services: static-networking: Support netdde for the Hurd., guix-commits, 2023/06/15
- 29/85: gnu: gnumach: Disable builtin networking., guix-commits, 2023/06/15
- 25/85: gnu: netdde: Resurrect and update to 2.6.32.65-2-e67c284ac1., guix-commits, 2023/06/15
- 02/85: gnu: glibc/hurd-headers: Properly cross-build., guix-commits, 2023/06/15