From 4f447d2f98e173374ec597fdc38198666e089ef8 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 28 Apr 2018 19:55:01 +0200 Subject: gnu: Use HTTPS for julialang.org home pages. * gnu/packages/textutils.scm (utf8proc)[home-page]: Use HTTPS. * gnu/packages/julia.scm (julia)[home-page]: Likewise --- gnu/packages/textutils.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/packages/textutils.scm') diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index 2108a0a6d..4aa3e9c2a 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -177,7 +177,7 @@ libenca and several charset conversion libraries and tools.") (substitute* "data/GraphemeBreakTest.txt" (("÷") "/") (("×") "+"))))))) - (home-page "http://julialang.org/utf8proc/") + (home-page "https://julialang.org/utf8proc/") (synopsis "C library for processing UTF-8 Unicode data") (description "utf8proc is a small C library that provides Unicode normalization, case-folding, and other operations for data in the UTF-8 -- cgit v1.3 From 8bcda205f587547cfc6aabba8cbf08251cc44e74 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 28 Apr 2018 23:02:12 +0200 Subject: gnu: utf8proc: Update to 2.1.1. * gnu/packages/textutils.scm (utf8proc): Update to 2.1.1. --- gnu/packages/textutils.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/textutils.scm') diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index 4aa3e9c2a..a06bf3117 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -136,7 +136,7 @@ libenca and several charset conversion libraries and tools.") (define-public utf8proc (package (name "utf8proc") - (version "2.1.0") + (version "2.1.1") (source (origin (method url-fetch) @@ -145,9 +145,9 @@ libenca and several charset conversion libraries and tools.") version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0q1jhdkk4f9b0zb8s2ql3sba3br5nvjsmbsaybmgj064k9hwbk15")))) + (base32 "1cnpigrazhslw65s4j1a56j7p6d7d61wsxxjf1218i9mkwv2yw17")))) (build-system gnu-build-system) - (inputs ;test data that is otherwise downloaded with curl + (inputs ; test data that is otherwise downloaded with curl `(("NormalizationTest.txt" ,(origin (method url-fetch) -- cgit v1.3