[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/36: gnu: Add RCurl.
From: |
Ricardo Wurmus |
Subject: |
04/36: gnu: Add RCurl. |
Date: |
Thu, 07 Jan 2016 16:19:04 +0000 |
rekado pushed a commit to branch master
in repository guix.
commit cefaa79c9eb13ef7c84a038b09f147a19aea3aba
Author: Ricardo Wurmus <address@hidden>
Date: Fri Dec 18 14:03:08 2015 +0100
gnu: Add RCurl.
* gnu/packages/statistics.scm (r-rcurl): New variable.
---
gnu/packages/statistics.scm | 32 ++++++++++++++++++++++++++++++++
1 files changed, 32 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index d419733..0dd3a4f 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -27,6 +27,7 @@
#:use-module (guix build-system python)
#:use-module (gnu packages)
#:use-module (gnu packages compression)
+ #:use-module (gnu packages curl)
#:use-module (gnu packages gcc)
#:use-module (gnu packages gtk)
#:use-module (gnu packages haskell)
@@ -1519,3 +1520,34 @@ interface compliant with the DBI package. The source
for the SQLite
engine (version 3.8.6) is included.")
(license license:lgpl2.0+)))
+(define-public r-rcurl
+ (package
+ (name "r-rcurl")
+ (version "1.95-0.1.2")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "http://www.bioconductor.org/packages/"
+ "release/extra/src/"
+ "contrib/RCurl_" version ".tar.gz"))
+ (sha256
+ (base32
+ "0l7qi45jxlf898n0jazabnam1yyczvqfdknd00bdirhhiplpd1sc"))))
+ (properties `((upstream-name . "RCurl")))
+ (build-system r-build-system)
+ (inputs
+ `(("libcurl" ,curl)))
+ (propagated-inputs
+ `(("r-bitops" ,r-bitops)))
+ (home-page "http://www.omegahat.org/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)))
+
- branch master updated (fe9451c -> cb933df), Ricardo Wurmus, 2016/01/07
- 01/36: import: Add package->upstream-name procedure., Ricardo Wurmus, 2016/01/07
- 02/36: import: Rename "cran-fetch" to "fetch-description"., Ricardo Wurmus, 2016/01/07
- 07/36: gnu: Add futile.options., Ricardo Wurmus, 2016/01/07
- 04/36: gnu: Add RCurl.,
Ricardo Wurmus <=
- 13/36: gnu: Add BiocParallel., Ricardo Wurmus, 2016/01/07
- 15/36: gnu: Add Rsamtools., Ricardo Wurmus, 2016/01/07
- 18/36: gnu: Add rtracklayer., Ricardo Wurmus, 2016/01/07
- 09/36: gnu: Add snow., Ricardo Wurmus, 2016/01/07
- 08/36: gnu: Add futile.logger., Ricardo Wurmus, 2016/01/07
- 14/36: gnu: Add Biostrings., Ricardo Wurmus, 2016/01/07
- 03/36: gnu: Add RSQLite., Ricardo Wurmus, 2016/01/07
- 21/36: gnu: Add SparseM., Ricardo Wurmus, 2016/01/07
- 17/36: gnu: Add GenomicAlignments., Ricardo Wurmus, 2016/01/07
- 12/36: gnu: Add biomaRt., Ricardo Wurmus, 2016/01/07