Received: by mail.netbsd.org (Postfix, from userid 605) id 82A7E84D17; Sun, 6 Jun 2021 15:08:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BE3C784D12 for ; Sun, 6 Jun 2021 15:08:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id yxElYo6wxW3e for ; Sun, 6 Jun 2021 15:08:57 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 1AA5084CD9 for ; Sun, 6 Jun 2021 15:08:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1434EFA95; Sun, 6 Jun 2021 15:08:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1622992137215860" MIME-Version: 1.0 Date: Sun, 6 Jun 2021 15:08:57 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/math/R-zoo To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20210606150857.1434EFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1622992137215860 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Sun Jun 6 15:08:57 UTC 2021 Modified Files: pkgsrc/math/R-zoo: Makefile distinfo Log Message: (math/R-zoo) Updated 1.8.6 to 1.8.9 Changes in Version 1.8-9 o Added a basic boxplot(x, ...) method for zoo objects that simply calls boxplot(coredata(x), ...). o Bug fix in [.zoo and [<-.zoo where indexing with matrices did not work correctly anymore in R 4.x.y because "matrix" objects now additionally inherit from "array" objects. (Reported by Bill Cunliffe.) o Improved internal functionality in na.spline.default() in the same way na.approx.default() was enhanced in zoo 1.7-14 and 1.7-13. One difference is that while na.approx() requires at least two non-NA observations, na.spline() just needs one non-NA observation (using a constant to interpolate in that case). o If the FUN in rollapply() returns a matrix or data.frame with more than one row per element/time point, then this is flattened now so that the result is again a matrix with one row per element/time point. o merge.zoo() now handles the case of all indexes being integer or numeric by coercing the integer indexes to numeric (reported by Simone Giannerini). o zooreg(x) now allows to create an integer index if start (and end, if any) are integer and the implied deltat is not numerically different from an integer value. Changes in Version 1.8-8 o diff.zoo(x, arithmetic = FALSE) now also works if x contains negative data. o merge.zoo() now handles the combination of Date and numeric indexes explicitly to work around the new behavior of c.Date() in R >= 4.1.0. Changes in Version 1.8-7 o Added scale_type() methods for yearmon/yearqtr to facilitate ggplot2 visualizations of zoo series with yearmon/yearqtr time index (suggested by Brian Diggs). This requires at least ggplot2 3.0.0. o In merge.zoo() "character" columns are now processed in the same way as "logical" columns. o Replaced the "fruitohms" example in the "zoo" vignette because the corresponding "DAAG" package is not actively maintained on CRAN anymore. Instead the "Journals" data from the "AER" package is used. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/math/R-zoo/Makefile cvs rdiff -u -r1.14 -r1.15 pkgsrc/math/R-zoo/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1622992137215860 Content-Disposition: inline Content-Length: 2113 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/R-zoo/Makefile diff -u pkgsrc/math/R-zoo/Makefile:1.15 pkgsrc/math/R-zoo/Makefile:1.16 --- pkgsrc/math/R-zoo/Makefile:1.15 Thu Aug 8 19:53:55 2019 +++ pkgsrc/math/R-zoo/Makefile Sun Jun 6 15:08:56 2021 @@ -1,13 +1,22 @@ -# $NetBSD: Makefile,v 1.15 2019/08/08 19:53:55 brook Exp $ +# $NetBSD: Makefile,v 1.16 2021/06/06 15:08:56 mef Exp $ R_PKGNAME= zoo -R_PKGVER= 1.8-6 +R_PKGVER= 1.8-9 CATEGORIES= math MAINTAINER= pkgsrc-users@NetBSD.org COMMENT= S3 infrastructure for regular and irregular time series LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 +#Packages suggested but not available: +# 'AER', 'coda', 'chron', 'fts', 'ggplot2', 'mondate', 'scales', +# 'stinepack', 'strucchange', 'timeDate', 'timeSeries', 'tis', +# 'tseries', 'xts' +TEST_DEPENDS+= R-xts-[0-9]*:../../math/R-xts +TEST_DEPENDS+= R-scales-[0-9]*:../../graphics/R-scales +TEST_DEPENDS+= R-timeDate-[0-9]*:../../time/R-timeDate +TEST_DEPENDS+= R-timeSeries-[0-9]*:../../finance/R-timeSeries + USE_LANGUAGES= c .include "../../math/R/Makefile.extension" Index: pkgsrc/math/R-zoo/distinfo diff -u pkgsrc/math/R-zoo/distinfo:1.14 pkgsrc/math/R-zoo/distinfo:1.15 --- pkgsrc/math/R-zoo/distinfo:1.14 Wed Jul 31 20:40:30 2019 +++ pkgsrc/math/R-zoo/distinfo Sun Jun 6 15:08:56 2021 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.14 2019/07/31 20:40:30 brook Exp $ +$NetBSD: distinfo,v 1.15 2021/06/06 15:08:56 mef Exp $ -SHA1 (R/zoo_1.8-6.tar.gz) = a011d0cc4d4860488c6abe6234d3d45ac2d5fa2e -RMD160 (R/zoo_1.8-6.tar.gz) = 14223632bfc05ec7d9a6eb67f763b4ad1f79adb7 -SHA512 (R/zoo_1.8-6.tar.gz) = 97031d3bf82f52967190f2207626ff50f7ee93622dab25570935b43b26d932c110871e809a337b2b58f17f2a3f68532e8c963d92e5c35f9f6895c8367a13554d -Size (R/zoo_1.8-6.tar.gz) = 853504 bytes +SHA1 (R/zoo_1.8-9.tar.gz) = d3e75bd6998e649f51d25a58fc22a30250162166 +RMD160 (R/zoo_1.8-9.tar.gz) = 9702d30bc1b5bef0a651b8ee06a15dc251540ccb +SHA512 (R/zoo_1.8-9.tar.gz) = c5516542fa8efc3c83d1dfaafded3f4f0f0bc32549c07f2512291951e2d783c39705bbb315437cd0a666db18b8d987f7b25d2ec958cbdb19b1a3270caf15e940 +Size (R/zoo_1.8-9.tar.gz) = 793891 bytes --_----------=_1622992137215860--