unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add r-zoo.
@ 2016-05-09 11:18 Roel Janssen
  2016-05-23  2:02 ` Leo Famulari
  0 siblings, 1 reply; 4+ messages in thread
From: Roel Janssen @ 2016-05-09 11:18 UTC (permalink / raw)
  To: Guix-devel

Dear Guix,

There's still a range of R packages I would like to add.
Here's another one of them.

Thank you for your time.

Kind regards,
Roel Janssen

From 11a1793ee3f8c9954fae873dc7a6b94412e51b83 Mon Sep 17 00:00:00 2001
From: Roel Janssen <roel@gnu.org>
Date: Mon, 9 May 2016 13:15:41 +0200
Subject: [PATCH] gnu: Add r-zoo.

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

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 7b34832..5ede531 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -2593,6 +2593,25 @@ directly from R.  Once uploaded to a plotly account, plotly graphs (and the
 data behind them) can be viewed and modified in a web browser.")
     (license license:x11)))
 
+(define-public r-zoo
+  (package
+    (name "r-zoo")
+    (version "1.7-13")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "zoo" version))
+              (sha256
+               (base32
+                "0m67bnrg7r1jxvs9p7rpa430szp5qfp65r056yb8bivpc16jd98c"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-lattice" ,r-lattice)))
+    (home-page "http://zoo.R-Forge.R-project.org/")
+    (synopsis "S3 infrastructure for regular and irregular time series")
+    (description "This package contains an S3 class with methods for totally
+ordered indexed observations.  It is particularly aimed at irregular time
+series of numeric vectors/matrices and factors.")
+    (license license:gpl2+)))
 
 (define-public r-ztable
   (package
-- 
2.7.4

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

* Re: [PATCH] gnu: Add r-zoo.
  2016-05-09 11:18 [PATCH] gnu: Add r-zoo Roel Janssen
@ 2016-05-23  2:02 ` Leo Famulari
  2016-05-23  9:09   ` Roel Janssen
  0 siblings, 1 reply; 4+ messages in thread
From: Leo Famulari @ 2016-05-23  2:02 UTC (permalink / raw)
  To: Roel Janssen; +Cc: Guix-devel

On Mon, May 09, 2016 at 01:18:08PM +0200, Roel Janssen wrote:
> * gnu/packages/statistics.scm (r-zoo): New variable.

Thanks, looks good!

The patch no longer applies. Can you rebase it on the current master
branch and re-send?

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

* Re: [PATCH] gnu: Add r-zoo.
  2016-05-23  2:02 ` Leo Famulari
@ 2016-05-23  9:09   ` Roel Janssen
  2016-05-23 16:38     ` Leo Famulari
  0 siblings, 1 reply; 4+ messages in thread
From: Roel Janssen @ 2016-05-23  9:09 UTC (permalink / raw)
  To: Leo Famulari; +Cc: Guix-devel


Leo Famulari writes:

> On Mon, May 09, 2016 at 01:18:08PM +0200, Roel Janssen wrote:
>> * gnu/packages/statistics.scm (r-zoo): New variable.
>
> Thanks, looks good!
>
> The patch no longer applies. Can you rebase it on the current master
> branch and re-send?

Thanks for looking at it!  Here is the rebased patch:

From ff45dbfd08d514fbf8588bc033f0054904d6302b Mon Sep 17 00:00:00 2001
From: Roel Janssen <roel@gnu.org>
Date: Mon, 23 May 2016 11:07:07 +0200
Subject: [PATCH] gnu: Add r-zoo.

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

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 43f9042..1a66443 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -2617,6 +2617,26 @@ noncentral hypergeometric distribution (also called extended hypergeometric
 distribution).")
    (license license:gpl3+)))
 
+(define-public r-zoo
+  (package
+    (name "r-zoo")
+    (version "1.7-13")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "zoo" version))
+              (sha256
+               (base32
+                "0m67bnrg7r1jxvs9p7rpa430szp5qfp65r056yb8bivpc16jd98c"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-lattice" ,r-lattice)))
+    (home-page "http://zoo.R-Forge.R-project.org/")
+    (synopsis "S3 infrastructure for regular and irregular time series")
+    (description "This package contains an S3 class with methods for totally
+ordered indexed observations.  It is particularly aimed at irregular time
+series of numeric vectors/matrices and factors.")
+    (license license:gpl2+)))
+
 (define-public r-ztable
   (package
     (name "r-ztable")
-- 
2.7.4


Kind regards,
Roel Janssen

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

* Re: [PATCH] gnu: Add r-zoo.
  2016-05-23  9:09   ` Roel Janssen
@ 2016-05-23 16:38     ` Leo Famulari
  0 siblings, 0 replies; 4+ messages in thread
From: Leo Famulari @ 2016-05-23 16:38 UTC (permalink / raw)
  To: Roel Janssen; +Cc: Guix-devel

On Mon, May 23, 2016 at 11:09:13AM +0200, Roel Janssen wrote:
> 
> Leo Famulari writes:
> 
> > On Mon, May 09, 2016 at 01:18:08PM +0200, Roel Janssen wrote:
> >> * gnu/packages/statistics.scm (r-zoo): New variable.
> >
> > Thanks, looks good!
> >
> > The patch no longer applies. Can you rebase it on the current master
> > branch and re-send?
> 
> Thanks for looking at it!  Here is the rebased patch:

Thanks! Applied as 031cf6b65e

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

end of thread, other threads:[~2016-05-23 16:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-09 11:18 [PATCH] gnu: Add r-zoo Roel Janssen
2016-05-23  2:02 ` Leo Famulari
2016-05-23  9:09   ` Roel Janssen
2016-05-23 16:38     ` Leo Famulari

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).