From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55108) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhV-0007rd-FB for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyyhQ-0000Jt-Eh for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:13 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36937) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyhQ-0000J6-BE for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:08 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iyyhQ-0008G4-90 for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:08 -0500 Subject: [bug#39416] [PATCH 08/34] gnu: Add package r-snowballc Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:56:00 +0100 Message-Id: <20200204135626.28261-8-ldb@leibniz-psychology.org> In-Reply-To: <20200204135626.28261-1-ldb@leibniz-psychology.org> References: <20200204135626.28261-1-ldb@leibniz-psychology.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 39416@debbugs.gnu.org Cc: Lars-Dominik Braun * gnu/packages/cran.scm (r-snowballc): New variable. --- gnu/packages/cran.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 819aed90e4..235f7d3ab3 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19440,3 +19440,28 @@ analysis and natural language processing.") "An R wrapper to the Python @code{spaCy} NLP library, from .") (license license:gpl3))) + +(define-public r-snowballc + (package + (name "r-snowballc") + (version "0.6.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "SnowballC" version)) + (sha256 + (base32 + "0b7pqdavf5jbf8si4ybnii5fff39p3b1rb5rym05j8s48hs7sqb1")))) + (properties `((upstream-name . "SnowballC"))) + (build-system r-build-system) + (home-page + "https://r-forge.r-project.org/projects/r-temis/") + (synopsis + "Snowball Stemmers Based on the C 'libstemmer' UTF-8 Library") + (description + "An R interface to the C @code{libstemmer} library that implements Porter's +word stemming algorithm for collapsing words to a common root to aid comparison +of vocabulary. Currently supported languages are Danish, Dutch, English, +Finnish, French, German, Hungarian, Italian, Norwegian, Portuguese, Romanian, +Russian, Spanish, Swedish and Turkish.") + (license license:bsd-3))) -- 2.20.1