[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
17/18: gnu: Add libc-locales-for-target and glibc-locales/hurd.
From: |
guix-commits |
Subject: |
17/18: gnu: Add libc-locales-for-target and glibc-locales/hurd. |
Date: |
Fri, 21 Jul 2023 12:00:03 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit c8fab97da881e56b141295a3e57583bffdc7b09c
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 1fdfaf8a57..8cf2682fac 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -77,6 +77,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))
@@ -1504,6 +1506,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")
- 16/18: DRAFT system: examples: Add devel-hurd.tmpl., (continued)
- 16/18: DRAFT system: examples: Add devel-hurd.tmpl., guix-commits, 2023/07/21
- 02/18: tests: packages: Set system for expected result of package->bag., guix-commits, 2023/07/21
- 07/18: self: Build gnu/packages/*.go in 26 steps on the Hurd., guix-commits, 2023/07/21
- 08/18: gnu: guix: Update to 1.4.0-8.5623ab503f., guix-commits, 2023/07/21
- 09/18: gnu: guix: Update to 1.4.0-9.ee343946cc., guix-commits, 2023/07/21
- 10/18: hurd: Support system init in /libexec/runsystem., guix-commits, 2023/07/21
- 12/18: system: hurd: Add procps to %base-packages/hurd., guix-commits, 2023/07/21
- 13/18: system: hurd: Add swap-services to hurd-default-essential-services., guix-commits, 2023/07/21
- 14/18: DRAFT hurd: Support second boot., guix-commits, 2023/07/21
- 15/18: DRAFT hurd-boot: Support second boot., guix-commits, 2023/07/21
- 17/18: gnu: Add libc-locales-for-target and glibc-locales/hurd.,
guix-commits <=
- 18/18: locale: Set %default-locale-definitions to glibc/hurd on the Hurd., guix-commits, 2023/07/21