[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#48325] [PATCH v5 1/5] gnu: Add utf8proc-2.6.1.
From: |
Jean-Baptiste Volatier |
Subject: |
[bug#48325] [PATCH v5 1/5] gnu: Add utf8proc-2.6.1. |
Date: |
Sat, 03 Jul 2021 17:41:34 +0000 |
* gnu/packages/textutils.scm (utf8proc-2.6.1): New variable.
* gnu/packages/textutils.scm (utf8pro): Fix cross-compilation.
Co-Authored-By: zimoun <zimon.toutoune@gmail.com>.
---
gnu/packages/textutils.scm | 46 ++++++++++++++++++++++++++++++++++++--
1 file changed, 44 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm
index ab34373705..37b925e6d9 100644
--- a/gnu/packages/textutils.scm
+++ b/gnu/packages/textutils.scm
@@ -20,6 +20,7 @@
;;; Copyright © 2019 Mădălin Ionel Patrașcu
<madalinionel.patrascu@mdc-berlin.de>
;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz>
;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
+;;; Copyright © 2021 Simon Tournier <zimon.toutoune@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -63,6 +64,7 @@
#:use-module (gnu packages python-build)
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages readline)
+ #:use-module (gnu packages ruby)
#:use-module (gnu packages slang)
#:use-module (gnu packages web))
@@ -185,9 +187,9 @@ libenca and several charset conversion libraries and
tools.")
(modify-phases %standard-phases
(delete 'configure)
(add-before 'check 'check-data
- (lambda* (#:key inputs #:allow-other-keys)
+ (lambda* (#:key inputs native-inputs #:allow-other-keys)
(for-each (lambda (i)
- (copy-file (assoc-ref inputs i)
+ (copy-file (assoc-ref (or native-inputs inputs) i)
(string-append "data/" i)))
'("NormalizationTest.txt" "GraphemeBreakTest.txt"))
(substitute* "data/GraphemeBreakTest.txt"
@@ -201,6 +203,46 @@ normalization, case-folding, and other operations for data
in the UTF-8
encoding, supporting Unicode version 9.0.0.")
(license license:expat)))
+(define-public utf8proc-2.6.1
+ (package
+ (inherit utf8proc)
+ (name "utf8proc")
+ (version "2.6.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaStrings/utf8proc")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1zqc6airkzkssbjxanx5v8blfk90180gc9id0dx8ncs54f1ib8w7"))))
+ (arguments
+ (substitute-keyword-arguments (package-arguments utf8proc)
+ ((#:phases phases)
+ `(modify-phases ,phases
+ (replace 'check-data
+ (lambda* (#:key inputs native-inputs #:allow-other-keys)
+ (display native-inputs)
+ (for-each (lambda (i)
+ (copy-file (assoc-ref (or native-inputs inputs) i)
+ (string-append "data/" i)))
+ '("NormalizationTest.txt" "GraphemeBreakTest.txt"
+ "DerivedCoreProperties.txt"))))))))
+ (native-inputs
+ (append
+ (package-native-inputs utf8proc)
+ (let ((UNICODE_VERSION "13.0.0"))
+ `(("DerivedCoreProperties.txt"
+ ,(origin
+ (method url-fetch)
+ (uri (string-append "https://www.unicode.org/Public/"
+ UNICODE_VERSION
"/ucd/DerivedCoreProperties.txt"))
+ (sha256
+ (base32
"0j12x112cd8fpgazkc8izxnhhpia44p1m36ff8yapslxndcmzm55"))))
+ ;; For tests
+ ("ruby" ,ruby)))))))
+
(define-public libconfuse
(package
(name "libconfuse")
--
2.32.0
- [bug#48325] [PATCH 3/4] gnu: openlibm: Update to 0.7.4., Maxime Devos, 2021/07/01
- [bug#48325] [PATCH v5 0/5] DRAFT: Update julia to 1.6.1., Jean-Baptiste Volatier, 2021/07/03
- [bug#48325] [PATCH v5 2/5] gnu: Add pcre2-10.36., Jean-Baptiste Volatier, 2021/07/03
- [bug#48325] [PATCH v5 1/5] gnu: Add utf8proc-2.6.1.,
Jean-Baptiste Volatier <=
- [bug#48325] [PATCH v5 3/5] gnu: openlibm: Update to 0.7.4., Jean-Baptiste Volatier, 2021/07/03
- [bug#48325] [PATCH v5 4/5] gnu: julia-staticarrays: Update to 1.2.5, Jean-Baptiste Volatier, 2021/07/03
- [bug#48325] [PATCH v5 5/5] DRAFT gnu: julia: Update to 1.6.1., Jean-Baptiste Volatier, 2021/07/03
- [bug#48325] [PATCH v5 5/5] DRAFT gnu: julia: Update to 1.6.1., Maxime Devos, 2021/07/03
- [bug#48325] [PATCH v5 5/5] DRAFT gnu: julia: Update to 1.6.1., Maxime Devos, 2021/07/03
- [bug#48325] [PATCH v5 5/5] DRAFT gnu: julia: Update to 1.6.1., Jean-Baptiste Volatier, 2021/07/04
- [bug#48325] [PATCH v5 5/5] DRAFT gnu: julia: Update to 1.6.1., Maxime Devos, 2021/07/04
- [bug#48325] [PATCH v5 5/5] DRAFT gnu: julia: Update to 1.6.1., Jean-Baptiste Volatier, 2021/07/04
- [bug#48325] [PATCH v5 5/5] DRAFT gnu: julia: Update to 1.6.1., Maxime Devos, 2021/07/04
- [bug#48325] [PATCH v5 5/5] DRAFT gnu: julia: Update to 1.6.1., Efraim Flashner, 2021/07/09