unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH 19/19] gnu: Add r-dplyr.
@ 2015-09-13 16:56 Vicente Vera
  2015-09-15 17:47 ` Vicente Vera
  0 siblings, 1 reply; 4+ messages in thread
From: Vicente Vera @ 2015-09-13 16:56 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 1 bytes --]



[-- Attachment #2: 0019-gnu-Add-r-dplyr.patch --]
[-- Type: text/x-patch, Size: 1609 bytes --]

From 3849213304d49776dadbae929fdd6830c1efbd40 Mon Sep 17 00:00:00 2001
From: Vicente Vera Parra <vicentemvp@gmail.com>
Date: Sun, 13 Sep 2015 13:30:35 -0300
Subject: [PATCH 19/19] gnu: Add r-dplyr.

* gnu/packages/statistics.scm (r-dplyr): New variable.
---
 gnu/packages/statistics.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 1796caf..9cbebd9 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -884,3 +884,30 @@ package. These classes allow public and private members, and they
 support inheritance, even when the classes are defined in different
 packages.")
     (license license:expat)))
+
+(define-public r-dplyr
+  (package
+    (name "r-dplyr")
+    (version "0.4.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://cran/src/contrib/dplyr_"
+                           version ".tar.gz"))
+       (sha256
+        (base32 "1p8rbn4p4yrx2840dapwiahf9iqa8gnvd35nyc200wfhmrxlqdlc"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-assertthat" ,r-assertthat)
+       ("r-r6" ,r-r6)
+       ("r-rcpp" ,r-rcpp)
+       ("r-magrittr" ,r-magrittr)
+       ("r-lazyeval" ,r-lazyeval)
+       ("r-dbi" ,r-dbi)
+       ("r-bh" ,r-bh)))
+    (home-page "https://github.com/hadley/dplyr")
+    (synopsis "Dplyr: A Grammar of Data Manipulation")
+    (description
+     "A fast, consistent tool for working with data frame like objects,
+both in memory and out of memory.")
+    (license license:expat)))
-- 
2.5.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 19/19] gnu: Add r-dplyr.
  2015-09-13 16:56 [PATCH 19/19] gnu: Add r-dplyr Vicente Vera
@ 2015-09-15 17:47 ` Vicente Vera
  2015-09-21  8:57   ` Ricardo Wurmus
  0 siblings, 1 reply; 4+ messages in thread
From: Vicente Vera @ 2015-09-15 17:47 UTC (permalink / raw)
  To: guix-devel, Ricardo Wurmus

[-- Attachment #1: Type: text/plain, Size: 91 bytes --]

Updated patch attached.

2015-09-13 13:56 GMT-03:00 Vicente Vera <vicentemvp@gmail.com>:
>

[-- Attachment #2: 0019-gnu-Add-r-dplyr.patch --]
[-- Type: text/x-patch, Size: 1727 bytes --]

From cb3a4a5ada258b8ae7ff1850f0b69ff14cae9766 Mon Sep 17 00:00:00 2001
From: Vicente Vera Parra <vicentemvp@gmail.com>
Date: Tue, 15 Sep 2015 14:25:14 -0300
Subject: [PATCH 19/19] gnu: Add r-dplyr.

* gnu/packages/statistics.scm (r-dplyr): New variable.
---
 gnu/packages/statistics.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 9607270..0b8456b 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -933,3 +933,32 @@ so they do not require the methods package.  These classes allow public and
 private members, and they support inheritance, even when the classes are
 defined in different packages.")
     (license license:expat)))
+
+(define-public r-dplyr
+  (package
+    (name "r-dplyr")
+    (version "0.4.3")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://cran/src/contrib/dplyr_"
+                                  version ".tar.gz"))
+              (sha256
+               (base32
+                "1p8rbn4p4yrx2840dapwiahf9iqa8gnvd35nyc200wfhmrxlqdlc"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-assertthat" ,r-assertthat)
+       ("r-r6" ,r-r6)
+       ("r-rcpp" ,r-rcpp)
+       ("r-magrittr" ,r-magrittr)
+       ("r-lazyeval" ,r-lazyeval)
+       ("r-dbi" ,r-dbi)
+       ("r-bh" ,r-bh)))
+    (home-page
+     "https://github.com/hadley/dplyr")
+    (synopsis
+     "Dplyr: a grammar of data manipulation")
+    (description
+     "This package provides a fast, consistent tool for working with data
+frame like objects, both in memory and out of memory.")
+    (license license:expat)))
-- 
2.5.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 19/19] gnu: Add r-dplyr.
  2015-09-15 17:47 ` Vicente Vera
@ 2015-09-21  8:57   ` Ricardo Wurmus
  2015-09-23 14:32     ` Vicente Vera
  0 siblings, 1 reply; 4+ messages in thread
From: Ricardo Wurmus @ 2015-09-21  8:57 UTC (permalink / raw)
  To: Vicente Vera; +Cc: guix-devel

Hi Vicente,

I just pushed all your patches with some modifications:

* changed the ‘uri’ field to use the new ‘(cran-uri ...)’ procedure
* updated a couple of packages to their latest versions
* changed the synopsis/description of some packages slightly
* moved ‘r-rcpp’ to ‘native-inputs’ as it is only used at compile time

Thanks again for your patches and thanks for your patience!

~~ Ricardo

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 19/19] gnu: Add r-dplyr.
  2015-09-21  8:57   ` Ricardo Wurmus
@ 2015-09-23 14:32     ` Vicente Vera
  0 siblings, 0 replies; 4+ messages in thread
From: Vicente Vera @ 2015-09-23 14:32 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: Guix-devel

Thank you for your patience too!

2015-09-21 5:57 GMT-03:00 Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de>:
> Hi Vicente,
>
> I just pushed all your patches with some modifications:
>
> * changed the ‘uri’ field to use the new ‘(cran-uri ...)’ procedure
> * updated a couple of packages to their latest versions
> * changed the synopsis/description of some packages slightly
> * moved ‘r-rcpp’ to ‘native-inputs’ as it is only used at compile time
>
> Thanks again for your patches and thanks for your patience!
>
> ~~ Ricardo

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-09-23 14:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-13 16:56 [PATCH 19/19] gnu: Add r-dplyr Vicente Vera
2015-09-15 17:47 ` Vicente Vera
2015-09-21  8:57   ` Ricardo Wurmus
2015-09-23 14:32     ` Vicente Vera

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).