GNU bug report logs - #57401
[PATCH 1/3] gnu: Add r-mapdata.

Previous Next

Package: guix-patches;

Reported by: Wiktor Żelazny <wz <at> freeshell.de>

Date: Thu, 25 Aug 2022 09:46:02 UTC

Severity: normal

Tags: patch

Done: Ricardo Wurmus <rekado <at> elephly.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 57401 in the body.
You can then email your comments to 57401 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#57401; Package guix-patches. (Thu, 25 Aug 2022 09:46:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Wiktor Żelazny <wz <at> freeshell.de>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 25 Aug 2022 09:46:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Wiktor Żelazny <wz <at> freeshell.de>
To: guix-patches <at> gnu.org
Cc: Wiktor Żelazny <wzelazny <at> vurv.cz>
Subject: [PATCH 1/3] gnu: Add r-mapdata.
Date: Thu, 25 Aug 2022 11:44:52 +0200
From: Wiktor Żelazny <wzelazny <at> vurv.cz>

* gnu/packages/cran.scm (r-mapdata): 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 ed541dd720..8a2302fca6 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -34431,3 +34431,23 @@ (define-public r-sungeo
      "Tools for integrating spatially-misaligned GIS datasets.  Part of the
 Sub-National Geospatial Data Archive System.")
     (license license:gpl2)))
+
+(define-public r-mapdata
+  (package
+    (name "r-mapdata")
+    (version "2.3.0")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "mapdata" version))
+              (sha256
+               (base32
+                "0xnxh73rgcq55zrw81a2bq8yd67bxc2rafp4shf6nyrqj04iip0y"))))
+    (properties `((upstream-name . "mapdata")))
+    (build-system r-build-system)
+    (propagated-inputs (list r-maps))
+    (home-page "https://cran.r-project.org/package=mapdata")
+    (synopsis "Extra Map Databases")
+    (description
+     "This is a supplement to the @code{maps} package providing the larger
+and/or higher-resolution databases.")
+    (license license:gpl2)))

base-commit: 98457ba47be4e8fc48a5d6256787c7a8dbd82b31
-- 
2.37.2





Information forwarded to guix-patches <at> gnu.org:
bug#57401; Package guix-patches. (Thu, 25 Aug 2022 10:11:01 GMT) Full text and rfc822 format available.

Message #8 received at 57401 <at> debbugs.gnu.org (full text, mbox):

From: Wiktor Żelazny <wz <at> freeshell.de>
To: 57401 <at> debbugs.gnu.org
Cc: Wiktor Żelazny <wzelazny <at> vurv.cz>
Subject: [PATCH 2/3] gnu: Add r-climatol.
Date: Thu, 25 Aug 2022 12:09:53 +0200
From: Wiktor Żelazny <wzelazny <at> vurv.cz>

* gnu/packages/cran.scm (r-climatol): New variable.
---
 gnu/packages/cran.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 8a2302fca6..f8e62083e0 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -34451,3 +34451,25 @@ (define-public r-mapdata
      "This is a supplement to the @code{maps} package providing the larger
 and/or higher-resolution databases.")
     (license license:gpl2)))
+
+(define-public r-climatol
+  (package
+    (name "r-climatol")
+    (version "3.1.2")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "climatol" version))
+              (sha256
+               (base32
+                "0p3nk4n7izj0cmmqd9apa1gix5lfdzp08ydy0n7rkl5kbkmrkb6n"))))
+    (properties `((upstream-name . "climatol")))
+    (build-system r-build-system)
+    (propagated-inputs (list r-mapdata r-maps))
+    (home-page "http://www.climatol.eu/")
+    (synopsis "Climate Tools")
+    (description
+     "This package provides functions for the quality control, homogenization and
+missing data infilling of climatological series, and to obtain climatological
+summaries and grids from the results.  Also functions to draw wind-roses and
+Walter&Lieth climate diagrams are included.")
+    (license license:gpl2+)))
-- 
2.37.2





Information forwarded to guix-patches <at> gnu.org:
bug#57401; Package guix-patches. (Thu, 25 Aug 2022 10:11:02 GMT) Full text and rfc822 format available.

Message #11 received at 57401 <at> debbugs.gnu.org (full text, mbox):

From: Wiktor Żelazny <wz <at> freeshell.de>
To: 57401 <at> debbugs.gnu.org
Cc: Wiktor Żelazny <wzelazny <at> vurv.cz>
Subject: [PATCH 3/3] gnu: Add r-climaemet.
Date: Thu, 25 Aug 2022 12:09:54 +0200
From: Wiktor Żelazny <wzelazny <at> vurv.cz>

* gnu/packages/cran.scm (r-climaemet): New variable.
---
 gnu/packages/cran.scm | 34 +++++++++++++++++++++++++++++++++-
 1 file changed, 33 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index f8e62083e0..d93a3c7e2f 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -17,7 +17,7 @@
 ;;; Copyright © 2018 Marius Bakke <mbakke <at> fastmail.com>
 ;;; Copyright © 2018, 2019 Brett Gilio <brettg <at> gnu.org>
 ;;; Copyright © 2019 Nicolò Balzarotti <anothersms <at> gmail.com>
-;;; Copyright © 2019, 2020, 2021 Wiktor Żelazny <wzelazny <at> vurv.cz>
+;;; Copyright © 2019, 2020, 2021, 2022 Wiktor Żelazny <wzelazny <at> vurv.cz>
 ;;; Copyright © 2019 Arne Babenhauserheide <arne_bab <at> web.de>
 ;;; Copyright © 2019, 2020 Efraim Flashner <efraim <at> flashner.co.il>
 ;;; Copyright © 2020 Todor Kondić <tk.code <at> protonmail.com>
@@ -34473,3 +34473,35 @@ (define-public r-climatol
 summaries and grids from the results.  Also functions to draw wind-roses and
 Walter&Lieth climate diagrams are included.")
     (license license:gpl2+)))
+
+(define-public r-climaemet
+  (package
+    (name "r-climaemet")
+    (version "1.0.2")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "climaemet" version))
+              (sha256
+               (base32
+                "1z0i8iz7f32kns8j1yb3sp2m0zhl4pgp4bf52aiqykjp9i791dqm"))))
+    (properties `((upstream-name . "climaemet")))
+    (build-system r-build-system)
+    (propagated-inputs (list r-dplyr
+                             r-ggplot2
+                             r-httr
+                             r-jsonlite
+                             r-rappdirs
+                             r-readr
+                             r-rlang
+                             r-tibble
+                             r-tidyr))
+    (native-inputs (list r-knitr))
+    (home-page "https://ropenspain.github.io/climaemet/")
+    (synopsis "Climate AEMET Tools")
+    (description
+     "This package provides tools to download the climatic data of the Spanish
+Meteorological Agency (AEMET) directly from R using their API and create
+scientific graphs (climate charts, trend analysis of climate time series,
+temperature and precipitation anomalies maps, warming stripes graphics,
+climatograms, etc.).")
+    (license license:gpl3)))
-- 
2.37.2





Reply sent to Ricardo Wurmus <rekado <at> elephly.net>:
You have taken responsibility. (Thu, 29 Dec 2022 22:32:02 GMT) Full text and rfc822 format available.

Notification sent to Wiktor Żelazny <wz <at> freeshell.de>:
bug acknowledged by developer. (Thu, 29 Dec 2022 22:32:02 GMT) Full text and rfc822 format available.

Message #16 received at 57401-done <at> debbugs.gnu.org (full text, mbox):

From: Ricardo Wurmus <rekado <at> elephly.net>
To: 57401-done <at> debbugs.gnu.org
Subject: [PATCH 1/3] gnu: Add r-mapdata.
Date: Thu, 29 Dec 2022 23:31:32 +0100
Applied, thank you!

-- 
Ricardo




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 27 Jan 2023 12:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 89 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.