pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/math/R-zoo



Module Name:    pkgsrc
Committed By:   minskim
Date:           Sat Feb  3 01:15:17 UTC 2018

Modified Files:
        pkgsrc/math/R-zoo: Makefile distinfo

Log Message:
math/R-zoo: Update to 1.8.1

Changes:

  o New .DollarNames method (contributed by Josh Ulrich) to enable tab
    completion when using zoo_object$...

  o New default method for zoo::as.Date() that simply dispatches to
    base::as.Date().

  o rollapply(x, k, FUN, align = "right") lead to an error if length(x) < k.
    This has been corrected to match the behavior of the other align types.

  o rollmean(), rollsum(), rollmedian(), and rollmax() no longer throw an
    error if the series is shorter than the window size. Instead rollapply()
    is called which either returns an empty series (if "fill" is not specified)
    or a padded series (if "fill" is specified, e.g., to NA).

  o read.zoo() now also handles "tbl" objects by coercing them to proper
    "data.frame"s first. Also gained a read = read.table argument to simplify
    convenience interfaces read.csv.zoo() etc.

  o The fortify() method gained a "names" argument so that the column names
    of the (melted) series can be modified.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 pkgsrc/math/R-zoo/Makefile
cvs rdiff -u -r1.11 -r1.12 pkgsrc/math/R-zoo/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/math/R-zoo/Makefile
diff -u pkgsrc/math/R-zoo/Makefile:1.10 pkgsrc/math/R-zoo/Makefile:1.11
--- pkgsrc/math/R-zoo/Makefile:1.10     Sat Dec  2 10:58:52 2017
+++ pkgsrc/math/R-zoo/Makefile  Sat Feb  3 01:15:17 2018
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2017/12/02 10:58:52 wen Exp $
+# $NetBSD: Makefile,v 1.11 2018/02/03 01:15:17 minskim Exp $
 
 CATEGORIES=    math
 MASTER_SITES=  ${MASTER_SITE_R_CRAN:=contrib/}
@@ -9,7 +9,8 @@ COMMENT=        S3 Infrastructure for Regular a
 LICENSE=       gnu-gpl-v2 OR gnu-gpl-v3
 
 R_PKGNAME=     zoo
-R_PKGVER=      1.8-0
+R_PKGVER=      1.8-1
 
+BUILDLINK_API_DEPENDS.R+=      R>=2.10.0
 .include "../../math/R/Makefile.extension"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/math/R-zoo/distinfo
diff -u pkgsrc/math/R-zoo/distinfo:1.11 pkgsrc/math/R-zoo/distinfo:1.12
--- pkgsrc/math/R-zoo/distinfo:1.11     Sat Dec  2 10:58:52 2017
+++ pkgsrc/math/R-zoo/distinfo  Sat Feb  3 01:15:17 2018
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.11 2017/12/02 10:58:52 wen Exp $
+$NetBSD: distinfo,v 1.12 2018/02/03 01:15:17 minskim Exp $
 
-SHA1 (R/zoo_1.8-0.tar.gz) = 1d9def97f316bcf28e4cbd426e31fe7998578c88
-RMD160 (R/zoo_1.8-0.tar.gz) = 30fb4ae5f2530f665aac716369604a45b0feb350
-SHA512 (R/zoo_1.8-0.tar.gz) = 04e95d100520cd8edf3b33bfcb34410a5269014c72db27cbf21ea5836d30125e2fde9e51956087e798143d4ac1169a1ebd5769a8b6c79d45bbfbf28f5f91260b
-Size (R/zoo_1.8-0.tar.gz) = 839729 bytes
+SHA1 (R/zoo_1.8-1.tar.gz) = 167c080b75faba78f44562c978aeb33ff6825b70
+RMD160 (R/zoo_1.8-1.tar.gz) = 369bf15f07275e8d015165f83cef5e63f6ef4dcc
+SHA512 (R/zoo_1.8-1.tar.gz) = a0b2818d678b295431090ccbccac6bc991a28182074b8a5079debb673d4cd999a12f3e4387d87093f6630d68d886b31efa098c25524988de133496e2e204213d
+Size (R/zoo_1.8-1.tar.gz) = 852331 bytes



Home | Main Index | Thread Index | Old Index