Received: by mail.netbsd.org (Postfix, from userid 605) id 51A2884DE6; Sun, 20 Sep 2020 01:50:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CC25F84DE5 for ; Sun, 20 Sep 2020 01:50:11 +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 pNloDGLLsyXP for ; Sun, 20 Sep 2020 01:50:11 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E8EB684CF1 for ; Sun, 20 Sep 2020 01:50:10 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DC8CFFB28; Sun, 20 Sep 2020 01:50:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1600566610229870" MIME-Version: 1.0 Date: Sun, 20 Sep 2020 01:50:10 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/devel/R-remotes To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20200920015010.DC8CFFB28@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. --_----------=_1600566610229870 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Sun Sep 20 01:50:10 UTC 2020 Modified Files: pkgsrc/devel/R-remotes: Makefile distinfo Log Message: (devel/R-remotes) Updated 2.1.0 to 2.2.0, make test does not pass yet # remotes 2.2.0 ## New functions and features * New `system_requirements()` function to query the Public RStudio Package Manager for system requirements for a package (and its dependencies) * Remotes functions can now install dependencies from additional DESCRIPTION fields, e.g. passing `dependencies = "Config/Needs/website"` will install the dependencies listed in the `Config/Needs/website: ` field in the package's DESCRIPTION. Prefixing fields with `Config/Needs` allows them to pass `R CMD check` without a NOTE, so it is the recommended format for these extra dependencies. * `install_*()` family of functions now use the default branch in the repository, not the `master` branch (@MyKo101,#508). ## Minor improvements and fixes * Internal functions `remote_download()`, `remote_metadata()`, `remote_package_name()` and `remote_sha()` are now exported, so 3rd party packages could provide methods for new remote types (#509, #56) * Internal functions `add_metadata()`, `github_remote()` are now exported. They are mainly for 3rd party extensions and should not be used by most users (#485). * `install_version()` now keeps searching subsequent repositories for the requested version, rather than failing if the version it finds in an early repository is unsuitable. (#305, @kenahoo) * `install_version()` now understands specifications like '>= 1.0' or '>= 1.12.0, < 1.14' to install the first version of the package it can find that satisfies the criteria. (#305, @kenahoo) * `install_version()` now avoids use of `base::url()`, as prior to R 3.6.2 it had a bug when downloading large files (#463) * `parse_submodules()` internal regular expression is now PCRE 2 compatible (#502, @jan-glx) * `update_packages()` argument `force` has been deprecated and no longer has any effect (#521) * Another fix for the mixed binary and source dependency issue, it should hopefully be fully squashed now (#296) * The upgrade menu is now interruptible in RStudio (#489). * Internal GitHub functions now correctly handle cases when characters are not representable in the default locale, but are representable in UTF-8 (#492). # remotes 2.1.1 ## Minor improvements and fixes * Installing mixed binary and source dependencies when the latest versions of some packages do not have binaries yet should now install dependencies in the correct order to prevent load failures (#296) * `github_error()` now also works when a GitHub (Enterprise) server does not return information about the rate limit (@dpprdan, #396, #413). * `install_gitlab` passes the `quiet` argument on to `gitlab_pat` (@michaelchirico, #437) * `remotes` is now resilient against installed packages that declare `RemoteType: standard` but do not include a `RemoteRepos` or `RemotePkgType` field. In such a case, the values for `getOption("repos")` and `getOption("pkgType")` will be used (respectively). * `install_gitlab()` now installs from repositories in subgroups and with dots in their name. `subdir` is now an explicit argument instead of implicit in `repo` (@robertdj, #259, #420). * `install()` now passes the ellipsis `...` to `install_deps()` (@Neil-Schneider, #411) * The tests have been updated to work with newer versions of callr and R 4.0 To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/R-remotes/Makefile \ pkgsrc/devel/R-remotes/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1600566610229870 Content-Disposition: inline Content-Length: 1604 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/R-remotes/Makefile diff -u pkgsrc/devel/R-remotes/Makefile:1.1 pkgsrc/devel/R-remotes/Makefile:1.2 --- pkgsrc/devel/R-remotes/Makefile:1.1 Fri Aug 9 18:33:40 2019 +++ pkgsrc/devel/R-remotes/Makefile Sun Sep 20 01:50:10 2020 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.1 2019/08/09 18:33:40 brook Exp $ +# $NetBSD: Makefile,v 1.2 2020/09/20 01:50:10 mef Exp $ R_PKGNAME= remotes -R_PKGVER= 2.1.0 +R_PKGVER= 2.2.0 CATEGORIES= devel MAINTAINER= pkgsrc-users@NetBSD.org Index: pkgsrc/devel/R-remotes/distinfo diff -u pkgsrc/devel/R-remotes/distinfo:1.1 pkgsrc/devel/R-remotes/distinfo:1.2 --- pkgsrc/devel/R-remotes/distinfo:1.1 Fri Aug 9 18:33:40 2019 +++ pkgsrc/devel/R-remotes/distinfo Sun Sep 20 01:50:10 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.1 2019/08/09 18:33:40 brook Exp $ +$NetBSD: distinfo,v 1.2 2020/09/20 01:50:10 mef Exp $ -SHA1 (R/remotes_2.1.0.tar.gz) = e49b6befd0b6e803d078af6b67480f975e12c941 -RMD160 (R/remotes_2.1.0.tar.gz) = 931eb670c6e4d956a191db29ad13911d1778c711 -SHA512 (R/remotes_2.1.0.tar.gz) = 835c76dc9f3bc355ef23a5cd4ad3fdaa67d743b9f26367f0eed0652de7ccd717969adb7ecbe437b4ec10b6b08637974f6b578d81f5e69f6f0fa1b9a6e21c71aa -Size (R/remotes_2.1.0.tar.gz) = 131622 bytes +SHA1 (R/remotes_2.2.0.tar.gz) = 85e78134d4ab9be15a812b921c57eac23a725296 +RMD160 (R/remotes_2.2.0.tar.gz) = f40a529e155f370c72c26c438a87f11b4d52a758 +SHA512 (R/remotes_2.2.0.tar.gz) = b0b4e880901870f990c69a46d08590162cbc9c94fe8875eee5b18d263fc9950b5c739e304e7f399d4febb979f1d55b6268a7588f93df91b060048fd6bd7fabe4 +Size (R/remotes_2.2.0.tar.gz) = 145553 bytes --_----------=_1600566610229870--