Skip to content

Commit

Permalink
(devel/R-pkgbuild) Updated 1.3.1 to 1.4.0
Browse files Browse the repository at this point in the history
# pkgbuild 1.4.0

* pkgbuild can now avoid copying large package directories when building a
  source package. See the `PKG_BUILD_COPY_METHOD` enviroment variable in
  `?build` or the package README (#59).

  This is currently an experimental feature, and feedback is
  appreciated.

* `R CMD build` warnings can now be turned into errors, by setting the
  `pkg.build_stop_for_warnings` option to `TRUE` or by setting the
  `PKG_BUILD_STOP_FOR_WARNINGS` environment variable to `true` (#114).

* `need_compile()` now knows about Rust source code files, i.e. `Cargo.toml`
  and `*.rs` (#115).

* Now `pkgbuild::build()` will not clean up `inst/doc` by default if the
  `Config/build/clean-inst-doc` entry in `DESCRIPTION` is set to `FALSE` (#128).

* New `PKG_BUILD_COLOR_DIAGNOSTICS` environment variable to opt out from
  colored compiler output (#141).

* pkgbuild now works with a full XCode installation if the XCode Command
  Line Tools are not installed, on macOS, in RStudio (#103).
  • Loading branch information
mef committed Dec 18, 2022
1 parent be6dbdc commit 512908e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
9 changes: 6 additions & 3 deletions devel/R-pkgbuild/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.5 2022/04/29 13:13:51 mef Exp $
# $NetBSD: Makefile,v 1.6 2022/12/18 03:17:42 mef Exp $

R_PKGNAME= pkgbuild
R_PKGVER= 1.3.1
R_PKGVER= 1.4.0
CATEGORIES= devel

MAINTAINER= pkgsrc-users@NetBSD.org
Expand All @@ -16,10 +16,13 @@ DEPENDS+= R-rprojroot>=1.3.2:../../devel/R-rprojroot
DEPENDS+= R-withr>=2.1.2:../../devel/R-withr
DEPENDS+= R-prettyunits>=1.0.2:../../math/R-prettyunits

TEST_DEPENDS+= R-testthat-[0-9]*:../../devel/R-testthat
TEST_DEPENDS+= R-cpp11-[0-9]*:../../lang/R-cpp11
TEST_DEPENDS+= R-Rcpp-[0-9]*:../../devel/R-Rcpp
TEST_DEPENDS+= R-covr-[0-9]*:../../devel/R-covr
TEST_DEPENDS+= R-knitr-[0-9]*:../../print/R-knitr
TEST_DEPENDS+= R-mockery-[0-9]*:../../devel/R-mockery
TEST_DEPENDS+= R-rmarkdown-[0-9]*:../../textproc/R-rmarkdown
TEST_DEPENDS+= R-testthat-[0-9]*:../../devel/R-testthat

# need for make test
USE_LANGUAGES= c
Expand Down
8 changes: 4 additions & 4 deletions devel/R-pkgbuild/distinfo
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.7 2022/04/29 13:13:51 mef Exp $
$NetBSD: distinfo,v 1.8 2022/12/18 03:17:42 mef Exp $

BLAKE2s (R/pkgbuild_1.3.1.tar.gz) = 8d7db34b5ff50f77599aa45b1e17f2994028d3eb1a6fadf2e1949f0e67fed4d6
SHA512 (R/pkgbuild_1.3.1.tar.gz) = 392e1937ee2145e15eef82d5b4900e72e274a70462a911adaf80f7a76e3cdb8533e134c4f15c596b8b8779fd4b9ba3021831e2c89cf5c727c993afd8a18e5ead
Size (R/pkgbuild_1.3.1.tar.gz) = 31937 bytes
BLAKE2s (R/pkgbuild_1.4.0.tar.gz) = ab51f26b4c1203aeed86f62d837d0be713f33d43204a806f9e2b485e9a97fe16
SHA512 (R/pkgbuild_1.4.0.tar.gz) = 96ea673b2cf328ebb26be3dde8f61df96338fb422834ae432945bece1c996e6644e7f9ce03549132eaf5b5aaba5679535c7088857e72ae9227bd9a305d9c4d01
Size (R/pkgbuild_1.4.0.tar.gz) = 43739 bytes

0 comments on commit 512908e

Please sign in to comment.