From 88ee1c5c86b9cffc952dadf2e0cfa1b82484d3a8 Mon Sep 17 00:00:00 2001 From: John Khoo Date: Wed, 30 Apr 2025 04:42:47 +0800 Subject: [PATCH] gnu: Remove utf8proc-2.7.0. * gnu/packages/textutils.scm (utf8proc-2.7.0): Remove utf8proc-2.7.0. Change-Id: I1c27646cdded84370590b12e5e65eddcdf97a1e7 Signed-off-by: Hilton Chain --- gnu/packages/textutils.scm | 42 +------------------------------------- 1 file changed, 1 insertion(+), 41 deletions(-) diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index 2bba081bccd0e0aac9175ebacc3c4ef3062eb10b..4c836605afb210ef0bbb06a8903ca999290263e3 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -244,6 +244,7 @@ case-folding, and other operations for data in the UTF-8 encoding.") ;; For tests. julia perl + ;; TODO Move to ruby@3 on the next rebuild cycle. ruby-2.7))) (arguments (strip-keyword-arguments @@ -261,47 +262,6 @@ case-folding, and other operations for data in the UTF-8 encoding.") (properties (alist-delete 'hidden? (package-properties utf8proc-bootstrap))))) -(define-public utf8proc-2.7.0 - (package - (inherit utf8proc) - (name "utf8proc") - (version "2.7.0") - (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 "1wrsmnaigal94gc3xbzdrrm080zjhihjfdla5admllq2w5dladjj")))) - (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 "14.0.0")) - `(("DerivedCoreProperties.txt" - ,(origin - (method url-fetch) - (uri (string-append "https://www.unicode.org/Public/" - UNICODE_VERSION "/ucd/DerivedCoreProperties.txt")) - (sha256 - (base32 "1g77s8g9443dd92f82pbkim7rk51s7xdwa3mxpzb1lcw8ryxvvg3")))) - ;; For tests - ;; TODO Move to ruby@3 on the next rebuild cycle. - ("ruby" ,ruby-2.7))))))) - (define-public libconfuse (package (name "libconfuse")