Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support name + version as os argument #549

Merged
merged 5 commits into from
Jan 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

* `system_requirements()` now supports querying released packages as well as development dependencies (#545)

* `system_requirements()` now supports OS name + version in the `os` argument (#549, @krlmlr).

# remotes 2.2.0

## New functions and features
Expand Down
15 changes: 14 additions & 1 deletion R/system_requirements.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,25 @@ DEFAULT_RSPM <- "https://packagemanager.rstudio.com"
#' @param os,os_release The operating system and operating system release version, see
#' <https://github.com/rstudio/r-system-requirements#operating-systems> for the
#' list of supported operating systems.
#'
#' If `os_release` is `NULL`, `os` must consist of the operating system
#' and the version separated by a dash, e.g. `"ubuntu-18.04"`.
#' @param path The path to the dev package's root directory.
#' @param package A CRAN package name. If not `NULL`, this is used and `path` is ignored.
#' @param curl The location of the curl binary on your system.
#' @return A character vector of commands needed to install the system requirements for the package.
#' @export
system_requirements <- function(os, os_release, path = ".", package = NULL, curl = Sys.which("curl")) {
system_requirements <- function(os, os_release = NULL, path = ".", package = NULL, curl = Sys.which("curl")) {
if (is.null(os_release)) {
os_release <- strsplit(os_release, "-", fixed = TRUE)[[1]]
if (length(os_release) != 2) {
stop("If os_release is missing, os must consist of name and release.", call. = FALSE)
}

os <- os_release[[1]]
os_release <- os_release[[2]]
}

os_versions <- supported_os_versions()

os <- match.arg(os, names(os_versions))
Expand Down
15 changes: 14 additions & 1 deletion inst/install-github.R

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 14 additions & 1 deletion install-github.R

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions man/system_requirements.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.