guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit 1d771b283121c802af96d591a0e2145ea596a4e4
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 16:48:56 2026 +0100
gnu: r-rcurl: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-rcurl): Move from here...
* gnu/packages/cran.scm (r-rcurl): ...to here.
Change-Id: I848d7f3231a301eec9391425931d0747a7d9b28f
---
gnu/packages/cran.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
gnu/packages/statistics.scm | 43 -------------------------------------------
2 files changed, 43 insertions(+), 43 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index dd5e1cc0aa..b9bac5a553 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6739,6 +6739,49 @@ computations taking place in C++ code, and support for
interrupting those
computations even in multithreaded code, typically using OpenMP.")
(license license:gpl3+)))
+(define-public r-rcurl
+ (package
+ (name "r-rcurl")
+ (version "1.98-1.17")
+ (source (origin
+ (method url-fetch)
+ (uri (cran-uri "RCurl" version))
+ (sha256
+ (base32
+ "0c30pkjhpdihif2y6ymafwhyjqwxnzyj7w0jpwc9w5hnq6k78667"))))
+ (properties `((upstream-name . "RCurl")))
+ (build-system r-build-system)
+ (arguments
+ (list
+ ;; Tests require internet connection.
+ #:tests? #false
+ #:phases
+ '(modify-phases %standard-phases
+ (add-after 'unpack 'respect-CURL_CA_BUNDLE
+ (lambda _
+ (substitute* "R/options.S"
+ (("\\.els = rev\\(merge\\(list\\(\\.\\.\\.\\), \\.opts\\)\\)" m)
+ (string-append "\
+certs = Sys.getenv(\"CURL_CA_BUNDLE\")
+if (certs != \"\") { .opts = merge.list(.opts, list(cainfo=certs)) }
+" m))))))))
+ (inputs
+ (list curl libxml2))
+ (propagated-inputs
+ (list r-bitops))
+ (home-page "https://www.omegahat.net/RCurl")
+ (synopsis "General network client interface for R")
+ (description
+ "The package allows one to compose general HTTP requests and provides
+convenient functions to fetch URIs, GET and POST forms, etc. and process the
+results returned by the Web server. This provides a great deal of control
+over the HTTP/FTP/... connection and the form of the request while providing a
+higher-level interface than is available just using R socket connections.
+Additionally, the underlying implementation is robust and extensive,
+supporting FTP/FTPS/TFTP (uploads and downloads), SSL/HTTPS, telnet, dict,
+ldap, and also supports cookies, redirects, authentication, etc.")
+ (license license:bsd-3)))
+
(define-public r-reshape2
(package
(name "r-reshape2")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 804c387594..e7f18a5048 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1940,49 +1940,6 @@ interface compliant with the DBI package. The source
for the SQLite
engine (version 3.8.8.2) is included.")
(license license:lgpl2.0+)))
-(define-public r-rcurl
- (package
- (name "r-rcurl")
- (version "1.98-1.17")
- (source (origin
- (method url-fetch)
- (uri (cran-uri "RCurl" version))
- (sha256
- (base32
- "0c30pkjhpdihif2y6ymafwhyjqwxnzyj7w0jpwc9w5hnq6k78667"))))
- (properties `((upstream-name . "RCurl")))
- (build-system r-build-system)
- (arguments
- (list
- ;; Tests require internet connection.
- #:tests? #false
- #:phases
- '(modify-phases %standard-phases
- (add-after 'unpack 'respect-CURL_CA_BUNDLE
- (lambda _
- (substitute* "R/options.S"
- (("\\.els = rev\\(merge\\(list\\(\\.\\.\\.\\), \\.opts\\)\\)" m)
- (string-append "\
-certs = Sys.getenv(\"CURL_CA_BUNDLE\")
-if (certs != \"\") { .opts = merge.list(.opts, list(cainfo=certs)) }
-" m))))))))
- (inputs
- (list curl libxml2))
- (propagated-inputs
- (list r-bitops))
- (home-page "https://www.omegahat.net/RCurl")
- (synopsis "General network client interface for R")
- (description
- "The package allows one to compose general HTTP requests and provides
-convenient functions to fetch URIs, GET and POST forms, etc. and process the
-results returned by the Web server. This provides a great deal of control
-over the HTTP/FTP/... connection and the form of the request while providing a
-higher-level interface than is available just using R socket connections.
-Additionally, the underlying implementation is robust and extensive,
-supporting FTP/FTPS/TFTP (uploads and downloads), SSL/HTTPS, telnet, dict,
-ldap, and also supports cookies, redirects, authentication, etc.")
- (license license:bsd-3)))
-
(define-public r-segmented
(package
(name "r-segmented")