From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56157) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gLaQl-00053I-IU for guix-patches@gnu.org; Sat, 10 Nov 2018 16:04:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gLaIV-00053z-BA for guix-patches@gnu.org; Sat, 10 Nov 2018 15:56:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:40771) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gLaIT-0004zB-Vx for guix-patches@gnu.org; Sat, 10 Nov 2018 15:56:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gLaIT-0003Jk-QE for guix-patches@gnu.org; Sat, 10 Nov 2018 15:56:01 -0500 Subject: [bug#33203] [patch] Rime Input Method Engine Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <875zxispks.fsf@gmail.com> <874ld0stmw.fsf@gmail.com> Date: Sat, 10 Nov 2018 21:55:43 +0100 In-Reply-To: <874ld0stmw.fsf@gmail.com> (Meiyo Peng's message of "Thu, 01 Nov 2018 23:29:59 +0800") Message-ID: <87ftw8y7n4.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: Meiyo Peng Cc: 33203@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Meiyo, Thanks for this patch series! Meiyo Peng skribis: > From 0435a5d28299f1355eb6ac8d9e7f4520756e179d Mon Sep 17 00:00:00 2001 > From: Meiyo Peng > 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=E2=80=A6) Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline 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 --=-=-=--