Displaying 2 results from an estimated 2 matches for "already_installed".
2020 Oct 11
3
Installing bioconduction packages in connection with loading an R package
...bioc-packages, so other people must have faced this challenge before).
Thanks in advance.
Best regards
S?ren
.onAttach<-function(libname, pkgname) {
## package startup check
toinstall=c(
"graph",
"Rgraphviz",
"RBGL"
)
already_installed <- sapply(toinstall, function(pkg)
requireNamespace(pkg, quietly=TRUE))
if (any(!already_installed)){
packageStartupMessage("Need to install the following package(s): ",
toString(toinstall[!already_installed]), "\n")
}...
2011 Apr 15
0
[GIT PULL] syslinux command-line
...it 868c474546ba68e9e448734e1833f873fd50ec0a:
diskstart: Add a pointer to the syslinux_banner to the EPA (2011-04-04
17:40:59 -0700)
are available in the git repository at:
git://github.com/pcacjr/syslinux.git syslinux-update-for-hpa
Paulo Alcantara (4):
libinstaller: implement syslinux_already_installed
extlinux: use syslinux_already_installed instead of already_installed
extlinux: remove already_installed
syslinux: check --update option properly
extlinux/main.c | 15 +--------------
libinstaller/syslxcom.c | 13 +++++++++++++
libinstaller/syslxcom.h | 1 +
linux...