unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#58570] [PATCH] gnu: Add skk-jisyo.
@ 2022-10-16  9:01 ROCKTAKEY
  2022-10-18 10:21 ` bug#58570: " Christopher Baines
  0 siblings, 1 reply; 2+ messages in thread
From: ROCKTAKEY @ 2022-10-16  9:01 UTC (permalink / raw)
  To: 58570; +Cc: ROCKTAKEY

* gnu/packages/dictionaries.scm (skk-jisyo): New variable.
---
 gnu/packages/dictionaries.scm | 39 +++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/dictionaries.scm b/gnu/packages/dictionaries.scm
index fa9a78fe80..7024937672 100644
--- a/gnu/packages/dictionaries.scm
+++ b/gnu/packages/dictionaries.scm
@@ -8,6 +8,7 @@
 ;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
 ;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com>
 ;;; Copyright © 2020 Lu hux <luhux@outlook.com>
+;;; Copyright © 2022 ROCKTAKEY <rocktakey@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -429,3 +430,41 @@ (define-public sdcv
     (description "sdcv is simple text-based utility for work with dictionaries
 in StarDict's format.")
     (license license:gpl2+)))
+
+(define-public skk-jisyo
+  (let ((commit "38c81dbc74cdbdead843364023dea837f239a48c")
+        (revision "0"))
+    (package
+      (name "skk-jisyo")
+      (version (git-version "0" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/skk-dev/dict")
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "121j73bgd7fvj7zvaidqvgzfdvimig3f0vsyfv4vndwfgskh2r7z"))))
+      (build-system copy-build-system)
+      (arguments
+       '(#:install-plan '(("./" "share/skk"
+                           #:include-regexp ("SKK-JISYO\\.*")
+                           #:exclude-regexp ("\\.gz$" "\\.md5$")
+                           #:exclude ("SKK-JISYO.pubdic+"
+                                      "SKK-JISYO.wrong.annotated"
+                                      "SKK-JISYO.wrong")))
+         #:phases (modify-phases %standard-phases
+                    (add-before 'install 'decompress
+                      (lambda* (#:key outputs #:allow-other-keys)
+                        (map (lambda (arg)
+                               (invoke "gzip" "-v" "-d" arg))
+                             (find-files "." "SKK-JISYO\\..*\\.gz$"))
+                        (invoke "tar" "xvf" "zipcode.tar.gz"))))))
+      (home-page "https://skk-dev.github.io/dict/")
+      (synopsis "Jisyo (dictionary) files for the SKK Japanese-input software")
+      (description
+       "This package provides @file{SKK-JISYO.L}, the standard dictionary file
+for SKK Japanese input systems, and various dictionary files.
+@file{SKK-JISYO.L} can be used with @code{emacs-ddskk} or @code{uim} package.")
+      (license license:gpl2+))))

base-commit: d923cf1deac0b6762345d0d9e53822cbcb899365
-- 
2.37.3





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#58570: [PATCH] gnu: Add skk-jisyo.
  2022-10-16  9:01 [bug#58570] [PATCH] gnu: Add skk-jisyo ROCKTAKEY
@ 2022-10-18 10:21 ` Christopher Baines
  0 siblings, 0 replies; 2+ messages in thread
From: Christopher Baines @ 2022-10-18 10:21 UTC (permalink / raw)
  To: ROCKTAKEY; +Cc: 58570-done

[-- Attachment #1: Type: text/plain, Size: 311 bytes --]


ROCKTAKEY <rocktakey@gmail.com> writes:

> * gnu/packages/dictionaries.scm (skk-jisyo): New variable.
> ---
>  gnu/packages/dictionaries.scm | 39 +++++++++++++++++++++++++++++++++++
>  1 file changed, 39 insertions(+)

Thanks for the patch! Pushed to master as
c844489350570bae30442b6d264339029bee4f0f.

Chris

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-10-18 10:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-16  9:01 [bug#58570] [PATCH] gnu: Add skk-jisyo ROCKTAKEY
2022-10-18 10:21 ` bug#58570: " Christopher Baines

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).