[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
14/17: gnu: Add libc-locales-for-target and glibc-locales/hurd.
From: |
guix-commits |
Subject: |
14/17: gnu: Add libc-locales-for-target and glibc-locales/hurd. |
Date: |
Thu, 14 Sep 2023 18:19:05 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit b03578049d9aa1f1f0516e925f75f300f9a45f0e
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 786b080ae4..35759a5fc4 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
%final-inputs))
@@ -1510,6 +1512,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")
- 01/17: self: Build directories in chunks of max 25 files at a time., (continued)
- 01/17: self: Build directories in chunks of max 25 files at a time., guix-commits, 2023/09/14
- 02/17: gnu: guix: Update to 1.4.0-11.6c1646d64a., guix-commits, 2023/09/14
- 05/17: gnu: gdk-pixbuf: Build without gobject-introspection for the Hurd., guix-commits, 2023/09/14
- 11/17: DRAFT hurd: Support second boot., guix-commits, 2023/09/14
- 13/17: DRAFT system: examples: Add devel-hurd.tmpl., guix-commits, 2023/09/14
- 08/17: hurd-boot: Support system init: Create essential device nodes., guix-commits, 2023/09/14
- 09/17: system: hurd: Add procps to %base-packages/hurd., guix-commits, 2023/09/14
- 17/17: Revert "DRAFT daemon: Support chroot builds on GNU/Hurd.", guix-commits, 2023/09/14
- 10/17: system: hurd: Add swap-services to hurd-default-essential-services., guix-commits, 2023/09/14
- 12/17: DRAFT hurd-boot: Support second boot., guix-commits, 2023/09/14
- 14/17: gnu: Add libc-locales-for-target and glibc-locales/hurd.,
guix-commits <=
- 16/17: DRAFT daemon: Support chroot builds on GNU/Hurd., guix-commits, 2023/09/14
- 04/17: maint: Support `guix shell' in Guix's git archive with manifest.scm., guix-commits, 2023/09/14
- 07/17: hurd: Support system init in /libexec/runsystem., guix-commits, 2023/09/14
- 15/17: locale: Set %default-locale-definitions to glibc/hurd on the Hurd., guix-commits, 2023/09/14