guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#33203] [patch] Rime Input Method Engine


From: Ludovic Courtès
Subject: [bug#33203] [patch] Rime Input Method Engine
Date: Sat, 10 Nov 2018 21:55:43 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux)

Hi Meiyo,

Thanks for this patch series!

Meiyo Peng <address@hidden> skribis:

> From 0435a5d28299f1355eb6ac8d9e7f4520756e179d Mon Sep 17 00:00:00 2001
> From: Meiyo Peng <address@hidden>
> Date: Mon, 29 Oct 2018 11:17:50 +0800
> Subject: [PATCH 1/6] gnu: Add marisa.
>
> * gnu/packages/datastructures.scm (marisa): New variable.

Applied with the changes below.  Thanks!

(Looking at the other patches now…)

Ludo’.

diff --git a/gnu/packages/datastructures.scm b/gnu/packages/datastructures.scm
index e021cc6a6c..4e5e59a2e3 100644
--- a/gnu/packages/datastructures.scm
+++ b/gnu/packages/datastructures.scm
@@ -21,7 +21,6 @@
 (define-module (gnu packages datastructures)
   #:use-module (gnu packages)
   #:use-module (gnu packages perl)
-  #:use-module (gnu packages autotools)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (guix download)
@@ -63,20 +62,14 @@ and heaps.")
        (sha256
         (base32 "19ifrcmnbr9whaaf4ly3s9ndyiq9sjqhnfkrxbz9zsb44w2n36hf"))))
     (build-system gnu-build-system)
-    (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (add-before 'configure 'autoreconf
-           (lambda _
-             (invoke "autoreconf" "-i"))))))
-    (native-inputs
-     `(("autoconf" ,autoconf)
-       ("automake" ,automake)
-       ("libtool" ,libtool)))
     (home-page "https://github.com/s-yata/marisa-trie";)
-    (synopsis "Matching Algorithm with Recursively Implemented StorAge")
+    (synopsis "Trie data structure C++ library")
     (description "Matching Algorithm with Recursively Implemented
-StorAge (MARISA) is a static and space-efficient trie data structure.")
+StorAge (MARISA) is a static and space-efficient trie data structure C++
+library.")
+
+    ;; Dual-licensed, according to docs/readme.en.html (source files lack
+    ;; copyright/license headers.)
     (license (list license:bsd-2 license:lgpl2.1+))))
 
 (define-public sparsehash

reply via email to

[Prev in Thread] Current Thread [Next in Thread]