Updated patch attached. 2015-09-14 16:35 GMT-03:00 Vicente Vera <vicente...@gmail.com>: > New patch attached. > > 2015-09-14 7:46 GMT-03:00 Ricardo Wurmus <ricardo.wur...@mdc-berlin.de>: >> >> Vicente Vera <vicente...@gmail.com> writes: >> >>> * gnu/packages/statistics.scm (r-dbi): New variable. >> >> [...] >> >>> + (synopsis "R Database Interface") >> >> Please use lower case here. >> >>> + (description >>> + "A database interface (DBI) definition for communication between R >>> +and relational database management systems. All classes in this >>> +package are virtual and need to be extended by the various R/DBMS >>> +implementations.") >> >> Please use two spaces after each sentence. Also, please change the >> beginning of the first sentence fragment so that it becomes a full >> sentence. >> >> E.g. s/A/The DBI package provides a/ >> >> ~~ Ricardo
From 6a0bcb4f5358bff2e9d0e961a94a400923420b07 Mon Sep 17 00:00:00 2001 From: Vicente Vera Parra <vicente...@gmail.com> Date: Tue, 15 Sep 2015 14:14:11 -0300 Subject: [PATCH 03/19] gnu: Add r-dbi.
* gnu/packages/statistics.scm (r-dbi): New variable. --- gnu/packages/statistics.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 22d8290..525b7ed 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -543,3 +543,26 @@ wrong.") "This package provides the tools necessary to do non-standard evaluation (NSE) in R.") (license license:gpl3+))) + +(define-public r-dbi + (package + (name "r-dbi") + (version "0.3.1") + (source (origin + (method url-fetch) + (uri (string-append "mirror://cran/src/contrib/DBI_" + version ".tar.gz")) + (sha256 + (base32 + "0xj5baxwnhl23rd5nskhjvranrwrc68f3xlyrklglipi41bm69hw")))) + (build-system r-build-system) + (home-page + "https://github.com/rstats-db/DBI") + (synopsis + "R database interface") + (description + "The DBI package provides a database interface (DBI) definition for +communication between R and relational database management systems. All +classes in this package are virtual and need to be extended by the various +R/DBMS implementations.") + (license license:lgpl3+))) -- 2.5.2