From unknown Sat Jun 21 10:42:54 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#55852] [PATCH 1/6] gnu: Add r-spacetime. Resent-From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 08 Jun 2022 16:55:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 55852 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 55852@debbugs.gnu.org Cc: Wiktor =?UTF-8?Q?=C5=BBelazny?= X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.165470729011059 (code B ref -1); Wed, 08 Jun 2022 16:55:01 +0000 Received: (at submit) by debbugs.gnu.org; 8 Jun 2022 16:54:50 +0000 Received: from localhost ([127.0.0.1]:44107 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nyyxG-0002sI-Bo for submit@debbugs.gnu.org; Wed, 08 Jun 2022 12:54:50 -0400 Received: from lists.gnu.org ([209.51.188.17]:41578) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nyyx5-0002s0-Hr for submit@debbugs.gnu.org; Wed, 08 Jun 2022 12:54:48 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:37574) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nyyx5-0005yK-9v for guix-patches@gnu.org; Wed, 08 Jun 2022 12:54:39 -0400 Received: from freeshell.de ([2a01:4f8:231:482b::2]:41172) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nyyx2-0000WF-9E for guix-patches@gnu.org; Wed, 08 Jun 2022 12:54:39 -0400 Received: from localhost.localdomain (cst-prg-15-64.cust.vodafone.cz [46.135.15.64]) (Authenticated sender: wz) by freeshell.de (Postfix) with ESMTPSA id C7FA8B3523B8; Wed, 8 Jun 2022 18:54:28 +0200 (CEST) From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Date: Wed, 8 Jun 2022 18:54:12 +0200 Message-Id: <20220608165412.1807-1-wz@freeshell.de> X-Mailer: git-send-email 2.36.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2a01:4f8:231:482b::2; envelope-from=wz@freeshell.de; helo=freeshell.de X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * gnu/packages/cran.scm (r-spacetime): New variable. --- gnu/packages/cran.scm | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 0299e0041e..6a0bb29c54 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -17,7 +17,7 @@ ;;; Copyright © 2018 Marius Bakke ;;; Copyright © 2018, 2019 Brett Gilio ;;; Copyright © 2019 Nicolò Balzarotti -;;; Copyright © 2019, 2020, 2021 Wiktor Żelazny +;;; Copyright © 2019, 2020, 2021, 2022 Wiktor Żelazny ;;; Copyright © 2019 Arne Babenhauserheide ;;; Copyright © 2019, 2020 Efraim Flashner ;;; Copyright © 2020 Todor Kondić @@ -33361,3 +33361,26 @@ (define-public r-zoeppritz coefficients or scattering amplitudes, for seismological P and S-waves at an interface.") (license license:gpl2+))) + +(define-public r-spacetime + (package + (name "r-spacetime") + (version "1.2-7") + (source (origin + (method url-fetch) + (uri (cran-uri "spacetime" version)) + (sha256 + (base32 + "0zpaib69dbdvgj36x807ci3m5jkyc0hp2j5722xkwvl1faynjlhf")))) + (properties `((upstream-name . "spacetime"))) + (build-system r-build-system) + (propagated-inputs (list r-lattice r-sp r-zoo r-xts r-intervals)) + (home-page "https://github.com/edzer/spacetime/") + (synopsis "Classes and methods for spatio-temporal data") + (description + "@command{spacetime} provides classes and methods for spatio-temporal +data, including space-time regular lattices, sparse lattices, irregular data, +and trajectories; utility functions for plotting data as map sequences (lattice +or animation) or multiple time series; methods for spatial and temporal +matching or aggregation, retrieving coordinates, print, summary, etc.") + (license license:gpl2+))) base-commit: 0c5299200ffcd16370f047b7ccb187c60f30da34 -- 2.36.1 From unknown Sat Jun 21 10:42:54 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#55852] [PATCH 2/6] gnu: Add r-gstat. References: <20220608165412.1807-1-wz@freeshell.de> In-Reply-To: <20220608165412.1807-1-wz@freeshell.de> Resent-From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 08 Jun 2022 17:06:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 55852 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 55852@debbugs.gnu.org Cc: Wiktor =?UTF-8?Q?=C5=BBelazny?= Received: via spool by 55852-submit@debbugs.gnu.org id=B55852.165470795612342 (code B ref 55852); Wed, 08 Jun 2022 17:06:02 +0000 Received: (at 55852) by debbugs.gnu.org; 8 Jun 2022 17:05:56 +0000 Received: from localhost ([127.0.0.1]:44147 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nyz7z-0003D0-PP for submit@debbugs.gnu.org; Wed, 08 Jun 2022 13:05:55 -0400 Received: from freeshell.de ([116.202.128.144]:48578) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nyz7x-0003Ci-CT for 55852@debbugs.gnu.org; Wed, 08 Jun 2022 13:05:53 -0400 Received: from localhost.localdomain (cst-prg-15-64.cust.vodafone.cz [46.135.15.64]) (Authenticated sender: wz) by freeshell.de (Postfix) with ESMTPSA id 51C2CB352584; Wed, 8 Jun 2022 19:05:41 +0200 (CEST) From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Date: Wed, 8 Jun 2022 19:05:12 +0200 Message-Id: <20220608170516.2206-1-wz@freeshell.de> X-Mailer: git-send-email 2.36.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 1.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * gnu/packages/cran.scm (r-gstat): 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 6a0bb29c54..5159c743ee 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -33384,3 +33384,26 @@ (define-public r-spaceti [...] Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 1.3 RCVD_IN_VALIDITY_RPBL RBL: Relay in Validity RPBL, https://senderscore.org/blocklistlookup/ [116.202.128.144 listed in bl.score.senderscore.com] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record -0.0 T_SCC_BODY_TEXT_LINE No description available. X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.3 (/) * gnu/packages/cran.scm (r-gstat): 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 6a0bb29c54..5159c743ee 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -33384,3 +33384,26 @@ (define-public r-spacetime or animation) or multiple time series; methods for spatial and temporal matching or aggregation, retrieving coordinates, print, summary, etc.") (license license:gpl2+))) + +(define-public r-gstat + (package + (name "r-gstat") + (version "2.0-9") + (source (origin + (method url-fetch) + (uri (cran-uri "gstat" version)) + (sha256 + (base32 + "19m4zcj1qvg6gs8yjr5ijvd6rrv4av5yp5rmhnb88f0m5qn06b0j")))) + (properties `((upstream-name . "gstat"))) + (build-system r-build-system) + (propagated-inputs (list r-lattice r-sp r-zoo r-spacetime r-fnn)) + (home-page "https://github.com/r-spatial/gstat/") + (synopsis "Spatial and spatio-temporal geostatistical modelling, +prediction and simulation") + (description + "This package enables variogram modelling, including: simple, ordinary and +universal point or block (co)kriging; spatio-temporal kriging; and sequential +Gaussian or indicator (co)simulation. It includes variogram and variogram map +plotting utility functions, and supports @command{sf} and @command{stars}.") + (license license:gpl2+))) -- 2.36.1 From unknown Sat Jun 21 10:42:54 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#55852] [PATCH 3/6] gnu: Add r-automap. Resent-From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 08 Jun 2022 17:07:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 55852 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 55852@debbugs.gnu.org Cc: Wiktor =?UTF-8?Q?=C5=BBelazny?= Received: via spool by 55852-submit@debbugs.gnu.org id=B55852.165470796612389 (code B ref 55852); Wed, 08 Jun 2022 17:07:01 +0000 Received: (at 55852) by debbugs.gnu.org; 8 Jun 2022 17:06:06 +0000 Received: from localhost ([127.0.0.1]:44151 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nyz89-0003Dl-WD for submit@debbugs.gnu.org; Wed, 08 Jun 2022 13:06:06 -0400 Received: from freeshell.de ([116.202.128.144]:48608) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nyz88-0003DB-9D for 55852@debbugs.gnu.org; Wed, 08 Jun 2022 13:06:04 -0400 Received: from localhost.localdomain (cst-prg-15-64.cust.vodafone.cz [46.135.15.64]) (Authenticated sender: wz) by freeshell.de (Postfix) with ESMTPSA id 39933B352599; Wed, 8 Jun 2022 19:05:45 +0200 (CEST) From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Date: Wed, 8 Jun 2022 19:05:13 +0200 Message-Id: <20220608170516.2206-2-wz@freeshell.de> X-Mailer: git-send-email 2.36.1 In-Reply-To: <20220608170516.2206-1-wz@freeshell.de> References: <20220608170516.2206-1-wz@freeshell.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 1.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * gnu/packages/cran.scm (r-automap): 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 5159c743ee..a8e604c273 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -33407,3 +33407,28 @@ (define-public r-gstat G [...] Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 1.3 RCVD_IN_VALIDITY_RPBL RBL: Relay in Validity RPBL, https://senderscore.org/blocklistlookup/ [116.202.128.144 listed in bl.score.senderscore.com] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record -0.0 T_SCC_BODY_TEXT_LINE No description available. X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.3 (/) * gnu/packages/cran.scm (r-automap): 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 5159c743ee..a8e604c273 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -33407,3 +33407,28 @@ (define-public r-gstat Gaussian or indicator (co)simulation. It includes variogram and variogram map plotting utility functions, and supports @command{sf} and @command{stars}.") (license license:gpl2+))) + +(define-public r-automap + (package + (name "r-automap") + (version "1.0-16") + (source (origin + (method url-fetch) + (uri (cran-uri "automap" version)) + (sha256 + (base32 + "0jz0p28gmx9cpzv4cz0xhbml3w1inf2nsd2ynbhmfxg5rm2f7dca")))) + (properties `((upstream-name . "automap"))) + (build-system r-build-system) + (propagated-inputs (list r-ggplot2 + r-gstat + r-lattice + r-maptools + r-reshape + r-sp)) + (home-page "https://cran.r-project.org/package=automap") + (synopsis "Automatic interpolation package") + (description + "@command{automap} performs an automatic interpolation by automatically +estimating the variogram and then calling @command{gstat}.") + (license (list license:gpl2+ license:gpl3+)))) -- 2.36.1 From unknown Sat Jun 21 10:42:54 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#55852] [PATCH 4/6] gnu: Add r-cartogram. Resent-From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 08 Jun 2022 17:07:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 55852 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 55852@debbugs.gnu.org Cc: Wiktor =?UTF-8?Q?=C5=BBelazny?= Received: via spool by 55852-submit@debbugs.gnu.org id=B55852.165470797812421 (code B ref 55852); Wed, 08 Jun 2022 17:07:01 +0000 Received: (at 55852) by debbugs.gnu.org; 8 Jun 2022 17:06:18 +0000 Received: from localhost ([127.0.0.1]:44154 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nyz8M-0003EH-7S for submit@debbugs.gnu.org; Wed, 08 Jun 2022 13:06:18 -0400 Received: from freeshell.de ([116.202.128.144]:48680) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nyz8K-0003Dz-Ss for 55852@debbugs.gnu.org; Wed, 08 Jun 2022 13:06:17 -0400 Received: from localhost.localdomain (cst-prg-15-64.cust.vodafone.cz [46.135.15.64]) (Authenticated sender: wz) by freeshell.de (Postfix) with ESMTPSA id 54B4DB35259C; Wed, 8 Jun 2022 19:05:47 +0200 (CEST) From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Date: Wed, 8 Jun 2022 19:05:14 +0200 Message-Id: <20220608170516.2206-3-wz@freeshell.de> X-Mailer: git-send-email 2.36.1 In-Reply-To: <20220608170516.2206-1-wz@freeshell.de> References: <20220608170516.2206-1-wz@freeshell.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 1.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * gnu/packages/cran.scm (r-cartogram): New variable. --- gnu/packages/cran.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index a8e604c273..6ffa9137a7 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -33432, 3 +33432, 22 @@ (define-public r-automap [...] Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 1.3 RCVD_IN_VALIDITY_RPBL RBL: Relay in Validity RPBL, https://senderscore.org/blocklistlookup/ [116.202.128.144 listed in bl.score.senderscore.com] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record -0.0 T_SCC_BODY_TEXT_LINE No description available. X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.3 (/) * gnu/packages/cran.scm (r-cartogram): New variable. --- gnu/packages/cran.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index a8e604c273..6ffa9137a7 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -33432,3 +33432,22 @@ (define-public r-automap "@command{automap} performs an automatic interpolation by automatically estimating the variogram and then calling @command{gstat}.") (license (list license:gpl2+ license:gpl3+)))) + +(define-public r-cartogram + (package + (name "r-cartogram") + (version "0.2.2") + (source (origin + (method url-fetch) + (uri (cran-uri "cartogram" version)) + (sha256 + (base32 + "0kz8hwdr5n8llkylwaixnb66f4pzaxxniz57spxhqizmi6qay7yd")))) + (properties `((upstream-name . "cartogram"))) + (build-system r-build-system) + (propagated-inputs (list r-packcircles r-sf)) + (home-page "https://github.com/sjewo/cartogram/") + (synopsis "Create cartograms with R") + (description "This package enables construction of continuous and +non-contiguous area cartograms.") + (license license:gpl3))) -- 2.36.1 From unknown Sat Jun 21 10:42:54 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#55852] [PATCH 5/6] gnu: Add r-measurements. Resent-From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 08 Jun 2022 17:07:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 55852 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 55852@debbugs.gnu.org Cc: Wiktor =?UTF-8?Q?=C5=BBelazny?= Received: via spool by 55852-submit@debbugs.gnu.org id=B55852.165470798912447 (code B ref 55852); Wed, 08 Jun 2022 17:07:02 +0000 Received: (at 55852) by debbugs.gnu.org; 8 Jun 2022 17:06:29 +0000 Received: from localhost ([127.0.0.1]:44157 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nyz8X-0003Eh-Ei for submit@debbugs.gnu.org; Wed, 08 Jun 2022 13:06:29 -0400 Received: from freeshell.de ([116.202.128.144]:48746) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nyz8V-0003EV-K4 for 55852@debbugs.gnu.org; Wed, 08 Jun 2022 13:06:28 -0400 Received: from localhost.localdomain (cst-prg-15-64.cust.vodafone.cz [46.135.15.64]) (Authenticated sender: wz) by freeshell.de (Postfix) with ESMTPSA id 1055EB3525A0; Wed, 8 Jun 2022 19:05:48 +0200 (CEST) From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Date: Wed, 8 Jun 2022 19:05:15 +0200 Message-Id: <20220608170516.2206-4-wz@freeshell.de> X-Mailer: git-send-email 2.36.1 In-Reply-To: <20220608170516.2206-1-wz@freeshell.de> References: <20220608170516.2206-1-wz@freeshell.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 1.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * gnu/packages/cran.scm (r-measurements): New variable. --- gnu/packages/cran.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 6ffa9137a7..8445aee0b5 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -33451,3 +33451,23 @@ (define-public r-cartogr [...] Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 1.3 RCVD_IN_VALIDITY_RPBL RBL: Relay in Validity RPBL, https://senderscore.org/blocklistlookup/ [116.202.128.144 listed in bl.score.senderscore.com] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record -0.0 T_SCC_BODY_TEXT_LINE No description available. X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.3 (/) * gnu/packages/cran.scm (r-measurements): New variable. --- gnu/packages/cran.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 6ffa9137a7..8445aee0b5 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -33451,3 +33451,23 @@ (define-public r-cartogram (description "This package enables construction of continuous and non-contiguous area cartograms.") (license license:gpl3))) + +(define-public r-measurements + (package + (name "r-measurements") + (version "1.4.0") + (source (origin + (method url-fetch) + (uri (cran-uri "measurements" version)) + (sha256 + (base32 + "1kihavs9vgxwqjm9z1zjjngkmcwfsv8dg7nn9nrv5r06k5hv8bz6")))) + (properties `((upstream-name . "measurements"))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/web/packages/measurements/") + (synopsis "Tools for units of measurement") + (description + "This package provides a collection of tools to make working with physical +measurements easier. One can convert between metric and imperial units, or +calculate a dimension's unknown value from other dimensions' measurements.") + (license license:gpl3))) -- 2.36.1 From unknown Sat Jun 21 10:42:54 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#55852] [PATCH 6/6] gnu: Add r-sungeo. Resent-From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 08 Jun 2022 17:07:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 55852 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 55852@debbugs.gnu.org Cc: Wiktor =?UTF-8?Q?=C5=BBelazny?= Received: via spool by 55852-submit@debbugs.gnu.org id=B55852.165470800112475 (code B ref 55852); Wed, 08 Jun 2022 17:07:02 +0000 Received: (at 55852) by debbugs.gnu.org; 8 Jun 2022 17:06:41 +0000 Received: from localhost ([127.0.0.1]:44160 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nyz8i-0003F9-Mr for submit@debbugs.gnu.org; Wed, 08 Jun 2022 13:06:40 -0400 Received: from freeshell.de ([116.202.128.144]:48788) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nyz8g-0003Ev-OE for 55852@debbugs.gnu.org; Wed, 08 Jun 2022 13:06:39 -0400 Received: from localhost.localdomain (cst-prg-15-64.cust.vodafone.cz [46.135.15.64]) (Authenticated sender: wz) by freeshell.de (Postfix) with ESMTPSA id 960DFB3525A6; Wed, 8 Jun 2022 19:05:50 +0200 (CEST) From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Date: Wed, 8 Jun 2022 19:05:16 +0200 Message-Id: <20220608170516.2206-5-wz@freeshell.de> X-Mailer: git-send-email 2.36.1 In-Reply-To: <20220608170516.2206-1-wz@freeshell.de> References: <20220608170516.2206-1-wz@freeshell.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Score: 1.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * gnu/packages/cran.scm (r-sungeo): New variable. --- gnu/packages/cran.scm | 49 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 8445aee0b5..ab913cef6c 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -33471,3 +33471,52 @@ (define-public r-measure [...] Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 1.3 RCVD_IN_VALIDITY_RPBL RBL: Relay in Validity RPBL, https://senderscore.org/blocklistlookup/ [116.202.128.144 listed in bl.score.senderscore.com] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record -0.0 T_SCC_BODY_TEXT_LINE No description available. X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.3 (/) * gnu/packages/cran.scm (r-sungeo): New variable. --- gnu/packages/cran.scm | 49 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 8445aee0b5..ab913cef6c 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -33471,3 +33471,52 @@ (define-public r-measurements measurements easier. One can convert between metric and imperial units, or calculate a dimension's unknown value from other dimensions' measurements.") (license license:gpl3))) + +(define-public r-sungeo + (package + (name "r-sungeo") + (version "0.2.288") + (source (origin + (method url-fetch) + (uri (cran-uri "SUNGEO" version)) + (sha256 + (base32 + "0c8y0ngx1020rw2v00rxmq8syd72f41ckik5sg7gigg7d80gi31w")) + (modules '((guix build utils))) + (snippet '(begin + ;; Fortunately, the package does not actually use + ;; rmapshaper, which has got a js/node dependency. + ;; The only occurrence is in R/point2poly_tess.R, + ;; where it is commented out. + (substitute* "DESCRIPTION" + (("rmapshaper,") "")) + (substitute* "NAMESPACE" + (("importFrom\\(rmapshaper,ms_dissolve\\) +") "")) + #t)))) + (properties `((upstream-name . "SUNGEO"))) + (build-system r-build-system) + (propagated-inputs (list r-automap + r-cartogram + r-data-table + r-dplyr + r-fasterize + r-httr + r-jsonlite + r-measurements + r-packcircles + r-purrr + r-rann + r-raster + r-rcpp + r-rcurl + r-rlang + r-sf + r-sp + r-spdep)) + (home-page "https://github.com/zhukovyuri/SUNGEO/") + (synopsis "Sub-National Geospatial Data Archive: Geoprocessing Toolkit") + (description + "Tools for integrating spatially-misaligned GIS datasets. Part of the +Sub-National Geospatial Data Archive System.") + (license license:gpl2))) -- 2.36.1 From unknown Sat Jun 21 10:42:54 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Wiktor =?UTF-8?Q?=C5=BBelazny?= Subject: bug#55852: closed ([PATCH 1/6] gnu: Add r-spacetime.) Message-ID: References: <87o7y96wvx.fsf@elephly.net> <20220608165412.1807-1-wz@freeshell.de> X-Gnu-PR-Message: they-closed 55852 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 55852@debbugs.gnu.org Date: Fri, 01 Jul 2022 08:50:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1656665402-7699-1" This is a multi-part message in MIME format... ------------=_1656665402-7699-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #55852: [PATCH 1/6] gnu: Add r-spacetime. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 55852@debbugs.gnu.org. --=20 55852: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D55852 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1656665402-7699-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 55852-done) by debbugs.gnu.org; 1 Jul 2022 08:49:17 +0000 Received: from localhost ([127.0.0.1]:36231 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o7CKz-0001yZ-45 for submit@debbugs.gnu.org; Fri, 01 Jul 2022 04:49:17 -0400 Received: from sender4-of-o51.zoho.com ([136.143.188.51]:21183) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1o7CKw-0001yL-Uj for 55852-done@debbugs.gnu.org; Fri, 01 Jul 2022 04:49:16 -0400 ARC-Seal: i=1; a=rsa-sha256; t=1656665352; cv=none; d=zohomail.com; s=zohoarc; b=CR1aoi5hy/G2z5XnuLXQf5uKjKZaibU3Auhg/Ud2GkRloMTpMuwPxOgaeA791pQm4FnsDaxrE4JwRlGdwHFkox7I4yv1BWp0+4ADWnRcfjB68JiWZZ3eQF/QGKbYzB6eaO+30j/DV1pdWTkemusOmCLl1Y4kaeH5oumPjHmQgvw= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1656665352; h=Content-Type:Content-Transfer-Encoding:Date:From:MIME-Version:Message-ID:Subject:To; bh=q9hwy0c3Jw2ThEjkIev2RHxHvS2br7TcdAYKApA9uf0=; b=cA/rNZVUfnbW/VLv4yNArPfLNYO2OtDfEz9A595QRLegI/h+cWylnCEblkTJ9FF6r3e3e3tSBG5aZAsVauxVm2wy/zj+8LRuKvD9Uj2fMe3QscpUozo+x3I9RCaH9edFhCfN9CxE65KguRqVJBCA5chBQChmFKCswPfaOKa/Qlo= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass header.i=elephly.net; spf=pass smtp.mailfrom=rekado@elephly.net; dmarc=pass header.from= DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1656665352; s=zoho; d=elephly.net; i=rekado@elephly.net; h=From:From:To:To:Subject:Subject:Date:Date:Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-Id:Reply-To:Cc; bh=q9hwy0c3Jw2ThEjkIev2RHxHvS2br7TcdAYKApA9uf0=; b=TI2cBxmkDOKO5Ipxku5FjhCsIQIne731HmffJ4eY2QIsEcm3Tr9hFpuoB6B5dt3i KJWYwIx9uyMWCCL7k09U6v9CqzKRrs7ouHck7SHzpmSlR/jkR2ugXbA8KrjotFefTpJ sg2YB2VQ/lmDDdt/KWhbzID+YNOhz8u/TpjYmN+g= Received: from localhost (72-109-142-46.pool.kielnet.net [46.142.109.72]) by mx.zohomail.com with SMTPS id 165666534962532.60036176812048; Fri, 1 Jul 2022 01:49:09 -0700 (PDT) User-agent: mu4e 1.6.11; emacs 28.1 From: Ricardo Wurmus To: 55852-done@debbugs.gnu.org Subject: [PATCH 1/6] gnu: Add r-spacetime. Date: Fri, 01 Jul 2022 10:38:55 +0200 X-URL: https://elephly.net X-PGP-Key: https://elephly.net/rekado.pubkey X-PGP-Fingerprint: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC Message-ID: <87o7y96wvx.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-ZohoMailClient: External X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 55852-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi Wiktor, thank you for your patches! I did not notice them on issues.guix.gnu.org, hence the late response. You=E2=80=99re very welcome to add the =E2=80=9CX-Debbugs-Cc: rekado@elephl= y.net=E2=80=9D header to Cc me on future submissions. I=E2=80=99ll make reviewing your patches a priority. I=E2=80=99ve applied the patch set and pushed it to the master branch. Thanks again! --=20 Ricardo ------------=_1656665402-7699-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 8 Jun 2022 16:54:50 +0000 Received: from localhost ([127.0.0.1]:44107 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nyyxG-0002sI-Bo for submit@debbugs.gnu.org; Wed, 08 Jun 2022 12:54:50 -0400 Received: from lists.gnu.org ([209.51.188.17]:41578) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nyyx5-0002s0-Hr for submit@debbugs.gnu.org; Wed, 08 Jun 2022 12:54:48 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:37574) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nyyx5-0005yK-9v for guix-patches@gnu.org; Wed, 08 Jun 2022 12:54:39 -0400 Received: from freeshell.de ([2a01:4f8:231:482b::2]:41172) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nyyx2-0000WF-9E for guix-patches@gnu.org; Wed, 08 Jun 2022 12:54:39 -0400 Received: from localhost.localdomain (cst-prg-15-64.cust.vodafone.cz [46.135.15.64]) (Authenticated sender: wz) by freeshell.de (Postfix) with ESMTPSA id C7FA8B3523B8; Wed, 8 Jun 2022 18:54:28 +0200 (CEST) From: =?UTF-8?q?Wiktor=20=C5=BBelazny?= To: guix-patches@gnu.org Subject: [PATCH 1/6] gnu: Add r-spacetime. Date: Wed, 8 Jun 2022 18:54:12 +0200 Message-Id: <20220608165412.1807-1-wz@freeshell.de> X-Mailer: git-send-email 2.36.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=2a01:4f8:231:482b::2; envelope-from=wz@freeshell.de; helo=freeshell.de X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit Cc: =?UTF-8?q?Wiktor=20=C5=BBelazny?= X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) * gnu/packages/cran.scm (r-spacetime): New variable. --- gnu/packages/cran.scm | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 0299e0041e..6a0bb29c54 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -17,7 +17,7 @@ ;;; Copyright © 2018 Marius Bakke ;;; Copyright © 2018, 2019 Brett Gilio ;;; Copyright © 2019 Nicolò Balzarotti -;;; Copyright © 2019, 2020, 2021 Wiktor Żelazny +;;; Copyright © 2019, 2020, 2021, 2022 Wiktor Żelazny ;;; Copyright © 2019 Arne Babenhauserheide ;;; Copyright © 2019, 2020 Efraim Flashner ;;; Copyright © 2020 Todor Kondić @@ -33361,3 +33361,26 @@ (define-public r-zoeppritz coefficients or scattering amplitudes, for seismological P and S-waves at an interface.") (license license:gpl2+))) + +(define-public r-spacetime + (package + (name "r-spacetime") + (version "1.2-7") + (source (origin + (method url-fetch) + (uri (cran-uri "spacetime" version)) + (sha256 + (base32 + "0zpaib69dbdvgj36x807ci3m5jkyc0hp2j5722xkwvl1faynjlhf")))) + (properties `((upstream-name . "spacetime"))) + (build-system r-build-system) + (propagated-inputs (list r-lattice r-sp r-zoo r-xts r-intervals)) + (home-page "https://github.com/edzer/spacetime/") + (synopsis "Classes and methods for spatio-temporal data") + (description + "@command{spacetime} provides classes and methods for spatio-temporal +data, including space-time regular lattices, sparse lattices, irregular data, +and trajectories; utility functions for plotting data as map sequences (lattice +or animation) or multiple time series; methods for spatial and temporal +matching or aggregation, retrieving coordinates, print, summary, etc.") + (license license:gpl2+))) base-commit: 0c5299200ffcd16370f047b7ccb187c60f30da34 -- 2.36.1 ------------=_1656665402-7699-1--