Sun Dec 18 03:09:24 2022 UTC ()
(devel/R-pak) Updated 0.3.0 to 0.3.1

# pak 0.3.1

* The `?ignore` parameter works correctly now.

* Dependency resolution now does not fail if a package is not found.

* pak can now install `url::` remotes from GitHub.

* pak now does not fail when the package of a `.tar.gz` GitHub
  snapshot is in a subdirectory, or in a subdirectory of a subdirectory.

* pak now errors early if it cannot deduce the name of the package
  from a `Remotes` or `Config/Needs/*` entry.

* Solver failures now include details in some cases where previously they
  did not.

* pak can now update packages in Docker containers where the
  old version was installed in the different Docker later (#251)

* pak errors are now user friendlier and better formatted.

* pak now does not load tibble and its dependencies in the pak subprocess,
  so their dlls are not locked by the pak subprocess on Windows.

* pak now does not fail when installing a package that uses a non-UTF-8
  encoding on R 4.3.x and later (#404).


(mef)
diff -r1.2 -r1.3 pkgsrc/devel/R-pak/Makefile
diff -r1.4 -r1.5 pkgsrc/devel/R-pak/distinfo

cvs diff -r1.2 -r1.3 pkgsrc/devel/R-pak/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/R-pak/Makefile 2022/04/29 11:57:28 1.2
+++ pkgsrc/devel/R-pak/Makefile 2022/12/18 03:09:24 1.3
@@ -1,17 +1,17 @@ @@ -1,17 +1,17 @@
1# $NetBSD: Makefile,v 1.2 2022/04/29 11:57:28 mef Exp $ 1# $NetBSD: Makefile,v 1.3 2022/12/18 03:09:24 mef Exp $
2 2
3R_PKGNAME= pak 3R_PKGNAME= pak
4R_PKGVER= 0.3.0 4R_PKGVER= 0.3.1
5CATEGORIES= devel 5CATEGORIES= devel
6 6
7MAINTAINER= pkgsrc-users@NetBSD.org 7MAINTAINER= pkgsrc-users@NetBSD.org
8COMMENT= Another Approach to Package Installation 8COMMENT= Another Approach to Package Installation
9LICENSE= gnu-gpl-v3 9LICENSE= gnu-gpl-v3
10 10
11DEPENDS+= R-base64enc>=0.1.3:../../converters/R-base64enc 11DEPENDS+= R-base64enc>=0.1.3:../../converters/R-base64enc
12DEPENDS+= R-assertthat>=0.2.1:../../devel/R-assertthat 12DEPENDS+= R-assertthat>=0.2.1:../../devel/R-assertthat
13DEPENDS+= R-callr>=3.0.0.9002:../../devel/R-callr 13DEPENDS+= R-callr>=3.0.0.9002:../../devel/R-callr
14DEPENDS+= R-cli>=1.0.0:../../devel/R-cli 14DEPENDS+= R-cli>=1.0.0:../../devel/R-cli
15DEPENDS+= R-cliapp>=0.0.0.9002:../../devel/R-cliapp 15DEPENDS+= R-cliapp>=0.0.0.9002:../../devel/R-cliapp
16DEPENDS+= R-crayon>=1.3.4:../../devel/R-crayon 16DEPENDS+= R-crayon>=1.3.4:../../devel/R-crayon
17DEPENDS+= R-desc>=1.2.0:../../devel/R-desc 17DEPENDS+= R-desc>=1.2.0:../../devel/R-desc
@@ -19,24 +19,25 @@ DEPENDS+= R-glue>=1.3.0:../../devel/R-gl @@ -19,24 +19,25 @@ DEPENDS+= R-glue>=1.3.0:../../devel/R-gl
19DEPENDS+= R-lpSolve-[0-9]*:../../devel/R-lpSolve 19DEPENDS+= R-lpSolve-[0-9]*:../../devel/R-lpSolve
20DEPENDS+= R-pkgbuild>=1.0.2:../../devel/R-pkgbuild 20DEPENDS+= R-pkgbuild>=1.0.2:../../devel/R-pkgbuild
21DEPENDS+= R-rematch2>=2.1.2:../../devel/R-rematch2 21DEPENDS+= R-rematch2>=2.1.2:../../devel/R-rematch2
22DEPENDS+= R-rprojroot>=1.3.2:../../devel/R-rprojroot 22DEPENDS+= R-rprojroot>=1.3.2:../../devel/R-rprojroot
23DEPENDS+= R-pkgcache-[0-9]*:../../devel/R-pkgcache 23DEPENDS+= R-pkgcache-[0-9]*:../../devel/R-pkgcache
24DEPENDS+= R-prettyunits>=1.0.2:../../math/R-prettyunits 24DEPENDS+= R-prettyunits>=1.0.2:../../math/R-prettyunits
25DEPENDS+= R-tibble>=2.1.3:../../math/R-tibble 25DEPENDS+= R-tibble>=2.1.3:../../math/R-tibble
26DEPENDS+= R-processx>=3.2.1:../../sysutils/R-processx 26DEPENDS+= R-processx>=3.2.1:../../sysutils/R-processx
27DEPENDS+= R-ps>=1.3.0:../../sysutils/R-ps 27DEPENDS+= R-ps>=1.3.0:../../sysutils/R-ps
28DEPENDS+= R-jsonlite>=1.7.1:../../textproc/R-jsonlite 28DEPENDS+= R-jsonlite>=1.7.1:../../textproc/R-jsonlite
29DEPENDS+= R-curl>=3.2:../../www/R-curl 29DEPENDS+= R-curl>=3.2:../../www/R-curl
30 30
31# Packages suggested but not available: 31# Packages suggested but not available:
32# 'distro', 'gitcreds', 'pkgdepends', 'pkgsearch' 32# 'distro', 'pkgdepends', 'pkgsearch'
33TEST_DEPENDS+= R-covr-[0-9]*:../../devel/R-covr 33TEST_DEPENDS+= R-covr-[0-9]*:../../devel/R-covr
 34TEST_DEPENDS+= R-gitcreds-[0-9]*:../../security/R-gitcreds
34TEST_DEPENDS+= R-mockery-[0-9]*:../../devel/R-mockery 35TEST_DEPENDS+= R-mockery-[0-9]*:../../devel/R-mockery
35TEST_DEPENDS+= R-pingr-[0-9]*:../../net/R-pingr 36TEST_DEPENDS+= R-pingr-[0-9]*:../../net/R-pingr
36TEST_DEPENDS+= R-rstudioapi-[0-9]*:../../math/R-rstudioapi 37TEST_DEPENDS+= R-rstudioapi-[0-9]*:../../math/R-rstudioapi
37TEST_DEPENDS+= R-testthat-[0-9]*:../../devel/R-testthat 38TEST_DEPENDS+= R-testthat-[0-9]*:../../devel/R-testthat
38 39
39USE_LANGUAGES= # none 40USE_LANGUAGES= # none
40 41
41.include "../../math/R/Makefile.extension" 42.include "../../math/R/Makefile.extension"
42.include "../../mk/bsd.pkg.mk" 43.include "../../mk/bsd.pkg.mk"

cvs diff -r1.4 -r1.5 pkgsrc/devel/R-pak/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/R-pak/distinfo 2022/04/29 11:57:28 1.4
+++ pkgsrc/devel/R-pak/distinfo 2022/12/18 03:09:24 1.5
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.4 2022/04/29 11:57:28 mef Exp $ 1$NetBSD: distinfo,v 1.5 2022/12/18 03:09:24 mef Exp $
2 2
3BLAKE2s (R/pak_0.3.0.tar.gz) = b80d2c457f7b4bdae7fb1c44480cec8536732dad82bf8c4c06a9bcf5be7e37ee 3BLAKE2s (R/pak_0.3.1.tar.gz) = 0d9a08e98f1823cda89a5075596024f61f8d2eb7ee982f05c0a4a0b2e692b78f
4SHA512 (R/pak_0.3.0.tar.gz) = 22c7b050c5559406dbfda21db82ba3c0d15d81378b3ec2e4997591ac4987d20810fafc4bc941756411150f8baac1ada21b7d34d7e25d6579dcda9916aa61c155 4SHA512 (R/pak_0.3.1.tar.gz) = aa312cef189b80f0d999811b5361273cdb7d3a6264732d3f146834ca11a25f222b7c8a5766f38cb181be85d8e6975e27d65f1d14c5a2f7913dc787593f725c8a
5Size (R/pak_0.3.0.tar.gz) = 88564 bytes 5Size (R/pak_0.3.1.tar.gz) = 120022 bytes