[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/14: gnu: Add libc-locales-for-target and glibc-locales/hurd.
From: |
guix-commits |
Subject: |
12/14: gnu: Add libc-locales-for-target and glibc-locales/hurd. |
Date: |
Mon, 18 Sep 2023 02:20:01 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit df8b1523a121204c0e0684496e403bec2f37e86c
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 | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index 0b6cb2ddc5..e38ff91ef0 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
%final-inputs))
@@ -1509,6 +1511,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 fe0246826a), guix-commits, 2023/09/18
- 01/14: self: Compile guix-packages-base in chunks of 10 files., guix-commits, 2023/09/18
- 02/14: gnu: guix: Update to 1.4.0-12.66ea1a1cc1., guix-commits, 2023/09/18
- 05/14: system: bare-hurd.tmpl: Include glibc-2.33 locales in cross-build., guix-commits, 2023/09/18
- 07/14: hurd-boot: Support system init: Create essential device nodes., guix-commits, 2023/09/18
- 13/14: DRAFT daemon: Support chroot builds on GNU/Hurd., guix-commits, 2023/09/18
- 11/14: DRAFT system: examples: Add devel-hurd.tmpl., guix-commits, 2023/09/18
- 06/14: hurd: Support system init in /libexec/runsystem., guix-commits, 2023/09/18
- 10/14: DRAFT hurd-boot: Support second boot., guix-commits, 2023/09/18
- 12/14: gnu: Add libc-locales-for-target and glibc-locales/hurd.,
guix-commits <=
- 04/14: maint: Support `guix shell' in Guix's git archive with manifest.scm., guix-commits, 2023/09/18
- 03/14: gnu: guix: Update to 1.4.0-13.a2549163f5., guix-commits, 2023/09/18
- 08/14: system: hurd: Add swap-services to hurd-default-essential-services., guix-commits, 2023/09/18
- 09/14: DRAFT hurd: Support second boot., guix-commits, 2023/09/18
- 14/14: Revert "DRAFT daemon: Support chroot builds on GNU/Hurd.", guix-commits, 2023/09/18