Code
state <- start_task_build(state, task("build", pkgidx = 1))
Message
i Building R6 2.2.2
Code
state <- start_task_build(state, task("build", pkgidx = 1))
Message
i Building R6 2.2.2
Code
repeat {
events <- poll_workers(state)
state <- handle_events(state, events)
if (all(state$plan$build_done)) break
}
Message
v Built R6 2.2.2
Code
state <- make_start_state(plan, list(foo = "bar"))
Code
state <- start_task_install(state, task("install", pkgidx = 1))
Code
repeat {
events <- poll_workers(state)
state <- handle_events(state, events)
if (all(state$plan$build_done)) break
}
Message
x Failed to install R6 2.2.2
Condition
Error:
! Failed to install binary package R6.
Code
repeat {
events <- poll_workers(state)
state <- handle_events(state, events)
if (done) break
if (!proc$is_alive()) done <- TRUE
}
Message
v Installed R6 2.2.2
Code
done <- FALSE
repeat {
events <- poll_workers(state)
state <- handle_events(state, events)
if (done) break
if (!proc$is_alive()) done <- TRUE
}
Message
x Failed to install R6 2.2.2
Condition
Error:
! Failed to install binary package R6.
Code
install_package_plan(plan, lib = tempfile())
Condition
Error:
! Cannot select new package installation task.
i 3 packages still waiting to install: p1, p2, and p3.
i This is an internal error in pkgdepends, please report an issue at <https://github.com/r-lib/pkgdepends/issues>.
Code
install_package_plan(plan, lib = lib)
Message
i Building foo
v Built foo
v Installed foo (local)
v Summary:
Code
installed_note(list(type = "cran"))
Output
[1] ""
Code
installed_note(list(type = "bioc"))
Output
[1] "(Bioconductor)"
Code
installed_note(list(type = "standard"))
Output
[1] ""
Code
installed_note(list(type = "local"))
Output
[1] "(local)"
Code
installed_note(list(type = "github", metadata = list(list(RemoteUsername = "r-lib",
RemoteRepo = "pak", RemoteSha = "5a4da54df42528545af8a64e83112be21273907c6dfa0f31a0982ca88db6527d"))))
Output
[1] "(github::r-lib/pak@5a4da54)"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.