GNU bug report logs - #57270
[PATCH] gnu: Add r-prospectr.

Previous Next

Package: guix-patches;

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

Date: Thu, 18 Aug 2022 07:50: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 57270 in the body.
You can then email your comments to 57270 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#57270; Package guix-patches. (Thu, 18 Aug 2022 07:50: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, 18 Aug 2022 07:50: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] gnu: Add r-prospectr.
Date: Thu, 18 Aug 2022 09:48:39 +0200
From: Wiktor Żelazny <wzelazny <at> vurv.cz>

* gnu/packages/cran.scm (r-prospectr): New variable.
---
 gnu/packages/cran.scm | 29 ++++++++++++++++++++++++++++-
 1 file changed, 28 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index e03b707162..75d856b2fc 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>
@@ -34296,3 +34296,30 @@ (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-prospectr
+  (package
+    (name "r-prospectr")
+    (version "0.2.5")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "prospectr" version))
+              (sha256
+               (base32
+                "0zwbmnfinjr1hdhlsydgphkp5hqr6yh9zmbbbhj7gadl10mmai4f"))))
+    (properties `((upstream-name . "prospectr")))
+    (build-system r-build-system)
+    (propagated-inputs (list r-foreach
+                             r-iterators
+                             r-rcpp
+                             r-mathjaxr
+                             r-lifecycle
+                             r-rcpparmadillo))
+    (home-page "https://cran.r-project.org/web/packages/prospectr/")
+    (synopsis "Functions for processing and sample selection of spectroscopic
+data")
+    (description
+     "@code{prospectr} provides miscellaneous functions to preprocess
+spectroscopic data and conduct representative sample selection, or
+calibration sampling.")
+    (license license:expat)))

base-commit: 741c8efd6a85150359578610e492c6731fd34a03
-- 
2.37.2





Information forwarded to guix-patches <at> gnu.org:
bug#57270; Package guix-patches. (Fri, 07 Oct 2022 13:39:02 GMT) Full text and rfc822 format available.

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

From: Wiktor Żelazny <wz <at> freeshell.de>
To: 57270 <at> debbugs.gnu.org
Subject: [PATCH v2] gnu: Add r-prospectr.
Date: Fri,  7 Oct 2022 15:38:19 +0200
From: Wiktor Żelazny <wzelazny <at> vurv.cz>

* gnu/packages/cran.scm (r-prospectr): New variable.
---
 gnu/packages/cran.scm | 29 ++++++++++++++++++++++++++++-
 1 file changed, 28 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index c48ef78f4c..77a4fd9aef 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>
@@ -16535,6 +16535,33 @@ (define-public r-profvis
 profiling R code.")
     (license license:gpl3)))
 
+(define-public r-prospectr
+  (package
+    (name "r-prospectr")
+    (version "0.2.6")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "prospectr" version))
+              (sha256
+               (base32
+                "1p53hcgcs2p09zhc2n7byjzrgvcgz6w7q00mlsn4kmnz7l4p7rrm"))))
+    (properties `((upstream-name . "prospectr")))
+    (build-system r-build-system)
+    (propagated-inputs (list r-foreach
+                             r-iterators
+                             r-rcpp
+                             r-mathjaxr
+                             r-lifecycle
+                             r-rcpparmadillo))
+    (home-page "https://github.com/l-ramirez-lopez/prospectr")
+    (synopsis "Functions for processing and sample selection of spectroscopic
+data")
+    (description
+     "@code{prospectr} provides miscellaneous functions to preprocess
+spectroscopic data and conduct representative sample selection, or
+calibration sampling.")
+    (license license:expat)))
+
 (define-public r-protviz
   (package
     (name "r-protviz")

base-commit: 8319be779f0d780aa801c9fa1be853781c680dda
-- 
2.37.3





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

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

From: Ricardo Wurmus <rekado <at> elephly.net>
To: 57270-done <at> debbugs.gnu.org
Subject: [PATCH] gnu: Add r-prospectr.
Date: Thu, 29 Dec 2022 23:15:51 +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:11 GMT) Full text and rfc822 format available.

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

Previous Next


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