-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Set the minimum version of the {pak} package to 0.6.0. Parameterize the sysreqs_platform used to find system dependencies in pkg_sysreqs * Update NEWS.md * Update DESCRIPTION * update news and README * skip test on r-devel (even on linux...)
- Loading branch information
1 parent
5ef486d
commit 44919b7
Showing
11 changed files
with
74 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: dockerfiler | ||
Title: Easy Dockerfile Creation from R | ||
Version: 0.2.2.9003 | ||
Version: 0.2.3 | ||
Authors@R: c( | ||
person("Colin", "Fay", , "[email protected]", role = c("cre", "aut"), | ||
comment = c(ORCID = "0000-0001-7343-1846")), | ||
|
@@ -25,12 +25,11 @@ Imports: | |
glue (>= 1.4.2), | ||
jsonlite (>= 1.7.2), | ||
memoise, | ||
pak (>= 0.2.0), | ||
pak (>= 0.6.0), | ||
pkgbuild (>= 1.2.0), | ||
purrr, | ||
R6 (>= 2.5.0), | ||
remotes (>= 2.2.0), | ||
renv, | ||
usethis (>= 2.0.1), | ||
utils | ||
Suggests: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
R_USER_CACHE_DIR<-tempfile() | ||
dir.create(R_USER_CACHE_DIR) | ||
Sys.setenv("R_USER_CACHE_DIR"=R_USER_CACHE_DIR) | ||
r_version <- R.Version()$version.string | ||
is_rdevel <- grepl("unstable", r_version) | ||
# is_debian <- grepl("debian", tolower(Sys.info()['release'])) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters