From unknown Sun Jun 22 04:29:08 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#57270] [PATCH] gnu: Add r-prospectr. Resent-From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 18 Aug 2022 07:50:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 57270 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 57270@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.166080897020682 (code B ref -1); Thu, 18 Aug 2022 07:50:02 +0000 Received: (at submit) by debbugs.gnu.org; 18 Aug 2022 07:49:30 +0000 Received: from localhost ([127.0.0.1]:53640 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oOaHR-0005NW-HZ for submit@debbugs.gnu.org; Thu, 18 Aug 2022 03:49:29 -0400 Received: from lists.gnu.org ([209.51.188.17]:43916) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oOaHP-0005NO-Sp for submit@debbugs.gnu.org; Thu, 18 Aug 2022 03:49:28 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:50636) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oOaHP-0001ud-Mx for guix-patches@gnu.org; Thu, 18 Aug 2022 03:49:27 -0400 Received: from freeshell.de ([116.202.128.144]:53526) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oOaHN-0007kP-NR for guix-patches@gnu.org; Thu, 18 Aug 2022 03:49:27 -0400 Received: from localhost.localdomain (cst-prg-24-153.cust.vodafone.cz [46.135.24.153]) (Authenticated sender: wz) by freeshell.de (Postfix) with ESMTPSA id 12045B362E0B; Thu, 18 Aug 2022 09:49:12 +0200 (CEST) From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Date: Thu, 18 Aug 2022 09:48:39 +0200 Message-Id: <20220818074839.16939-1-wz@freeshell.de> X-Mailer: git-send-email 2.37.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=116.202.128.144; 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: -1.4 (-) 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 (--) From: Wiktor Żelazny * 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 ;;; 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ć @@ -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 From unknown Sun Jun 22 04:29:08 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#57270] [PATCH v2] gnu: Add r-prospectr. References: <20220818074839.16939-1-wz@freeshell.de> In-Reply-To: <20220818074839.16939-1-wz@freeshell.de> Resent-From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 07 Oct 2022 13:39:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 57270 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 57270@debbugs.gnu.org Received: via spool by 57270-submit@debbugs.gnu.org id=B57270.16651499339415 (code B ref 57270); Fri, 07 Oct 2022 13:39:02 +0000 Received: (at 57270) by debbugs.gnu.org; 7 Oct 2022 13:38:53 +0000 Received: from localhost ([127.0.0.1]:34840 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ognYz-0002Rn-7s for submit@debbugs.gnu.org; Fri, 07 Oct 2022 09:38:53 -0400 Received: from freeshell.de ([116.202.128.144]:60052) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ognYx-0002RX-Tt for 57270@debbugs.gnu.org; Fri, 07 Oct 2022 09:38:52 -0400 Received: from localhost.localdomain (cst-prg-20-154.cust.vodafone.cz [46.135.20.154]) (Authenticated sender: wz) by freeshell.de (Postfix) with ESMTPSA id 99208B39187E for <57270@debbugs.gnu.org>; Fri, 7 Oct 2022 15:38:42 +0200 (CEST) From: Wiktor =?UTF-8?Q?=C5=BBelazny?= Date: Fri, 7 Oct 2022 15:38:19 +0200 Message-Id: <20221007133819.1304-1-wz@freeshell.de> X-Mailer: git-send-email 2.34.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Score: -0.0 (/) 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 (-) From: Wiktor Żelazny * 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 ;;; 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ć @@ -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 From unknown Sun Jun 22 04:29:08 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#57270: closed ([PATCH] gnu: Add r-prospectr.) Message-ID: References: <877cy997q2.fsf@elephly.net> <20220818074839.16939-1-wz@freeshell.de> X-Gnu-PR-Message: they-closed 57270 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 57270@debbugs.gnu.org Date: Thu, 29 Dec 2022 22:17:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1672352222-7156-1" This is a multi-part message in MIME format... ------------=_1672352222-7156-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #57270: [PATCH] gnu: Add r-prospectr. 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 57270@debbugs.gnu.org. --=20 57270: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D57270 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1672352222-7156-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 57270-done) by debbugs.gnu.org; 29 Dec 2022 22:16:12 +0000 Received: from localhost ([127.0.0.1]:33089 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pB1C8-0001px-6F for submit@debbugs.gnu.org; Thu, 29 Dec 2022 17:16:12 -0500 Received: from sender4-of-o51.zoho.com ([136.143.188.51]:21105) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pB1C4-0001po-PM for 57270-done@debbugs.gnu.org; Thu, 29 Dec 2022 17:16:10 -0500 ARC-Seal: i=1; a=rsa-sha256; t=1672352167; cv=none; d=zohomail.com; s=zohoarc; b=RiFq4eEZZD9rGTswNo6rM1I4zY4BhFCSqOhwGlJ9afyoCoj1M0msPEjBf7lSVsDXHLaFvnix0gdU7h97fcC2zna8eg7McT2jes7zawA1s8FXknuq0gXSQjNWayEXx7aezVzzt/2bMtKSQ4I1D/d64/2bhhWg2STwQpONNCn21SU= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1672352167; h=Content-Type:Date:From:MIME-Version:Message-ID:Subject:To; bh=lPBhQcGp9AoUmRmT23sG4S/UVtfy0G4ynmG+9OjzgoE=; b=BVk+KS/ev7ZJBy70cM1EGIca/eNti1JrcP9BUPCxP+dNkZxeviqsVTljRpbDYMCmOFPEtU2SIj8l9WMylfLnjvFV8l4pfbzvwIyXqr75qfiAgw5h+3du+Zg/+BrM1p2V9++VMYWFPCaG7S2obHxZySz11DrNp/P11pgb0T1cEGU= 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=1672352167; s=zoho; d=elephly.net; i=rekado@elephly.net; h=From:From:To:To:Subject:Subject:Date:Date:Message-ID:MIME-Version:Content-Type:Message-Id:Reply-To:Cc; bh=lPBhQcGp9AoUmRmT23sG4S/UVtfy0G4ynmG+9OjzgoE=; b=J6V1QO1phc+l0Lzh5OyCrRsuE5U4/NoDOQRkOqrHdHqmlNPiAQtnzXMPowJ2dLW2 z0aULQnGJFzUfmfdiPB+b5Hjp7TXcMHOspGEAQ9YpXulaLqq3m+k5j4fueknW3KxKNx xiy0lKSX9RuD7S/oZVzIaycyv2PWK8YFO8N597lI= Received: from localhost (1-108-142-46.pool.kielnet.net [46.142.108.1]) by mx.zohomail.com with SMTPS id 1672352167103929.7901218773469; Thu, 29 Dec 2022 14:16:07 -0800 (PST) User-agent: mu4e 1.8.13; emacs 28.2 From: Ricardo Wurmus To: 57270-done@debbugs.gnu.org Subject: [PATCH] gnu: Add r-prospectr. Date: Thu, 29 Dec 2022 23:15:51 +0100 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: <877cy997q2.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain X-ZohoMailClient: External X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 57270-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 (-) Applied, thank you! -- Ricardo ------------=_1672352222-7156-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 18 Aug 2022 07:49:30 +0000 Received: from localhost ([127.0.0.1]:53640 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oOaHR-0005NW-HZ for submit@debbugs.gnu.org; Thu, 18 Aug 2022 03:49:29 -0400 Received: from lists.gnu.org ([209.51.188.17]:43916) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oOaHP-0005NO-Sp for submit@debbugs.gnu.org; Thu, 18 Aug 2022 03:49:28 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:50636) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oOaHP-0001ud-Mx for guix-patches@gnu.org; Thu, 18 Aug 2022 03:49:27 -0400 Received: from freeshell.de ([116.202.128.144]:53526) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oOaHN-0007kP-NR for guix-patches@gnu.org; Thu, 18 Aug 2022 03:49:27 -0400 Received: from localhost.localdomain (cst-prg-24-153.cust.vodafone.cz [46.135.24.153]) (Authenticated sender: wz) by freeshell.de (Postfix) with ESMTPSA id 12045B362E0B; Thu, 18 Aug 2022 09:49:12 +0200 (CEST) From: =?UTF-8?q?Wiktor=20=C5=BBelazny?= To: guix-patches@gnu.org Subject: [PATCH] gnu: Add r-prospectr. Date: Thu, 18 Aug 2022 09:48:39 +0200 Message-Id: <20220818074839.16939-1-wz@freeshell.de> X-Mailer: git-send-email 2.37.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=116.202.128.144; 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: -1.4 (-) 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 (--) From: Wiktor Żelazny * 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 ;;; 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ć @@ -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 ------------=_1672352222-7156-1--