[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#53017] [PATCH 12/17] gnu: Add julia-stringencodings.
From: |
zimoun |
Subject: |
[bug#53017] [PATCH 12/17] gnu: Add julia-stringencodings. |
Date: |
Tue, 4 Jan 2022 23:47:50 +0100 |
* gnu/packages/julia-xyz.scm (julia-stringencodings): New variable.
---
gnu/packages/julia-xyz.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 757030301d..84a6fef3a6 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -4799,6 +4799,38 @@ (define-public julia-stringdistances
applied to any distance.")
(license license:expat)))
+(define-public julia-stringencodings
+ (package
+ (name "julia-stringencodings")
+ (version "0.3.5")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaStrings/StringEncodings.jl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1qwc5ll68ng80b5921ww6fvifxbsmiylakfgsbsjbzg7lzyb5i67"))))
+ (build-system julia-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'skip-failing-test
+ (lambda _
+ ;; https://github.com/JuliaStrings/StringEncodings.jl/issues/49
+ (substitute* "test/runtests.jl"
+ (("\"SHIFT_JIS\", \"SHIFT_JISX0213\"")
+ " ")))))))
+ (propagated-inputs
+ (list julia-libiconv-jll))
+ (home-page "https://github.com/JuliaStrings/StringEncodings.jl")
+ (synopsis "Support for decoding and encoding texts ")
+ (description "This package provides support for decoding and encoding
+texts between multiple character encodings. It is currently based on the
+@code{iconv} interface, and supports all major platforms using GNU libiconv.")
+ (license license:expat)))
+
(define-public julia-structarrays
(package
(name "julia-structarrays")
--
2.33.1
- [bug#53017] [PATCH 07/17] gnu: Add julia-indexablebitvectors., (continued)
- [bug#53017] [PATCH 07/17] gnu: Add julia-indexablebitvectors., zimoun, 2022/01/04
- [bug#53017] [PATCH 08/17] gnu: Add julia-twiddle., zimoun, 2022/01/04
- [bug#53017] [PATCH 09/17] gnu: Add julia-simd., zimoun, 2022/01/04
- [bug#53017] [PATCH 14/17] gnu: Add julia-biosymbols., zimoun, 2022/01/04
- [bug#53017] [PATCH 17/17] gnu: Add julia-bioalignments., zimoun, 2022/01/04
- [bug#53017] [PATCH 04/17] gnu: julia-documentertools: Adjust style., zimoun, 2022/01/04
- [bug#53017] [PATCH 05/17] gnu: julia-documenter: Adjust style., zimoun, 2022/01/04
- [bug#53017] [PATCH 06/17] gnu: Add julia-biogenerics., zimoun, 2022/01/04
- [bug#53017] [PATCH 10/17] gnu: Add julia-scanbyte., zimoun, 2022/01/04
- [bug#53017] [PATCH 11/17] gnu: Add julia-automa., zimoun, 2022/01/04
- [bug#53017] [PATCH 12/17] gnu: Add julia-stringencodings.,
zimoun <=
- [bug#53017] [PATCH 13/17] gnu: Add julia-yaml., zimoun, 2022/01/04
- [bug#53017] [PATCH 16/17] gnu: Add julia-intervaltrees., zimoun, 2022/01/04
- [bug#53017] [PATCH 15/17] gnu: Add julia-biosequences., zimoun, 2022/01/04
- bug#53017: [PATCH 01/17] gnu: julia-xyz: Adjust style., Efraim Flashner, 2022/01/10