Received: by mail.netbsd.org (Postfix, from userid 605) id 9343A84DE0; Sat, 19 Sep 2020 21:39:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1994484D56 for ; Sat, 19 Sep 2020 21:39:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id ejg3iLBwBual for ; Sat, 19 Sep 2020 21:39:44 +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 41DEB84CF7 for ; Sat, 19 Sep 2020 21:39:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C5131FB28; Sat, 19 Sep 2020 21:39:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16005515835140" MIME-Version: 1.0 Date: Sat, 19 Sep 2020 21:39:43 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/devel/R-fs To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20200919213943.C5131FB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_16005515835140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Sat Sep 19 21:39:43 UTC 2020 Modified Files: pkgsrc/devel/R-fs: Makefile distinfo Log Message: (devel/R-fs) Updated 1.3.1 to 1.5.0 (pkgsrc) - Add TEST_DEPENDS+, but still fails at pdLaTeX (upstream) # fs 1.5.0 ---------- * The libuv release used by fs was updated to 1.38.1 * `dir_create()` now consults the process umask so the mode during directory creation works like `mkdir` does (#284). * `fs_path`, `fs_bytes` and `fs_perms` objects are now compatible with vctrs 0.3.0 (#266) * `fs_path` objects now sort properly when there is a mix of ASCII and unicode elements (#279) # fs 1.4.2 ---------- * `file_info(..., follow = TRUE)`, `is_dir()`, and `is_file()` follow relative symlinks in non-current directories (@heavywatal, #280) * `dir_map()` now grows its internal list safely, the 1.4.0 release introduced an unsafe regression (#268) * `file_info()` returns a tibble if the tibble package is installed, and subsets work when it is a `data.frame` (#265) * `path_real()` always fails if the file does not exist. Thus it can no longer be used to resolve symlinks further up the path hierarchy for files that do not yet exist. This reverts the feature introduced in 1.2.7 (#144, #221, #231) # fs 1.4.1 ---------- * Fix compilation on Solaris. # fs 1.4.0 ---------- * `[[.fs_path`, `[[.fs_bytes` and `[[.fs_perms` now preserve their classes after subsetting (#254). * `path_has_parent()` now recycles both the `path` and `parent` arguments (#253). * `path_ext_set()` now recycles both the `path` and `ext` arguments (#250). * Internally fs no longer depends on Rcpp # fs 1.3.2 ---------- * fs now passes along `CPPFLAGS` during compilation of libuv, fixing an issue that could prevent compilation from source on macOS Catalina. (@kevinushey, #229) * fs now compiles on alpine linux (#210) * `dir_create()` now works with absolute paths and `recurse = FALSE` (#204). * `dir_tree()` now works with paths that need tilde expansion (@dmurdoch, @jennybc, #203). * `file_info()` now returns file sizes with the proper classes ("fs_bytes" and "numeric"), rather than just "fs_bytes" (#239) * `get_dirent_type()` gains a `fail` argument (@bellma-lilly, #219) * `Is_Dir()`, `is_file()`, `is_file_empty()` and `file_info()` gain a `follow` argument, to follow links and return information about the linked file rather than the link itself (#198) * `path()` now follows "tidy" recycling rules, namely only consistent or length 1 inputs are recycled. (#238) * `path()` now errors if the path given or constructed will exceed `PATH_MAX` (#233). * `path_ext_set()` now works with multiple paths (@maurolepore, #208). To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/R-fs/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/R-fs/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16005515835140 Content-Disposition: inline Content-Length: 2112 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/R-fs/Makefile diff -u pkgsrc/devel/R-fs/Makefile:1.1 pkgsrc/devel/R-fs/Makefile:1.2 --- pkgsrc/devel/R-fs/Makefile:1.1 Fri Aug 9 18:28:06 2019 +++ pkgsrc/devel/R-fs/Makefile Sat Sep 19 21:39:43 2020 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.1 2019/08/09 18:28:06 brook Exp $ +# $NetBSD: Makefile,v 1.2 2020/09/19 21:39:43 mef Exp $ R_PKGNAME= fs -R_PKGVER= 1.3.1 +R_PKGVER= 1.5.0 CATEGORIES= devel MAINTAINER= pkgsrc-users@NetBSD.org @@ -11,6 +11,13 @@ LICENSE= gnu-gpl-v3 USE_TOOLS+= gmake USE_LANGUAGES= c c++ +TEST_DEPENDS+= R-testthat-[0-9]*:../../devel/R-testthat +TEST_DEPENDS+= R-covr-[0-9]*:../../devel/R-covr +TEST_DEPENDS+= R-tibble-[0-9]*:../../math/R-tibble +TEST_DEPENDS+= R-knitr-[0-9]*:../../print/R-knitr +TEST_DEPENDS+= R-vctrs-[0-9]*:../../math/R-vctrs +TEST_DEPENDS+= tex-inconsolata-[0-9]*:../../fonts/tex-inconsolata + .include "../../math/R/Makefile.extension" .include "../../devel/R-Rcpp/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/R-fs/distinfo diff -u pkgsrc/devel/R-fs/distinfo:1.2 pkgsrc/devel/R-fs/distinfo:1.3 --- pkgsrc/devel/R-fs/distinfo:1.2 Wed Sep 11 12:20:40 2019 +++ pkgsrc/devel/R-fs/distinfo Sat Sep 19 21:39:43 2020 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.2 2019/09/11 12:20:40 cherry Exp $ +$NetBSD: distinfo,v 1.3 2020/09/19 21:39:43 mef Exp $ -SHA1 (R/fs_1.3.1.tar.gz) = 071a85d86eb9eb22443cac041d2035af532c55b3 -RMD160 (R/fs_1.3.1.tar.gz) = 1528f5434b755daa07e9bb8b3ec5c04d8c4fd895 -SHA512 (R/fs_1.3.1.tar.gz) = a64bab2c15baa630990fc927a0397be6ccb10f8bc97e01b28247b92c6a19ce47b8fc3b049bb75b7ceaadf295f8ed7c8eea3d78f1391f39e813f2bb25f0edceba -Size (R/fs_1.3.1.tar.gz) = 812680 bytes +SHA1 (R/fs_1.5.0.tar.gz) = 76654d3d6d71cd5377d15d6370743f92bb6c5e67 +RMD160 (R/fs_1.5.0.tar.gz) = c9ce36ff00a1c84038c48645bc5c8841abbf4f8d +SHA512 (R/fs_1.5.0.tar.gz) = e8b49b2c4cd65fbfa319719121b00bb66014c4330a3f05f27e800be1b04bc8eba4121e9ef06133db185c1aa23294f5f7ceeccbdfad41e6dc06d12d7a338d342b +Size (R/fs_1.5.0.tar.gz) = 796244 bytes SHA1 (patch-src_Makevars) = 6708f3d705d04e995d252f4831a0ba8c52490d8b --_----------=_16005515835140--