From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36726) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eoaC6-0005JX-1d for guix-patches@gnu.org; Wed, 21 Feb 2018 14:37:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eoaBQ-0007j0-Ki for guix-patches@gnu.org; Wed, 21 Feb 2018 14:36:45 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:47005) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eoaBQ-0007i0-9W for guix-patches@gnu.org; Wed, 21 Feb 2018 14:36:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eoaBP-0008SU-Tq for guix-patches@gnu.org; Wed, 21 Feb 2018 14:36:03 -0500 Subject: [bug#30570] [PATCH 04/16] gnu: Add r-mapproj. Resent-Message-ID: From: Leo Famulari Date: Wed, 21 Feb 2018 14:35:08 -0500 Message-Id: <868171d4f8c09de6b2f83c02745b597432cb8982.1519241713.git.leo@famulari.name> In-Reply-To: <7597f2a5e819b04be0bd24566b4fcd7950abb5c1.1519241713.git.leo@famulari.name> References: <7597f2a5e819b04be0bd24566b4fcd7950abb5c1.1519241713.git.leo@famulari.name> In-Reply-To: <7597f2a5e819b04be0bd24566b4fcd7950abb5c1.1519241713.git.leo@famulari.name> References: <7597f2a5e819b04be0bd24566b4fcd7950abb5c1.1519241713.git.leo@famulari.name> 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: 30570@debbugs.gnu.org * gnu/packages/geo.scm (r-mapproj): New variable. --- gnu/packages/geo.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 367895018..8e066197d 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -399,3 +399,25 @@ development.") Projection code and larger maps are in separate packages ('mapproj' and 'mapdata').") (license license:gpl2))) + +(define-public r-mapproj + (package + (name "r-mapproj") + (version "1.2-5") + (source + (origin + (method url-fetch) + (uri (cran-uri "mapproj" version)) + (sha256 + (base32 + "0rjz37r4rizk2c6jaf54f0kfb60dqv6b262cnhiwjl55d4x6l0pk")))) + (build-system r-build-system) + (propagated-inputs `(("r-maps" ,r-maps))) + (home-page "https://cran.r-project.org/web/packages/mapproj") + (synopsis "Map projection in R") + (description "This package converts latitude/longitude into projected +coordinates.") + (license (list license:gpl2 ; The R interface + (license:non-copyleft ; The C code + "https://www.gnu.org/licenses/license-list.en.html#lucent102" + "Lucent Public License Version 1.02"))))) -- 2.16.1