From 206e46a67f7a3993084d7b61158d4ba323b18ceb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Barth=C3=A9lemy?= Date: Mon, 14 Mar 2016 20:28:46 +0100 Subject: [PATCH 09/23] gnu: Add perl-encode-eucjpascii. * gnu/packages/perl.scm (perl-encode-eucjpascii): New variable. --- gnu/packages/perl.scm | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 1d5d185..56153ca 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -2145,6 +2145,45 @@ SHA-1 message digest algorithm for use by Perl programs.") modules separately and deal with them after the module is done installing.") (license (package-license perl)))) +(define-public perl-encode-eucjpascii + (package + (name "perl-encode-eucjpascii") + (version "0.03") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/N/NE/NEZUMI/" + "Encode-EUCJPASCII-" version ".tar.gz")) + (sha256 + (base32 + "0qg8kmi7r9jcf8326b4fyq5sdpqyim2a11h7j77q577xam6x767r")))) + (home-page "http://hatuka.nezumi.nu/repos/Encode-EUCJPASCII/") + (build-system perl-build-system) + (synopsis "Perl eucJP-open mapping") + (description "This module provides an eucJP-open mapping.") + (license (package-license perl)))) + +(define-public perl-encode-hanextra + (package + (name "perl-encode-hanextra") + (version "0.23") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/A/AU/AUDREYT/" + "Encode-HanExtra-" version ".tar.gz")) + (sha256 + (base32 + "0fj4vd8iva2i0j6s2fyhwgr9afrvhr6gjlzi7805h257mmnb1m0z")))) + (home-page "http://search.cpan.org/~audreyt/Encode-HanExtra-0.23/") + (build-system perl-build-system) + (synopsis "Extra sets of Chinese encodings") + (description "Perl ships with an adequate set of Chinese encodings, but +the numbers of Chinese encodings are staggering, and a complete coverage will +easily increase the size of perl distribution by several megabytes. This +module tries to provide the rest of them.") + (license x11))) + (define-public perl-error (package (name "perl-error") -- 2.6.3