From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roel Janssen Subject: Re: [PATCH] gnu: Add r-zoo. Date: Mon, 23 May 2016 11:09:13 +0200 Message-ID: <87fut9w37q.fsf@gnu.org> References: <87r3dbpjin.fsf@gnu.org> <20160523020237.GA22862@jasmine> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36556) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b4lrR-0001MM-8r for guix-devel@gnu.org; Mon, 23 May 2016 05:09:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b4lrN-0003kO-Gk for guix-devel@gnu.org; Mon, 23 May 2016 05:09:16 -0400 In-reply-to: <20160523020237.GA22862@jasmine> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" 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 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