[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: glibc: Add version 2.23.
From: |
Ludovic Courtès |
Subject: |
01/01: gnu: glibc: Add version 2.23. |
Date: |
Sun, 6 Nov 2016 23:46:24 +0000 (UTC) |
civodul pushed a commit to branch core-updates
in repository guix.
commit 19ac2ba858ebc46db96364809ebfc129be9e4ccf
Author: Ludovic Courtès <address@hidden>
Date: Mon Nov 7 00:44:56 2016 +0100
gnu: glibc: Add version 2.23.
* gnu/packages/base.scm (glibc-2.23): New variable.
---
gnu/packages/base.scm | 19 +++++++++++++++----
1 file changed, 15 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index 77ba2c7..1c01874 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -743,9 +743,22 @@ GLIBC/HURD for a Hurd host"
(define-syntax glibc
(identifier-syntax (glibc-for-target)))
+;; Below are old libc versions, which we use mostly to build locale data in
+;; the old format (which the new libc cannot cope with.)
+
+(define-public glibc-2.23
+ (package
+ (inherit glibc)
+ (version "2.23")
+ (source (origin
+ (inherit (package-source glibc))
+ (uri (string-append "mirror://gnu/glibc/glibc-"
+ version ".tar.xz"))
+ (sha256
+ (base32
+ "1s8krs3y2n6pzav7ic59dz41alqalphv7vww4138ag30wh0fpvwl"))))))
+
(define-public glibc-2.22
- ;; The old libc, which we use mostly to build locale data in the old format
- ;; (which the new libc can cope with.)
(package
(inherit glibc)
(version "2.22")
@@ -768,8 +781,6 @@ GLIBC/HURD for a Hurd host"
(("/bin/pwd") "pwd"))))))))))
(define-public glibc-2.21
- ;; The old libc, which we use mostly to build locale data in the old format
- ;; (which the new libc can cope with.)
(package
(inherit glibc-2.22)
(version "2.21")