From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:56718) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gp650-0001sS-DE for guix-patches@gnu.org; Thu, 31 Jan 2019 01:44:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gp64y-0007gJ-8t for guix-patches@gnu.org; Thu, 31 Jan 2019 01:44:06 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:52836) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gp64w-0007fV-KN for guix-patches@gnu.org; Thu, 31 Jan 2019 01:44:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gp64w-00062j-Bw for guix-patches@gnu.org; Thu, 31 Jan 2019 01:44:02 -0500 Subject: [bug#34262] [PATCH]Add: nkf Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:56648) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gp64c-0001kX-DJ for guix-patches@gnu.org; Thu, 31 Jan 2019 01:43:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gp64a-0007Qu-Lz for guix-patches@gnu.org; Thu, 31 Jan 2019 01:43:42 -0500 Received: from mail-pg1-x529.google.com ([2607:f8b0:4864:20::529]:33739) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gp64Y-0007Jv-Qa for guix-patches@gnu.org; Thu, 31 Jan 2019 01:43:39 -0500 Received: by mail-pg1-x529.google.com with SMTP id z11so973418pgu.0 for ; Wed, 30 Jan 2019 22:43:31 -0800 (PST) Received: from localhost ([2409:11:4a40:3600:afd4:3247:4a32:242a]) by smtp.gmail.com with ESMTPSA id c7sm8744464pfh.18.2019.01.30.22.43.27 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Wed, 30 Jan 2019 22:43:28 -0800 (PST) Date: Thu, 31 Jan 2019 15:43:26 +0900 From: Yoshinori Arai Message-ID: <20190131064326.ndndwqf23yirdoup@WaraToNora> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 34262@debbugs.gnu.org 1 file changed, 38 insertions(+) gnu/packages/textutils.scm | 38 ++++++++++++++++++++++++++++++++++++++ modified gnu/packages/textutils.scm @@ -794,3 +794,41 @@ Chinese and Simplified Chinese, supporting character-level conversion, phrase-level conversion, variant conversion, and regional idioms among Mainland China, Taiwan, and Hong-Kong.") (license license:asl2.0))) + +(define-public nkf + (let ((commit "08043eadf4abdddcf277842217e3c77a24740dc2") + (revision "1")) + (package + (name "nkf") + (version "2.1.5") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/nurse/nkf.git") + (commit commit))) + (file-name (string-append name version)) + (sha256 + (base32 + "0anw0knr1iy4p9w3d3b3pbwzh1c43p1i2q4c28kw9zviw8kx2rly")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; test for perl module + #:make-flags (list "CC=gcc" "CFLAGS=-O2 -Wall -pedantic" + (string-append "prefix=" %output)) + #:phases + (modify-phases %standard-phases + (delete 'configure) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (bin (string-append out "/bin")) + (man1 (string-append out "/share/man/man1")) + (man1j (string-append out "/share/man/ja/man1"))) + (install-file "nkf" bin) + (install-file "nkf.1" man1) + (install-file "nkf.1j" man1j) + #t)))))) + (home-page "https://ja.osdn.net/projects/nkf/") + (synopsis "Network Kanji Filter") + (description "Nkf is a yet another kanji code converter among networks, hosts and terminals. It converts input kanji code to designated kanji code such as ISO-2022-JP, Shift_JIS, EUC-JP, UTF-8, UTF-16 or UTF-32.") + (license license:zlib))))