From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:54921) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhO-0007hR-KS for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyyhN-00009i-G8 for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:06 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36922) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyhN-00009C-Ch for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:05 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iyyhN-0008Es-BB for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:05 -0500 Subject: [bug#39416] [PATCH 05/34] gnu: Add package r-isocodes Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:55:57 +0100 Message-Id: <20200204135626.28261-5-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-isocodes): New variable. --- gnu/packages/cran.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 9028ff310f..4bd3be3d0b 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19372,3 +19372,26 @@ and Intel TBB libraries. Among several built-in similarity/distance measures, computation of correlation, cosine similarity and Euclidean distance is particularly fast.") (license license:gpl3))) + +(define-public r-isocodes + (package + (name "r-isocodes") + (version "2019.12.22") + (source + (origin + (method url-fetch) + (uri (cran-uri "ISOcodes" version)) + (sha256 + (base32 + "1k2f2258bwzs0b3nxma9kcw395qkljvk514a7047rx4dn0iwd874")))) + (properties `((upstream-name . "ISOcodes"))) + (build-system r-build-system) + (home-page + "https://cran.r-project.org/package=ISOcodes") + (synopsis "Selected ISO Codes") + (description + "ISO language, territory, currency, script and character codes. Provides +ISO 639 language codes, ISO 3166 territory codes, ISO 4217 currency codes, ISO +15924 script codes, and the ISO 8859 character codes as well as the UN M.49 +area codes.") + (license license:gpl2))) -- 2.20.1