diff --git a/NEWS.md b/NEWS.md
index 5c6efc566..a9aac864f 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,3 +1,5 @@
+* `local_mock()` and `with_mock()` have been deprecated because they are no longer permitted in R 4.5.
+
# testthat (development version)
* Fixed an issue where `expect_no_error(1)` was failing (#2037).
diff --git a/R/mock.R b/R/mock.R
index c81ba7a2d..88920169c 100644
--- a/R/mock.R
+++ b/R/mock.R
@@ -1,15 +1,18 @@
#' Mock functions in a package.
#'
#' @description
-#' `r lifecycle::badge("deprecated")`
-#'
#' `with_mock()` and `local_mock()` are deprecated in favour of
#' [with_mocked_bindings()] and [local_mocked_bindings()].
#'
#' These functions worked by using some C code to temporarily modify the mocked
-#' function _in place_. This was an abuse of R's internals and it is no longer
+#' function _in place_. This was an abuse of R's internals and it is no longer
#' permitted.
#'
+#' @section 3rd edition:
+#' `r lifecycle::badge("deprecated")`
+#'
+#' `with_mock()` and `local_mock()` are deprecated in the third edition.
+#'
#' @param ... named parameters redefine mocked functions, unnamed parameters
#' will be evaluated after mocking the functions
#' @param .env the environment in which to patch the functions,
@@ -21,116 +24,11 @@
#' @return The result of the last unnamed parameter
#' @export
with_mock <- function(..., .env = topenv()) {
- lifecycle::deprecate_warn("3.3.0", "with_mock()", "with_mocked_bindings()")
-
- dots <- eval(substitute(alist(...)))
- mock_qual_names <- names(dots)
-
- if (all(mock_qual_names == "")) {
- warning(
- "Not mocking anything. Please use named parameters to specify the functions you want to mock.",
- call. = FALSE
- )
- code_pos <- rep(TRUE, length(dots))
- } else {
- code_pos <- (mock_qual_names == "")
- }
- code <- dots[code_pos]
-
- mock_funs <- lapply(dots[!code_pos], eval, parent.frame())
- mocks <- extract_mocks(mock_funs, .env = .env)
-
- on.exit(lapply(mocks, reset_mock), add = TRUE)
- lapply(mocks, set_mock)
-
- # Evaluate the code
- if (length(code) > 0) {
- for (expression in code[-length(code)]) {
- eval(expression, parent.frame())
- }
- # Isolate last item for visibility
- eval(code[[length(code)]], parent.frame())
- }
+ lifecycle::deprecate_stop("3.3.0", "with_mock()", "with_mocked_bindings()")
}
#' @export
#' @rdname with_mock
local_mock <- function(..., .env = topenv(), .local_envir = parent.frame()) {
- lifecycle::deprecate_warn("3.3.0", "local_mock()", "local_mocked_bindings()")
-
- mocks <- extract_mocks(list(...), .env = .env)
- on_exit <- bquote(
- on.exit(lapply(.(mocks), .(reset_mock)), add = TRUE),
- )
-
- lapply(mocks, set_mock)
- eval_bare(on_exit, .local_envir)
- invisible()
-}
-
-pkg_rx <- ".*[^:]"
-colons_rx <- "::(?:[:]?)"
-name_rx <- ".*"
-pkg_and_name_rx <- sprintf("^(?:(%s)%s)?(%s)$", pkg_rx, colons_rx, name_rx)
-
-extract_mocks <- function(funs, .env) {
- if (is.environment(.env)) {
- .env <- environmentName(.env)
- }
- mock_qual_names <- names(funs)
-
- lapply(
- stats::setNames(nm = mock_qual_names),
- function(qual_name) {
- pkg_name <- gsub(pkg_and_name_rx, "\\1", qual_name)
-
- if (is_base_pkg(pkg_name)) {
- stop(
- "Can't mock functions in base packages (", pkg_name, ")",
- call. = FALSE
- )
- }
-
- name <- gsub(pkg_and_name_rx, "\\2", qual_name)
-
- if (pkg_name == "") {
- pkg_name <- .env
- }
-
- env <- asNamespace(pkg_name)
-
- if (!exists(name, envir = env, mode = "function")) {
- stop("Function ", name, " not found in environment ",
- environmentName(env), ".",
- call. = FALSE
- )
- }
- mock(name = name, env = env, new = funs[[qual_name]])
- }
- )
-}
-
-mock <- function(name, env, new) {
- target_value <- get(name, envir = env, mode = "function")
- structure(
- list(
- env = env,
- name = as.name(name),
- orig_value = .Call(duplicate_, target_value), target_value = target_value,
- new_value = new
- ),
- class = "mock"
- )
-}
-
-set_mock <- function(mock) {
- .Call(reassign_function, mock$name, mock$env, mock$target_value, mock$new_value)
-}
-
-reset_mock <- function(mock) {
- .Call(reassign_function, mock$name, mock$env, mock$target_value, mock$orig_value)
-}
-
-is_base_pkg <- function(x) {
- x %in% rownames(utils::installed.packages(priority = "base"))
+ lifecycle::deprecate_stop("3.3.0", "local_mock()", "local_mocked_bindings()")
}
diff --git a/revdep/README.md b/revdep/README.md
index 676ce3701..c5f05fb45 100644
--- a/revdep/README.md
+++ b/revdep/README.md
@@ -1,13 +1,262 @@
# Revdeps
-## New problems (6)
-
-|package |version |error |warning |note |
-|:-------|:--------|:------|:-------|:----|
-|[arrow](problems.md#arrow)|17.0.0.1 |__+1__ | |2 |
-|[epiCo](problems.md#epico)|1.0.0 |__+1__ | |1 |
-|[ieegio](problems.md#ieegio)|0.0.2 |__+1__ | | |
-|[madrat](problems.md#madrat)|3.6.4 |__+1__ | | |
-|[vines](problems.md#vines)|1.1.5 |__+1__ | | |
-|[xpose](problems.md#xpose)|0.4.18 |__+1__ | | |
+## Failed to check (173)
+
+|package |version |error |warning |note |
+|:-------------------|:----------|:-----|:-------|:----|
+|adjustedCurves |? | | | |
+|ai |? | | | |
+|apollo |0.3.4 |1 | | |
+|arealDB |0.6.3 |1 | | |
+|assessor |1.1.0 |1 | | |
+|atom4R |0.3-3 |1 | | |
+|BANAM |0.2.2 |1 | | |
+|bayesCT |0.99.3 |1 | | |
+|bayesDP |1.3.6 |1 | | |
+|BayesFactor |0.9.12-4.7 |1 | | |
+|bbknnR |1.1.1 |1 | | |
+|BCClong |1.0.3 |1 | | |
+|BFpack |1.4.0 |1 | | |
+|BGGM |2.1.5 |1 | | |
+|bnnSurvival |? | | | |
+|BSTZINB |1.0.1 |1 | | |
+|BuyseTest |? | | | |
+|CACIMAR |1.0.0 |1 | | |
+|censored |? | | | |
+|Certara.VPCResults |3.0.2 |1 | | |
+|CGPfunctions |0.6.3 |1 | | |
+|chipPCR |1.0-2 |1 | | |
+|cia |? | | | |
+|clustermq |? | | | |
+|cmmr |? | | | |
+|COMBO |1.2.0 |1 | | |
+|contsurvplot |? | | | |
+|counterfactuals |? | | | |
+|CRMetrics |0.3.2 |1 | | |
+|ctsem |3.10.1 |1 | | |
+|dartR.base |? | | | |
+|dataone |2.2.2 |1 | | |
+|datapack |1.4.1 |1 | | |
+|deeptrafo |? | | | |
+|DepthProc |2.1.5 |1 | | |
+|dibble |? | | | |
+|drtmle |1.1.2 |1 | | |
+|dscoreMSM |? | | | |
+|DWLS |0.1.0 |1 | | |
+|easybgm |0.2.1 |1 | | |
+|EcoEnsemble |1.1.0 |1 | | |
+|ecolottery |1.0.0 |1 | | |
+|EdSurvey |4.0.7 |1 | | |
+|emplik |1.3-2 |1 | | |
+|EpiEstim |2.2-4 |1 | | |
+|epizootic |1.0.0 |1 | | |
+|erah |2.0.1 |1 | | |
+|evolqg |0.3-4 |1 | | |
+|EWSmethods |? | | | |
+|ezECM |1.0.0 |1 | | |
+|FAIRmaterials |0.4.2.1 |1 | | |
+|FastJM |? | | | |
+|fdaPDE |1.1-21 |1 | | |
+|ForecastComb |1.3.1 |1 | | |
+|FoReco |1.0.0 |1 | | |
+|frechet |0.3.0 |1 | | |
+|FREEtree |0.1.0 |1 | | |
+|gapfill |0.9.6-1 |1 | |1 |
+|genekitr |? | | | |
+|GeneSelectR |? | | | |
+|GeomComb |1.0 |1 | | |
+|geomorph |? | | | |
+|GeoTox |? | | | |
+|gllvm |2.0 |1 | | |
+|gmoTree |? | | | |
+|gpuR |2.0.6 |1 | | |
+|hettx |0.1.3 |1 | | |
+|Hmsc |3.0-13 |1 | | |
+|IDLFM |? | | | |
+|invivoPKfit |2.0.0 |1 | | |
+|iNZightPlots |2.15.3 |1 | | |
+|iNZightRegression |1.3.4 |1 | | |
+|IVCor |0.1.0 |1 | | |
+|JMH |? | | | |
+|joineRML |0.4.6 |1 | | |
+|jsmodule |? | | | |
+|kmc |0.4-2 |1 | | |
+|KMunicate |? | | | |
+|Landmarking |? | | | |
+|lavaSearch2 |? | | | |
+|lnmixsurv |? | | | |
+|locpolExpectile |0.1.1 |1 | | |
+|loon.shiny |? | | | |
+|loon.tourr |? | | | |
+|lsirm12pl |1.3.3 |1 | | |
+|marlod |0.1.2 |1 | | |
+|mbsts |3.0 |1 | | |
+|metajam |0.3.1 |1 | | |
+|mHMMbayes |1.1.0 |1 | | |
+|midasr |0.8 |1 | | |
+|miWQS |0.4.4 |1 | | |
+|mixAR |0.22.8 |1 | | |
+|mlmts |1.1.2 |1 | | |
+|mlr |? | | | |
+|modeLLtest |1.0.4 |1 | | |
+|multilevelmediation |0.4.1 |1 | | |
+|multilevelTools |0.1.1 |1 | | |
+|multinma |0.7.2 |1 | | |
+|multvardiv |? | | | |
+|NCA |4.0.2 |1 | | |
+|netcmc |1.0.2 |1 | | |
+|newIMVC |0.1.0 |1 | | |
+|nlpred |1.0.1 |1 | | |
+|NMADiagT |0.1.2 |1 | | |
+|nse |1.21 |1 | | |
+|OasisR |? | | | |
+|OlinkAnalyze |? | | | |
+|paleopop |2.1.7 |1 | | |
+|pammtools |? | | | |
+|PathwaySpace |? | | | |
+|pathwayTMB |? | | | |
+|pcvr |1.1.1.0 |1 | | |
+|poems |1.3.1 |1 | | |
+|popEpi |? | | | |
+|popstudy |1.0.1 |1 | | |
+|powerly |1.8.6 |1 | | |
+|pre |1.0.7 |1 | | |
+|pscore |0.4.0 |1 | | |
+|Publish |? | | | |
+|qris |1.1.1 |1 | | |
+|QTOCen |0.1.1 |1 | | |
+|quantspec |1.2-4 |1 | | |
+|quid |0.0.1 |1 | | |
+|rddtools |1.6.0 |1 | | |
+|rdflib |0.2.9 |1 | | |
+|redland |1.0.17-18 |1 | | |
+|RGraphSpace |? | | | |
+|riskRegression |? | | | |
+|rlme |0.5 |1 | | |
+|rmlnomogram |? | | | |
+|robber |? | | | |
+|robmed |1.2.0 |1 | | |
+|RQdeltaCT |1.3.0 |1 | | |
+|RRPP |? | | | |
+|rstanarm |2.32.1 |1 | | |
+|scAnnotate |0.3 |1 | | |
+|SCIntRuler |0.99.6 |1 | | |
+|scMappR |1.0.11 |1 | | |
+|scperturbR |0.1.0 |1 | | |
+|scpi |2.2.6 |1 | | |
+|SCpubr |? | | | |
+|SCRIP |1.0.0 |1 | | |
+|SensIAT |? | | | |
+|SensMap |0.7 |1 | | |
+|Seurat |5.1.0 |1 | | |
+|shinyTempSignal |0.0.8 |1 | | |
+|Signac |1.14.0 |1 | | |
+|SimplyAgree |0.2.0 |1 | | |
+|SNPassoc |? | | | |
+|snplinkage |? | | | |
+|ssdGSA |? | | | |
+|stabiliser |1.0.6 |1 | | |
+|statsr |0.3.0 |1 | | |
+|stR |0.7 |1 | | |
+|survcompare |? | | | |
+|survex |? | | | |
+|survHE |? | | | |
+|TDA |1.9.1 |1 | | |
+|TestAnaAPP |? | | | |
+|tidyEdSurvey |0.1.3 |1 | | |
+|tidyseurat |0.8.0 |1 | | |
+|tidyvpc |1.5.2 |1 | | |
+|tinyarray |? | | | |
+|tramicp |? | | | |
+|tramvs |? | | | |
+|treeclim |2.0.7.1 |1 | | |
+|TriDimRegression |1.0.2 |1 | | |
+|TSrepr |1.1.0 |1 | | |
+|vcfppR |0.7.1 |1 | | |
+|VecDep |? | | | |
+|visa |0.1.0 |1 | | |
+|wally |? | | | |
+|zen4R |0.10 |1 | | |
+
+## New problems (77)
+
+|package |version |error |warning |note |
+|:-------------------|:-------|:--------|:-------|:------|
+|[aws.comprehend](problems.md#awscomprehend)|0.2.1 |__+1__ | | |
+|[bindr](problems.md#bindr)|0.1.2 |__+1__ | | |
+|[civis](problems.md#civis)|3.1.2 |1 __+1__ | |1 |
+|[conflr](problems.md#conflr)|0.1.1 |__+1__ | |2 |
+|[countdown](problems.md#countdown)|0.4.0 |__+1__ | |1 |
+|[covr](problems.md#covr)|3.6.4 |__+1__ | | |
+|[crossmap](problems.md#crossmap)|0.4.0 |__+1__ | | |
+|[crplyr](problems.md#crplyr)|0.4.0 |__+1__ | | |
+|[crunch](problems.md#crunch)|1.30.4 |1 __+1__ | |1 |
+|[crunchy](problems.md#crunchy)|0.3.3 |__+1__ | | |
+|[cyphr](problems.md#cyphr)|1.1.4 |__+1__ | | |
+|[datarobot](problems.md#datarobot)|2.18.6 |__+1__ | | |
+|[dendextend](problems.md#dendextend)|1.19.0 |1 __+1__ | |3 |
+|[digitize](problems.md#digitize)|0.0.4 |__+1__ | | |
+|[distro](problems.md#distro)|0.1.0 |__+1__ | |1 |
+|[dRiftDM](problems.md#driftdm)|0.2.1 |__+1__ | | |
+|[DSMolgenisArmadillo](problems.md#dsmolgenisarmadillo)|2.0.9 |__+1__ | | |
+|[gbfs](problems.md#gbfs)|1.3.9 |__+1__ | | |
+|[gen3sis](problems.md#gen3sis)|1.5.11 |1 __+1__ | |1 |
+|[graphhopper](problems.md#graphhopper)|0.1.2 |__+1__ | |1 |
+|[gwasrapidd](problems.md#gwasrapidd)|0.99.17 |1 __+1__ | | |
+|[hereR](problems.md#herer)|1.0.1 |__+1__ | | |
+|[humanize](problems.md#humanize)|0.2.0 |__+1__ | |1 |
+|[ieegio](problems.md#ieegio)|0.0.2 |__+1__ | | |
+|[ipaddress](problems.md#ipaddress)|1.0.2 |__+1__ | |1 |
+|[isotracer](problems.md#isotracer)|1.1.7 |__+1__ |1 |3 |
+|[JAGStree](problems.md#jagstree)|1.0.1 |__+1__ | |1 |
+|[leaflet.minicharts](problems.md#leafletminicharts)|0.6.2 |__+1__ | | |
+|[learnr](problems.md#learnr)|0.11.5 |__+1__ | | |
+|[MakefileR](problems.md#makefiler)|1.0 |__+1__ | |1 |
+|[manipulateWidget](problems.md#manipulatewidget)|0.11.1 |__+1__ | |1 |
+|[mbbe](problems.md#mbbe)|0.1.0 |__+1__ | | |
+|[metaDigitise](problems.md#metadigitise)|1.0.1 |__+1__ | |1 |
+|[mknapsack](problems.md#mknapsack)|0.1.0 |__+1__ | | |
+|[mockery](problems.md#mockery)|0.4.4 |__+3__ | |__+1__ |
+|[moexer](problems.md#moexer)|0.3.0 |__+1__ | | |
+|[MolgenisArmadillo](problems.md#molgenisarmadillo)|2.7.0 |__+1__ | | |
+|[MolgenisAuth](problems.md#molgenisauth)|0.0.25 |__+1__ | | |
+|[NasdaqDataLink](problems.md#nasdaqdatalink)|1.0.0 |__+1__ | | |
+|[nhlapi](problems.md#nhlapi)|0.1.4 |1 __+1__ | |1 |
+|[odin](problems.md#odin)|1.2.6 |__+1__ | | |
+|[opendatatoronto](problems.md#opendatatoronto)|0.1.5 |__+1__ | | |
+|[overture](problems.md#overture)|0.4-0 |__+1__ | |1 |
+|[owmr](problems.md#owmr)|0.8.2 |__+1__ | | |
+|[oxcAAR](problems.md#oxcaar)|1.1.1 |1 __+1__ | |1 |
+|[passport](problems.md#passport)|0.3.0 |__+1__ | | |
+|[patrick](problems.md#patrick)|0.2.0 |__+1__ | | |
+|[plumber](problems.md#plumber)|1.2.2 |__+1__ | | |
+|[pocketapi](problems.md#pocketapi)|0.1 |__+1__ | |2 |
+|[projmgr](problems.md#projmgr)|0.1.1 |__+1__ | | |
+|[Quandl](problems.md#quandl)|2.11.0 |__+1__ | | |
+|[regmedint](problems.md#regmedint)|1.0.1 |__+1__ | |1 |
+|[rentrez](problems.md#rentrez)|1.2.3 |__+1__ | | |
+|[reportr](problems.md#reportr)|1.3.0 |__+1__ | | |
+|[restez](problems.md#restez)|2.1.4 |__+1__ | | |
+|[Rexperigen](problems.md#rexperigen)|0.2.1 |__+1__ | |1 |
+|[rnbp](problems.md#rnbp)|0.2.1 |__+1__ | | |
+|[rosetteApi](problems.md#rosetteapi)|1.14.4 |__+1__ | | |
+|[Rpolyhedra](problems.md#rpolyhedra)|0.5.6 |__+1__ | | |
+|[RPresto](problems.md#rpresto)|1.4.7 |1 __+1__ | | |
+|[RTD](problems.md#rtd)|0.4.1 |__+1__ | |1 |
+|[Ryacas0](problems.md#ryacas0)|0.4.4 |__+1__ | |2 |
+|[shiny.benchmark](problems.md#shinybenchmark)|0.1.1 |__+1__ | | |
+|[shinyShortcut](problems.md#shinyshortcut)|0.1.0 |__+1__ | |1 |
+|[skimr](problems.md#skimr)|2.1.5 |__+1__ | | |
+|[spaero](problems.md#spaero)|0.6.0 |__+1__ | |2 |
+|[starwarsdb](problems.md#starwarsdb)|0.1.2 |__+1__ | |1 |
+|[taxonomizr](problems.md#taxonomizr)|0.10.7 |__+1__ | | |
+|[texreg](problems.md#texreg)|1.39.4 |__+1__ |1 |2 |
+|[ThankYouStars](problems.md#thankyoustars)|0.2.0 |__+1__ | |1 |
+|[tinyProject](problems.md#tinyproject)|0.6.1 |__+1__ | | |
+|[tryCatchLog](problems.md#trycatchlog)|1.3.1 |__+1__ | |1 |
+|[tuneRanger](problems.md#tuneranger)|0.7 |__+1__ | |1 |
+|[uptasticsearch](problems.md#uptasticsearch)|0.4.0 |__+1__ | |1 |
+|[WhatIf](problems.md#whatif)|1.5-10 |__+1__ | | |
+|[ZillowR](problems.md#zillowr)|1.0.0 |__+1__ | | |
+|[zoltr](problems.md#zoltr)|1.0.1 |1 __+1__ | | |
diff --git a/revdep/cran.md b/revdep/cran.md
index 7ee9f21e1..0a31ba35b 100644
--- a/revdep/cran.md
+++ b/revdep/cran.md
@@ -1,30 +1,403 @@
## revdepcheck results
-We checked 38 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package.
+We checked 9017 reverse dependencies (8999 from CRAN + 18 from Bioconductor), comparing R CMD check results across CRAN and dev versions of this package.
- * We saw 6 new problems
- * We failed to check 0 packages
+ * We saw 77 new problems
+ * We failed to check 155 packages
Issues with CRAN packages are summarised below.
### New problems
(This reports the first line of each new failure)
-* arrow
+* aws.comprehend
checking tests ... ERROR
-* epiCo
+* bindr
+ checking tests ... ERROR
+
+* civis
+ checking tests ... ERROR
+
+* conflr
+ checking tests ... ERROR
+
+* countdown
+ checking tests ... ERROR
+
+* covr
+ checking tests ... ERROR
+
+* crossmap
+ checking tests ... ERROR
+
+* crplyr
+ checking tests ... ERROR
+
+* crunch
+ checking tests ... ERROR
+
+* crunchy
+ checking tests ... ERROR
+
+* cyphr
+ checking tests ... ERROR
+
+* datarobot
+ checking tests ... ERROR
+
+* dendextend
+ checking tests ... ERROR
+
+* digitize
+ checking tests ... ERROR
+
+* distro
+ checking tests ... ERROR
+
+* dRiftDM
+ checking tests ... ERROR
+
+* DSMolgenisArmadillo
+ checking tests ... ERROR
+
+* gbfs
+ checking tests ... ERROR
+
+* gen3sis
+ checking tests ... ERROR
+
+* graphhopper
+ checking tests ... ERROR
+
+* gwasrapidd
+ checking tests ... ERROR
+
+* hereR
+ checking tests ... ERROR
+
+* humanize
checking tests ... ERROR
* ieegio
checking examples ... ERROR
-* madrat
+* ipaddress
+ checking tests ... ERROR
+
+* isotracer
+ checking tests ... ERROR
+
+* JAGStree
+ checking tests ... ERROR
+
+* leaflet.minicharts
+ checking tests ... ERROR
+
+* learnr
+ checking tests ... ERROR
+
+* MakefileR
+ checking tests ... ERROR
+
+* manipulateWidget
+ checking tests ... ERROR
+
+* mbbe
+ checking tests ... ERROR
+
+* metaDigitise
+ checking tests ... ERROR
+
+* mknapsack
+ checking tests ... ERROR
+
+* mockery
+ checking examples ... ERROR
+ checking tests ... ERROR
+ checking running R code from vignettes ... ERROR
+ checking re-building of vignette outputs ... NOTE
+
+* moexer
checking tests ... ERROR
-* vines
+* MolgenisArmadillo
checking tests ... ERROR
-* xpose
+* MolgenisAuth
checking tests ... ERROR
+* NasdaqDataLink
+ checking tests ... ERROR
+
+* nhlapi
+ checking tests ... ERROR
+
+* odin
+ checking tests ... ERROR
+
+* opendatatoronto
+ checking tests ... ERROR
+
+* overture
+ checking tests ... ERROR
+
+* owmr
+ checking tests ... ERROR
+
+* oxcAAR
+ checking tests ... ERROR
+
+* passport
+ checking tests ... ERROR
+
+* patrick
+ checking tests ... ERROR
+
+* plumber
+ checking tests ... ERROR
+
+* pocketapi
+ checking tests ... ERROR
+
+* projmgr
+ checking tests ... ERROR
+
+* Quandl
+ checking tests ... ERROR
+
+* regmedint
+ checking tests ... ERROR
+
+* rentrez
+ checking running R code from vignettes ... ERROR
+
+* reportr
+ checking tests ... ERROR
+
+* restez
+ checking tests ... ERROR
+
+* Rexperigen
+ checking tests ... ERROR
+
+* rnbp
+ checking tests ... ERROR
+
+* rosetteApi
+ checking tests ... ERROR
+
+* Rpolyhedra
+ checking tests ... ERROR
+
+* RPresto
+ checking tests ... ERROR
+
+* RTD
+ checking tests ... ERROR
+
+* Ryacas0
+ checking tests ... ERROR
+
+* shiny.benchmark
+ checking tests ... ERROR
+
+* shinyShortcut
+ checking tests ... ERROR
+
+* skimr
+ checking tests ... ERROR
+
+* spaero
+ checking tests ... ERROR
+
+* starwarsdb
+ checking tests ... ERROR
+
+* taxonomizr
+ checking tests ... ERROR
+
+* texreg
+ checking tests ... ERROR
+
+* ThankYouStars
+ checking tests ... ERROR
+
+* tinyProject
+ checking tests ... ERROR
+
+* tryCatchLog
+ checking tests ... ERROR
+
+* tuneRanger
+ checking tests ... ERROR
+
+* uptasticsearch
+ checking tests ... ERROR
+
+* WhatIf
+ checking tests ... ERROR
+
+* ZillowR
+ checking tests ... ERROR
+
+* zoltr
+ checking tests ... ERROR
+
+### Failed to check
+
+* adjustedCurves (NA)
+* apollo (NA)
+* arealDB (NA)
+* assessor (NA)
+* atom4R (NA)
+* BANAM (NA)
+* bayesCT (NA)
+* bayesDP (NA)
+* BayesFactor (NA)
+* bbknnR (NA)
+* BCClong (NA)
+* BFpack (NA)
+* BGGM (NA)
+* bnnSurvival (NA)
+* BSTZINB (NA)
+* BuyseTest (NA)
+* CACIMAR (NA)
+* censored (NA)
+* Certara.VPCResults (NA)
+* CGPfunctions (NA)
+* chipPCR (NA)
+* COMBO (NA)
+* contsurvplot (NA)
+* counterfactuals (NA)
+* CRMetrics (NA)
+* ctsem (NA)
+* dartR.base (NA)
+* dataone (NA)
+* datapack (NA)
+* deeptrafo (NA)
+* DepthProc (NA)
+* drtmle (NA)
+* dscoreMSM (NA)
+* DWLS (NA)
+* easybgm (NA)
+* EcoEnsemble (NA)
+* ecolottery (NA)
+* EdSurvey (NA)
+* emplik (NA)
+* EpiEstim (NA)
+* epizootic (NA)
+* erah (NA)
+* evolqg (NA)
+* ezECM (NA)
+* FAIRmaterials (NA)
+* FastJM (NA)
+* fdaPDE (NA)
+* ForecastComb (NA)
+* FoReco (NA)
+* frechet (NA)
+* FREEtree (NA)
+* gapfill (NA)
+* genekitr (NA)
+* GeneSelectR (NA)
+* GeomComb (NA)
+* gllvm (NA)
+* gpuR (NA)
+* hettx (NA)
+* Hmsc (NA)
+* invivoPKfit (NA)
+* iNZightPlots (NA)
+* iNZightRegression (NA)
+* IVCor (NA)
+* JMH (NA)
+* joineRML (NA)
+* jsmodule (NA)
+* kmc (NA)
+* KMunicate (NA)
+* Landmarking (NA)
+* lavaSearch2 (NA)
+* lnmixsurv (NA)
+* locpolExpectile (NA)
+* loon.shiny (NA)
+* loon.tourr (NA)
+* lsirm12pl (NA)
+* marlod (NA)
+* mbsts (NA)
+* metajam (NA)
+* mHMMbayes (NA)
+* midasr (NA)
+* miWQS (NA)
+* mixAR (NA)
+* mlmts (NA)
+* mlr (NA)
+* modeLLtest (NA)
+* multilevelmediation (NA)
+* multilevelTools (NA)
+* multinma (NA)
+* NCA (NA)
+* netcmc (NA)
+* newIMVC (NA)
+* nlpred (NA)
+* NMADiagT (NA)
+* nse (NA)
+* OlinkAnalyze (NA)
+* paleopop (NA)
+* pammtools (NA)
+* pathwayTMB (NA)
+* pcvr (NA)
+* poems (NA)
+* popEpi (NA)
+* popstudy (NA)
+* powerly (NA)
+* pre (NA)
+* pscore (NA)
+* Publish (NA)
+* qris (NA)
+* QTOCen (NA)
+* quantspec (NA)
+* quid (NA)
+* rddtools (NA)
+* rdflib (NA)
+* redland (NA)
+* riskRegression (NA)
+* rlme (NA)
+* robber (NA)
+* robmed (NA)
+* RQdeltaCT (NA)
+* rstanarm (NA)
+* scAnnotate (NA)
+* SCIntRuler (NA)
+* scMappR (NA)
+* scperturbR (NA)
+* scpi (NA)
+* SCpubr (NA)
+* SCRIP (NA)
+* SensMap (NA)
+* Seurat (NA)
+* shinyTempSignal (NA)
+* Signac (NA)
+* SimplyAgree (NA)
+* SNPassoc (NA)
+* snplinkage (NA)
+* ssdGSA (NA)
+* stabiliser (NA)
+* statsr (NA)
+* stR (NA)
+* survcompare (NA)
+* survex (NA)
+* survHE (NA)
+* TDA (NA)
+* TestAnaAPP (NA)
+* tidyEdSurvey (NA)
+* tidyseurat (NA)
+* tidyvpc (NA)
+* tinyarray (NA)
+* tramicp (NA)
+* tramvs (NA)
+* treeclim (NA)
+* TriDimRegression (NA)
+* TSrepr (NA)
+* vcfppR (NA)
+* visa (NA)
+* wally (NA)
+* zen4R (NA)
diff --git a/revdep/failures.md b/revdep/failures.md
index 9a2073633..05b9511ff 100644
--- a/revdep/failures.md
+++ b/revdep/failures.md
@@ -1 +1,11464 @@
-*Wow, no problems at all. :)*
\ No newline at end of file
+# adjustedCurves
+
+
+
+* Version: 0.11.2
+* GitHub: https://github.com/RobinDenz1/adjustedCurves
+* Source code: https://github.com/cran/adjustedCurves
+* Date/Publication: 2024-07-29 14:30:02 UTC
+* Number of recursive dependencies: 174
+
+Run `revdepcheck::cloud_details(, "adjustedCurves")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/adjustedCurves/new/adjustedCurves.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘adjustedCurves/DESCRIPTION’ ... OK
+...
+--- finished re-building ‘plot_customization.rmd’
+
+SUMMARY: processing the following file failed:
+ ‘introduction.Rmd’
+
+Error: Vignette re-building failed.
+Execution halted
+
+* DONE
+Status: 2 ERRORs, 1 WARNING, 3 NOTEs
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/adjustedCurves/old/adjustedCurves.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘adjustedCurves/DESCRIPTION’ ... OK
+...
+--- finished re-building ‘plot_customization.rmd’
+
+SUMMARY: processing the following file failed:
+ ‘introduction.Rmd’
+
+Error: Vignette re-building failed.
+Execution halted
+
+* DONE
+Status: 2 ERRORs, 1 WARNING, 3 NOTEs
+
+
+
+
+
+```
+# ai
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/ai
+* Number of recursive dependencies: 44
+
+Run `revdepcheck::cloud_details(, "ai")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# apollo
+
+
+
+* Version: 0.3.4
+* GitHub: NA
+* Source code: https://github.com/cran/apollo
+* Date/Publication: 2024-10-01 21:30:08 UTC
+* Number of recursive dependencies: 78
+
+Run `revdepcheck::cloud_details(, "apollo")` for more info
+
+
+
+## In both
+
+* checking whether package ‘apollo’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/apollo/new/apollo.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘apollo’ ...
+** package ‘apollo’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/RcppEigen/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+In file included from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Core:205,
+ from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Dense:1,
+ from /usr/local/lib/R/site-library/RcppEigen/include/RcppEigenForward.h:28,
+ from /usr/local/lib/R/site-library/RcppEigen/include/RcppEigen.h:25,
+...
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘apollo’
+* removing ‘/tmp/workdir/apollo/new/apollo.Rcheck/apollo’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘apollo’ ...
+** package ‘apollo’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/RcppEigen/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+In file included from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Core:205,
+ from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Dense:1,
+ from /usr/local/lib/R/site-library/RcppEigen/include/RcppEigenForward.h:28,
+ from /usr/local/lib/R/site-library/RcppEigen/include/RcppEigen.h:25,
+...
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘apollo’
+* removing ‘/tmp/workdir/apollo/old/apollo.Rcheck/apollo’
+
+
+```
+# arealDB
+
+
+
+* Version: 0.6.3
+* GitHub: https://github.com/luckinet/arealDB
+* Source code: https://github.com/cran/arealDB
+* Date/Publication: 2023-07-03 10:00:02 UTC
+* Number of recursive dependencies: 109
+
+Run `revdepcheck::cloud_details(, "arealDB")` for more info
+
+
+
+## In both
+
+* checking whether package ‘arealDB’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/arealDB/new/arealDB.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘arealDB’ ...
+** package ‘arealDB’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in dyn.load(file, DLLpath = DLLpath, ...) :
+ unable to load shared object '/usr/local/lib/R/site-library/redland/libs/redland.so':
+ librdf.so.0: cannot open shared object file: No such file or directory
+Calls: ... asNamespace -> loadNamespace -> library.dynam -> dyn.load
+Execution halted
+ERROR: lazy loading failed for package ‘arealDB’
+* removing ‘/tmp/workdir/arealDB/new/arealDB.Rcheck/arealDB’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘arealDB’ ...
+** package ‘arealDB’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in dyn.load(file, DLLpath = DLLpath, ...) :
+ unable to load shared object '/usr/local/lib/R/site-library/redland/libs/redland.so':
+ librdf.so.0: cannot open shared object file: No such file or directory
+Calls: ... asNamespace -> loadNamespace -> library.dynam -> dyn.load
+Execution halted
+ERROR: lazy loading failed for package ‘arealDB’
+* removing ‘/tmp/workdir/arealDB/old/arealDB.Rcheck/arealDB’
+
+
+```
+# assessor
+
+
+
+* Version: 1.1.0
+* GitHub: https://github.com/jhlee1408/assessor
+* Source code: https://github.com/cran/assessor
+* Date/Publication: 2024-04-03 04:23:02 UTC
+* Number of recursive dependencies: 106
+
+Run `revdepcheck::cloud_details(, "assessor")` for more info
+
+
+
+## In both
+
+* checking whether package ‘assessor’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/assessor/new/assessor.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘assessor’ ...
+** package ‘assessor’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘assessor’
+* removing ‘/tmp/workdir/assessor/new/assessor.Rcheck/assessor’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘assessor’ ...
+** package ‘assessor’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘assessor’
+* removing ‘/tmp/workdir/assessor/old/assessor.Rcheck/assessor’
+
+
+```
+# atom4R
+
+
+
+* Version: 0.3-3
+* GitHub: https://github.com/eblondel/atom4R
+* Source code: https://github.com/cran/atom4R
+* Date/Publication: 2022-11-18 14:40:15 UTC
+* Number of recursive dependencies: 70
+
+Run `revdepcheck::cloud_details(, "atom4R")` for more info
+
+
+
+## In both
+
+* checking whether package ‘atom4R’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/atom4R/new/atom4R.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘atom4R’ ...
+** package ‘atom4R’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in dyn.load(file, DLLpath = DLLpath, ...) :
+ unable to load shared object '/usr/local/lib/R/site-library/redland/libs/redland.so':
+ librdf.so.0: cannot open shared object file: No such file or directory
+Calls: ... asNamespace -> loadNamespace -> library.dynam -> dyn.load
+Execution halted
+ERROR: lazy loading failed for package ‘atom4R’
+* removing ‘/tmp/workdir/atom4R/new/atom4R.Rcheck/atom4R’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘atom4R’ ...
+** package ‘atom4R’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in dyn.load(file, DLLpath = DLLpath, ...) :
+ unable to load shared object '/usr/local/lib/R/site-library/redland/libs/redland.so':
+ librdf.so.0: cannot open shared object file: No such file or directory
+Calls: ... asNamespace -> loadNamespace -> library.dynam -> dyn.load
+Execution halted
+ERROR: lazy loading failed for package ‘atom4R’
+* removing ‘/tmp/workdir/atom4R/old/atom4R.Rcheck/atom4R’
+
+
+```
+# BANAM
+
+
+
+* Version: 0.2.2
+* GitHub: NA
+* Source code: https://github.com/cran/BANAM
+* Date/Publication: 2024-12-03 10:30:02 UTC
+* Number of recursive dependencies: 127
+
+Run `revdepcheck::cloud_details(, "BANAM")` for more info
+
+
+
+## In both
+
+* checking whether package ‘BANAM’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/BANAM/new/BANAM.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘BANAM’ ...
+** package ‘BANAM’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** byte-compile and prepare package for lazy loading
+Error: package or namespace load failed for ‘BFpack’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Execution halted
+ERROR: lazy loading failed for package ‘BANAM’
+* removing ‘/tmp/workdir/BANAM/new/BANAM.Rcheck/BANAM’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘BANAM’ ...
+** package ‘BANAM’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** byte-compile and prepare package for lazy loading
+Error: package or namespace load failed for ‘BFpack’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Execution halted
+ERROR: lazy loading failed for package ‘BANAM’
+* removing ‘/tmp/workdir/BANAM/old/BANAM.Rcheck/BANAM’
+
+
+```
+# bayesCT
+
+
+
+* Version: 0.99.3
+* GitHub: https://github.com/thevaachandereng/bayesCT
+* Source code: https://github.com/cran/bayesCT
+* Date/Publication: 2020-07-01 09:30:02 UTC
+* Number of recursive dependencies: 121
+
+Run `revdepcheck::cloud_details(, "bayesCT")` for more info
+
+
+
+## In both
+
+* checking whether package ‘bayesCT’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/bayesCT/new/bayesCT.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘bayesCT’ ...
+** package ‘bayesCT’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘bayesCT’
+* removing ‘/tmp/workdir/bayesCT/new/bayesCT.Rcheck/bayesCT’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘bayesCT’ ...
+** package ‘bayesCT’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘bayesCT’
+* removing ‘/tmp/workdir/bayesCT/old/bayesCT.Rcheck/bayesCT’
+
+
+```
+# bayesDP
+
+
+
+* Version: 1.3.6
+* GitHub: https://github.com/graemeleehickey/bayesDP
+* Source code: https://github.com/cran/bayesDP
+* Date/Publication: 2022-01-30 22:20:02 UTC
+* Number of recursive dependencies: 79
+
+Run `revdepcheck::cloud_details(, "bayesDP")` for more info
+
+
+
+## In both
+
+* checking whether package ‘bayesDP’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/bayesDP/new/bayesDP.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘bayesDP’ ...
+** package ‘bayesDP’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c bdplm.cpp -o bdplm.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c ppexp.cpp -o ppexp.o
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o bayesDP.so RcppExports.o bdplm.o ppexp.o -llapack -lblas -lgfortran -lm -lquadmath -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/bayesDP/new/bayesDP.Rcheck/00LOCK-bayesDP/00new/bayesDP/libs
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘bayesDP’
+* removing ‘/tmp/workdir/bayesDP/new/bayesDP.Rcheck/bayesDP’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘bayesDP’ ...
+** package ‘bayesDP’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c bdplm.cpp -o bdplm.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c ppexp.cpp -o ppexp.o
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o bayesDP.so RcppExports.o bdplm.o ppexp.o -llapack -lblas -lgfortran -lm -lquadmath -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/bayesDP/old/bayesDP.Rcheck/00LOCK-bayesDP/00new/bayesDP/libs
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘bayesDP’
+* removing ‘/tmp/workdir/bayesDP/old/bayesDP.Rcheck/bayesDP’
+
+
+```
+# BayesFactor
+
+
+
+* Version: 0.9.12-4.7
+* GitHub: https://github.com/richarddmorey/BayesFactor
+* Source code: https://github.com/cran/BayesFactor
+* Date/Publication: 2024-01-24 15:02:50 UTC
+* Number of recursive dependencies: 72
+
+Run `revdepcheck::cloud_details(, "BayesFactor")` for more info
+
+
+
+## In both
+
+* checking whether package ‘BayesFactor’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/BayesFactor/new/BayesFactor.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘BayesFactor’ ...
+** package ‘BayesFactor’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppEigen/include' -I/usr/local/include -fpic -g -O2 -c RcppCallback.cpp -o RcppCallback.o
+In file included from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Core:205,
+ from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Dense:1,
+ from /usr/local/lib/R/site-library/RcppEigen/include/RcppEigenForward.h:28,
+ from /usr/local/lib/R/site-library/RcppEigen/include/RcppEigen.h:25,
+...
+** R
+** data
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘BayesFactor’
+* removing ‘/tmp/workdir/BayesFactor/new/BayesFactor.Rcheck/BayesFactor’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘BayesFactor’ ...
+** package ‘BayesFactor’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppEigen/include' -I/usr/local/include -fpic -g -O2 -c RcppCallback.cpp -o RcppCallback.o
+In file included from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Core:205,
+ from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Dense:1,
+ from /usr/local/lib/R/site-library/RcppEigen/include/RcppEigenForward.h:28,
+ from /usr/local/lib/R/site-library/RcppEigen/include/RcppEigen.h:25,
+...
+** R
+** data
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘BayesFactor’
+* removing ‘/tmp/workdir/BayesFactor/old/BayesFactor.Rcheck/BayesFactor’
+
+
+```
+# bbknnR
+
+
+
+* Version: 1.1.1
+* GitHub: https://github.com/ycli1995/bbknnR
+* Source code: https://github.com/cran/bbknnR
+* Date/Publication: 2024-02-13 10:20:03 UTC
+* Number of recursive dependencies: 162
+
+Run `revdepcheck::cloud_details(, "bbknnR")` for more info
+
+
+
+## In both
+
+* checking whether package ‘bbknnR’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/bbknnR/new/bbknnR.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘bbknnR’ ...
+** package ‘bbknnR’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c data_manipulation.cpp -o data_manipulation.o
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o bbknnR.so RcppExports.o data_manipulation.o -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/bbknnR/new/bbknnR.Rcheck/00LOCK-bbknnR/00new/bbknnR/libs
+** R
+...
+Warning: namespace ‘Seurat’ is not available and has been replaced
+by .GlobalEnv when processing object ‘panc8_small’
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.4 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘bbknnR’
+* removing ‘/tmp/workdir/bbknnR/new/bbknnR.Rcheck/bbknnR’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘bbknnR’ ...
+** package ‘bbknnR’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c data_manipulation.cpp -o data_manipulation.o
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o bbknnR.so RcppExports.o data_manipulation.o -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/bbknnR/old/bbknnR.Rcheck/00LOCK-bbknnR/00new/bbknnR/libs
+** R
+...
+Warning: namespace ‘Seurat’ is not available and has been replaced
+by .GlobalEnv when processing object ‘panc8_small’
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.4 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘bbknnR’
+* removing ‘/tmp/workdir/bbknnR/old/bbknnR.Rcheck/bbknnR’
+
+
+```
+# BCClong
+
+
+
+* Version: 1.0.3
+* GitHub: NA
+* Source code: https://github.com/cran/BCClong
+* Date/Publication: 2024-06-24 00:00:02 UTC
+* Number of recursive dependencies: 145
+
+Run `revdepcheck::cloud_details(, "BCClong")` for more info
+
+
+
+## In both
+
+* checking whether package ‘BCClong’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/BCClong/new/BCClong.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘BCClong’ ...
+** package ‘BCClong’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c BCC.cpp -o BCC.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c Likelihood.cpp -o Likelihood.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c c_which.cpp -o c_which.o
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o BCClong.so BCC.o Likelihood.o RcppExports.o c_which.o -fopenmp -llapack -lblas -lgfortran -lm -lquadmath -L/opt/R/4.3.1/lib/R/lib -lR
+...
+** R
+** data
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘BCClong’
+* removing ‘/tmp/workdir/BCClong/new/BCClong.Rcheck/BCClong’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘BCClong’ ...
+** package ‘BCClong’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c BCC.cpp -o BCC.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c Likelihood.cpp -o Likelihood.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c c_which.cpp -o c_which.o
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o BCClong.so BCC.o Likelihood.o RcppExports.o c_which.o -fopenmp -llapack -lblas -lgfortran -lm -lquadmath -L/opt/R/4.3.1/lib/R/lib -lR
+...
+** R
+** data
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘BCClong’
+* removing ‘/tmp/workdir/BCClong/old/BCClong.Rcheck/BCClong’
+
+
+```
+# BFpack
+
+
+
+* Version: 1.4.0
+* GitHub: https://github.com/jomulder/BFpack
+* Source code: https://github.com/cran/BFpack
+* Date/Publication: 2024-12-03 07:40:01 UTC
+* Number of recursive dependencies: 137
+
+Run `revdepcheck::cloud_details(, "BFpack")` for more info
+
+
+
+## In both
+
+* checking whether package ‘BFpack’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/BFpack/new/BFpack.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘BFpack’ ...
+** package ‘BFpack’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C compiler: ‘gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using Fortran compiler: ‘GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+gcc -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c BFpack_init.c -o BFpack_init.o
+gfortran -fpic -g -O2 -c bct_mixedordinal.f90 -o bct_mixedordinal.o
+gfortran -fpic -g -O2 -c bct_prior.f90 -o bct_prior.o
+gcc -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o BFpack.so BFpack_init.o bct_mixedordinal.o bct_prior.o -llapack -lblas -lgfortran -lm -lquadmath -L/opt/R/4.3.1/lib/R/lib -lR
+...
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘BFpack’
+* removing ‘/tmp/workdir/BFpack/new/BFpack.Rcheck/BFpack’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘BFpack’ ...
+** package ‘BFpack’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C compiler: ‘gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using Fortran compiler: ‘GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+gcc -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c BFpack_init.c -o BFpack_init.o
+gfortran -fpic -g -O2 -c bct_mixedordinal.f90 -o bct_mixedordinal.o
+gfortran -fpic -g -O2 -c bct_prior.f90 -o bct_prior.o
+gcc -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o BFpack.so BFpack_init.o bct_mixedordinal.o bct_prior.o -llapack -lblas -lgfortran -lm -lquadmath -L/opt/R/4.3.1/lib/R/lib -lR
+...
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘BFpack’
+* removing ‘/tmp/workdir/BFpack/old/BFpack.Rcheck/BFpack’
+
+
+```
+# BGGM
+
+
+
+* Version: 2.1.5
+* GitHub: https://github.com/donaldRwilliams/BGGM
+* Source code: https://github.com/cran/BGGM
+* Date/Publication: 2024-12-22 21:40:02 UTC
+* Number of recursive dependencies: 210
+
+Run `revdepcheck::cloud_details(, "BGGM")` for more info
+
+
+
+## In both
+
+* checking whether package ‘BGGM’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/BGGM/new/BGGM.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘BGGM’ ...
+** package ‘BGGM’ successfully unpacked and MD5 sums checked
+** using staged installation
+configure: creating ./config.status
+config.status: creating src/Makevars
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++17
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -DARMA_NO_DEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/RcppDist/include' -I'/usr/local/lib/R/site-library/RcppProgress/include' -I/usr/local/include -I../inst/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -DARMA_NO_DEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/RcppDist/include' -I'/usr/local/lib/R/site-library/RcppProgress/include' -I/usr/local/include -I../inst/include -fpic -g -O2 -c bggm_fast.cpp -o bggm_fast.o
+...
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘BGGM’
+* removing ‘/tmp/workdir/BGGM/new/BGGM.Rcheck/BGGM’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘BGGM’ ...
+** package ‘BGGM’ successfully unpacked and MD5 sums checked
+** using staged installation
+configure: creating ./config.status
+config.status: creating src/Makevars
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++17
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -DARMA_NO_DEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/RcppDist/include' -I'/usr/local/lib/R/site-library/RcppProgress/include' -I/usr/local/include -I../inst/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -DARMA_NO_DEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/RcppDist/include' -I'/usr/local/lib/R/site-library/RcppProgress/include' -I/usr/local/include -I../inst/include -fpic -g -O2 -c bggm_fast.cpp -o bggm_fast.o
+...
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘BGGM’
+* removing ‘/tmp/workdir/BGGM/old/BGGM.Rcheck/BGGM’
+
+
+```
+# bnnSurvival
+
+
+
+* Version: 0.1.5
+* GitHub: NA
+* Source code: https://github.com/cran/bnnSurvival
+* Date/Publication: 2017-05-10 15:37:49 UTC
+* Number of recursive dependencies: 117
+
+Run `revdepcheck::cloud_details(, "bnnSurvival")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/bnnSurvival/new/bnnSurvival.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘bnnSurvival/DESCRIPTION’ ... OK
+...
+ 5. └─base::loadNamespace(x)
+ 6. └─base::withRestarts(stop(cond), retry_loadNamespace = function() NULL)
+ 7. └─base (local) withOneRestart(expr, restarts[[1L]])
+ 8. └─base (local) doWithOneRestart(return(expr), restart)
+
+ [ FAIL 1 | WARN 0 | SKIP 0 | PASS 5 ]
+ Error: Test failures
+ Execution halted
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/bnnSurvival/old/bnnSurvival.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘bnnSurvival/DESCRIPTION’ ... OK
+...
+ 5. └─base::loadNamespace(x)
+ 6. └─base::withRestarts(stop(cond), retry_loadNamespace = function() NULL)
+ 7. └─base (local) withOneRestart(expr, restarts[[1L]])
+ 8. └─base (local) doWithOneRestart(return(expr), restart)
+
+ [ FAIL 1 | WARN 0 | SKIP 0 | PASS 5 ]
+ Error: Test failures
+ Execution halted
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# BSTZINB
+
+
+
+* Version: 1.0.1
+* GitHub: https://github.com/SumanM47/BSTZINB
+* Source code: https://github.com/cran/BSTZINB
+* Date/Publication: 2024-10-31 22:50:02 UTC
+* Number of recursive dependencies: 110
+
+Run `revdepcheck::cloud_details(, "BSTZINB")` for more info
+
+
+
+## In both
+
+* checking whether package ‘BSTZINB’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/BSTZINB/new/BSTZINB.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘BSTZINB’ ...
+** package ‘BSTZINB’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘BSTZINB’
+* removing ‘/tmp/workdir/BSTZINB/new/BSTZINB.Rcheck/BSTZINB’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘BSTZINB’ ...
+** package ‘BSTZINB’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘BSTZINB’
+* removing ‘/tmp/workdir/BSTZINB/old/BSTZINB.Rcheck/BSTZINB’
+
+
+```
+# BuyseTest
+
+
+
+* Version: 3.0.5
+* GitHub: https://github.com/bozenne/BuyseTest
+* Source code: https://github.com/cran/BuyseTest
+* Date/Publication: 2024-10-13 21:40:02 UTC
+* Number of recursive dependencies: 132
+
+Run `revdepcheck::cloud_details(, "BuyseTest")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/BuyseTest/new/BuyseTest.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘BuyseTest/DESCRIPTION’ ... OK
+...
+* this is package ‘BuyseTest’ version ‘3.0.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required but not available: ‘riskRegression’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/BuyseTest/old/BuyseTest.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘BuyseTest/DESCRIPTION’ ... OK
+...
+* this is package ‘BuyseTest’ version ‘3.0.5’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required but not available: ‘riskRegression’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# CACIMAR
+
+
+
+* Version: 1.0.0
+* GitHub: https://github.com/jiang-junyao/CACIMAR
+* Source code: https://github.com/cran/CACIMAR
+* Date/Publication: 2022-05-18 08:20:02 UTC
+* Number of recursive dependencies: 161
+
+Run `revdepcheck::cloud_details(, "CACIMAR")` for more info
+
+
+
+## In both
+
+* checking whether package ‘CACIMAR’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/CACIMAR/new/CACIMAR.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘CACIMAR’ ...
+** package ‘CACIMAR’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error: package or namespace load failed for ‘SeuratObject’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
+ namespace ‘Matrix’ 1.5-4.1 is being loaded, but >= 1.6.4 is required
+Execution halted
+ERROR: lazy loading failed for package ‘CACIMAR’
+* removing ‘/tmp/workdir/CACIMAR/new/CACIMAR.Rcheck/CACIMAR’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘CACIMAR’ ...
+** package ‘CACIMAR’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error: package or namespace load failed for ‘SeuratObject’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
+ namespace ‘Matrix’ 1.5-4.1 is being loaded, but >= 1.6.4 is required
+Execution halted
+ERROR: lazy loading failed for package ‘CACIMAR’
+* removing ‘/tmp/workdir/CACIMAR/old/CACIMAR.Rcheck/CACIMAR’
+
+
+```
+# censored
+
+
+
+* Version: 0.3.2
+* GitHub: https://github.com/tidymodels/censored
+* Source code: https://github.com/cran/censored
+* Date/Publication: 2024-06-11 18:10:02 UTC
+* Number of recursive dependencies: 163
+
+Run `revdepcheck::cloud_details(, "censored")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/censored/new/censored.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘censored/DESCRIPTION’ ... OK
+...
+* this is package ‘censored’ version ‘0.3.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required and available but unsuitable version: ‘survival’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/censored/old/censored.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘censored/DESCRIPTION’ ... OK
+...
+* this is package ‘censored’ version ‘0.3.2’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required and available but unsuitable version: ‘survival’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# Certara.VPCResults
+
+
+
+* Version: 3.0.2
+* GitHub: NA
+* Source code: https://github.com/cran/Certara.VPCResults
+* Date/Publication: 2024-12-02 15:30:02 UTC
+* Number of recursive dependencies: 141
+
+Run `revdepcheck::cloud_details(, "Certara.VPCResults")` for more info
+
+
+
+## In both
+
+* checking whether package ‘Certara.VPCResults’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/Certara.VPCResults/new/Certara.VPCResults.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘Certara.VPCResults’ ...
+** package ‘Certara.VPCResults’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘Certara.VPCResults’
+* removing ‘/tmp/workdir/Certara.VPCResults/new/Certara.VPCResults.Rcheck/Certara.VPCResults’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘Certara.VPCResults’ ...
+** package ‘Certara.VPCResults’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘Certara.VPCResults’
+* removing ‘/tmp/workdir/Certara.VPCResults/old/Certara.VPCResults.Rcheck/Certara.VPCResults’
+
+
+```
+# CGPfunctions
+
+
+
+* Version: 0.6.3
+* GitHub: https://github.com/ibecav/CGPfunctions
+* Source code: https://github.com/cran/CGPfunctions
+* Date/Publication: 2020-11-12 14:50:09 UTC
+* Number of recursive dependencies: 155
+
+Run `revdepcheck::cloud_details(, "CGPfunctions")` for more info
+
+
+
+## In both
+
+* checking whether package ‘CGPfunctions’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/CGPfunctions/new/CGPfunctions.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘CGPfunctions’ ...
+** package ‘CGPfunctions’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘CGPfunctions’
+* removing ‘/tmp/workdir/CGPfunctions/new/CGPfunctions.Rcheck/CGPfunctions’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘CGPfunctions’ ...
+** package ‘CGPfunctions’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘CGPfunctions’
+* removing ‘/tmp/workdir/CGPfunctions/old/CGPfunctions.Rcheck/CGPfunctions’
+
+
+```
+# chipPCR
+
+
+
+* Version: 1.0-2
+* GitHub: https://github.com/PCRuniversum/chipPCR
+* Source code: https://github.com/cran/chipPCR
+* Date/Publication: 2021-03-05 07:50:03 UTC
+* Number of recursive dependencies: 141
+
+Run `revdepcheck::cloud_details(, "chipPCR")` for more info
+
+
+
+## In both
+
+* checking whether package ‘chipPCR’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/chipPCR/new/chipPCR.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘chipPCR’ ...
+** package ‘chipPCR’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘chipPCR’
+* removing ‘/tmp/workdir/chipPCR/new/chipPCR.Rcheck/chipPCR’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘chipPCR’ ...
+** package ‘chipPCR’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘chipPCR’
+* removing ‘/tmp/workdir/chipPCR/old/chipPCR.Rcheck/chipPCR’
+
+
+```
+# cia
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/cia
+* Number of recursive dependencies: 122
+
+Run `revdepcheck::cloud_details(, "cia")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# clustermq
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/clustermq
+* Number of recursive dependencies: 108
+
+Run `revdepcheck::cloud_details(, "clustermq")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# cmmr
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/cmmr
+* Number of recursive dependencies: 36
+
+Run `revdepcheck::cloud_details(, "cmmr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# COMBO
+
+
+
+* Version: 1.2.0
+* GitHub: NA
+* Source code: https://github.com/cran/COMBO
+* Date/Publication: 2024-10-30 15:50:02 UTC
+* Number of recursive dependencies: 122
+
+Run `revdepcheck::cloud_details(, "COMBO")` for more info
+
+
+
+## In both
+
+* checking whether package ‘COMBO’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/COMBO/new/COMBO.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘COMBO’ ...
+** package ‘COMBO’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘COMBO’
+* removing ‘/tmp/workdir/COMBO/new/COMBO.Rcheck/COMBO’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘COMBO’ ...
+** package ‘COMBO’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘COMBO’
+* removing ‘/tmp/workdir/COMBO/old/COMBO.Rcheck/COMBO’
+
+
+```
+# contsurvplot
+
+
+
+* Version: 0.2.1
+* GitHub: https://github.com/RobinDenz1/contsurvplot
+* Source code: https://github.com/cran/contsurvplot
+* Date/Publication: 2023-08-15 08:00:03 UTC
+* Number of recursive dependencies: 156
+
+Run `revdepcheck::cloud_details(, "contsurvplot")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/contsurvplot/new/contsurvplot.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘contsurvplot/DESCRIPTION’ ... OK
+...
+* this is package ‘contsurvplot’ version ‘0.2.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required but not available: ‘riskRegression’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/contsurvplot/old/contsurvplot.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘contsurvplot/DESCRIPTION’ ... OK
+...
+* this is package ‘contsurvplot’ version ‘0.2.1’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required but not available: ‘riskRegression’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# counterfactuals
+
+
+
+* Version: 0.1.6
+* GitHub: https://github.com/dandls/counterfactuals
+* Source code: https://github.com/cran/counterfactuals
+* Date/Publication: 2024-10-17 12:00:06 UTC
+* Number of recursive dependencies: 217
+
+Run `revdepcheck::cloud_details(, "counterfactuals")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/counterfactuals/new/counterfactuals.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘counterfactuals/DESCRIPTION’ ... OK
+...
+* checking examples ... OK
+* checking for unstated dependencies in vignettes ... OK
+* checking package vignettes in ‘inst/doc’ ... OK
+* checking running R code from vignettes ... NONE
+ ‘how-to-add-new-cf-methods.html.asis’ using ‘UTF-8’... OK
+ ‘introduction.html.asis’ using ‘UTF-8’... OK
+ ‘other_models.html.asis’ using ‘UTF-8’... OK
+* checking re-building of vignette outputs ... OK
+* DONE
+Status: 1 NOTE
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/counterfactuals/old/counterfactuals.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘counterfactuals/DESCRIPTION’ ... OK
+...
+* checking examples ... OK
+* checking for unstated dependencies in vignettes ... OK
+* checking package vignettes in ‘inst/doc’ ... OK
+* checking running R code from vignettes ... NONE
+ ‘how-to-add-new-cf-methods.html.asis’ using ‘UTF-8’... OK
+ ‘introduction.html.asis’ using ‘UTF-8’... OK
+ ‘other_models.html.asis’ using ‘UTF-8’... OK
+* checking re-building of vignette outputs ... OK
+* DONE
+Status: 1 NOTE
+
+
+
+
+
+```
+# CRMetrics
+
+
+
+* Version: 0.3.2
+* GitHub: https://github.com/khodosevichlab/CRMetrics
+* Source code: https://github.com/cran/CRMetrics
+* Date/Publication: 2024-11-08 00:20:06 UTC
+* Number of recursive dependencies: 239
+
+Run `revdepcheck::cloud_details(, "CRMetrics")` for more info
+
+
+
+## In both
+
+* checking whether package ‘CRMetrics’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/CRMetrics/new/CRMetrics.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘CRMetrics’ ...
+** package ‘CRMetrics’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘CRMetrics’
+* removing ‘/tmp/workdir/CRMetrics/new/CRMetrics.Rcheck/CRMetrics’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘CRMetrics’ ...
+** package ‘CRMetrics’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘CRMetrics’
+* removing ‘/tmp/workdir/CRMetrics/old/CRMetrics.Rcheck/CRMetrics’
+
+
+```
+# ctsem
+
+
+
+* Version: 3.10.1
+* GitHub: https://github.com/cdriveraus/ctsem
+* Source code: https://github.com/cran/ctsem
+* Date/Publication: 2024-08-19 14:40:06 UTC
+* Number of recursive dependencies: 157
+
+Run `revdepcheck::cloud_details(, "ctsem")` for more info
+
+
+
+## In both
+
+* checking whether package ‘ctsem’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/ctsem/new/ctsem.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘ctsem’ ...
+** package ‘ctsem’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++17
+
+
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I"../inst/include" -I"/usr/local/lib/R/site-library/StanHeaders/include/src" -DBOOST_DISABLE_ASSERTS -DEIGEN_NO_DEBUG -DBOOST_MATH_OVERFLOW_ERROR_POLICY=errno_on_error -DUSE_STANC3 -D_HAS_AUTO_PTR_ETC=0 -I'/usr/local/lib/R/site-library/BH/include' -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppEigen/include' -I'/usr/local/lib/R/site-library/RcppParallel/include' -I'/usr/local/lib/R/site-library/rstan/include' -I'/usr/local/lib/R/site-library/StanHeaders/include' -I/usr/local/include -I'/usr/local/lib/R/site-library/RcppParallel/include' -D_REENTRANT -DSTAN_THREADS -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+In file included from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Core:205,
+...
+/usr/local/lib/R/site-library/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:22:0: required from ‘double stan::mcmc::dense_e_metric::T(stan::mcmc::dense_e_point&) [with Model = model_ctsm_namespace::model_ctsm; BaseRNG = boost::random::additive_combine_engine, boost::random::linear_congruential_engine >]’
+/usr/local/lib/R/site-library/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:21:0: required from here
+/usr/local/lib/R/site-library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__m128d’} [-Wignored-attributes]
+ 654 | return internal::first_aligned::alignment),Derived>(m);
+ | ^~~~~~~~~
+g++: fatal error: Killed signal terminated program cc1plus
+compilation terminated.
+make: *** [/opt/R/4.3.1/lib/R/etc/Makeconf:198: stanExports_ctsm.o] Error 1
+ERROR: compilation failed for package ‘ctsem’
+* removing ‘/tmp/workdir/ctsem/new/ctsem.Rcheck/ctsem’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘ctsem’ ...
+** package ‘ctsem’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++17
+
+
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I"../inst/include" -I"/usr/local/lib/R/site-library/StanHeaders/include/src" -DBOOST_DISABLE_ASSERTS -DEIGEN_NO_DEBUG -DBOOST_MATH_OVERFLOW_ERROR_POLICY=errno_on_error -DUSE_STANC3 -D_HAS_AUTO_PTR_ETC=0 -I'/usr/local/lib/R/site-library/BH/include' -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppEigen/include' -I'/usr/local/lib/R/site-library/RcppParallel/include' -I'/usr/local/lib/R/site-library/rstan/include' -I'/usr/local/lib/R/site-library/StanHeaders/include' -I/usr/local/include -I'/usr/local/lib/R/site-library/RcppParallel/include' -D_REENTRANT -DSTAN_THREADS -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+In file included from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Core:205,
+...
+/usr/local/lib/R/site-library/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:22:0: required from ‘double stan::mcmc::dense_e_metric::T(stan::mcmc::dense_e_point&) [with Model = model_ctsm_namespace::model_ctsm; BaseRNG = boost::random::additive_combine_engine, boost::random::linear_congruential_engine >]’
+/usr/local/lib/R/site-library/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:21:0: required from here
+/usr/local/lib/R/site-library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__m128d’} [-Wignored-attributes]
+ 654 | return internal::first_aligned::alignment),Derived>(m);
+ | ^~~~~~~~~
+g++: fatal error: Killed signal terminated program cc1plus
+compilation terminated.
+make: *** [/opt/R/4.3.1/lib/R/etc/Makeconf:198: stanExports_ctsm.o] Error 1
+ERROR: compilation failed for package ‘ctsem’
+* removing ‘/tmp/workdir/ctsem/old/ctsem.Rcheck/ctsem’
+
+
+```
+# dartR.base
+
+
+
+* Version: 0.98
+* GitHub: NA
+* Source code: https://github.com/cran/dartR.base
+* Date/Publication: 2024-09-19 13:20:02 UTC
+* Number of recursive dependencies: 285
+
+Run `revdepcheck::cloud_details(, "dartR.base")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/dartR.base/new/dartR.base.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dartR.base/DESCRIPTION’ ... OK
+...
+* this is package ‘dartR.base’ version ‘0.98’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required but not available: ‘SNPassoc’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/dartR.base/old/dartR.base.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dartR.base/DESCRIPTION’ ... OK
+...
+* this is package ‘dartR.base’ version ‘0.98’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required but not available: ‘SNPassoc’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# dataone
+
+
+
+* Version: 2.2.2
+* GitHub: https://github.com/DataONEorg/rdataone
+* Source code: https://github.com/cran/dataone
+* Date/Publication: 2022-06-10 19:30:02 UTC
+* Number of recursive dependencies: 63
+
+Run `revdepcheck::cloud_details(, "dataone")` for more info
+
+
+
+## In both
+
+* checking whether package ‘dataone’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/dataone/new/dataone.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘dataone’ ...
+** package ‘dataone’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in dyn.load(file, DLLpath = DLLpath, ...) :
+ unable to load shared object '/usr/local/lib/R/site-library/redland/libs/redland.so':
+ librdf.so.0: cannot open shared object file: No such file or directory
+Calls: ... namespaceImport -> loadNamespace -> library.dynam -> dyn.load
+Execution halted
+ERROR: lazy loading failed for package ‘dataone’
+* removing ‘/tmp/workdir/dataone/new/dataone.Rcheck/dataone’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘dataone’ ...
+** package ‘dataone’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in dyn.load(file, DLLpath = DLLpath, ...) :
+ unable to load shared object '/usr/local/lib/R/site-library/redland/libs/redland.so':
+ librdf.so.0: cannot open shared object file: No such file or directory
+Calls: ... namespaceImport -> loadNamespace -> library.dynam -> dyn.load
+Execution halted
+ERROR: lazy loading failed for package ‘dataone’
+* removing ‘/tmp/workdir/dataone/old/dataone.Rcheck/dataone’
+
+
+```
+# datapack
+
+
+
+* Version: 1.4.1
+* GitHub: https://github.com/ropensci/datapack
+* Source code: https://github.com/cran/datapack
+* Date/Publication: 2022-06-10 19:40:01 UTC
+* Number of recursive dependencies: 63
+
+Run `revdepcheck::cloud_details(, "datapack")` for more info
+
+
+
+## In both
+
+* checking whether package ‘datapack’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/datapack/new/datapack.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘datapack’ ...
+** package ‘datapack’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in dyn.load(file, DLLpath = DLLpath, ...) :
+ unable to load shared object '/usr/local/lib/R/site-library/redland/libs/redland.so':
+ librdf.so.0: cannot open shared object file: No such file or directory
+Calls: ... namespaceImport -> loadNamespace -> library.dynam -> dyn.load
+Execution halted
+ERROR: lazy loading failed for package ‘datapack’
+* removing ‘/tmp/workdir/datapack/new/datapack.Rcheck/datapack’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘datapack’ ...
+** package ‘datapack’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in dyn.load(file, DLLpath = DLLpath, ...) :
+ unable to load shared object '/usr/local/lib/R/site-library/redland/libs/redland.so':
+ librdf.so.0: cannot open shared object file: No such file or directory
+Calls: ... namespaceImport -> loadNamespace -> library.dynam -> dyn.load
+Execution halted
+ERROR: lazy loading failed for package ‘datapack’
+* removing ‘/tmp/workdir/datapack/old/datapack.Rcheck/datapack’
+
+
+```
+# deeptrafo
+
+
+
+* Version: 1.0-0
+* GitHub: https://github.com/neural-structured-additive-learning/deeptrafo
+* Source code: https://github.com/cran/deeptrafo
+* Date/Publication: 2024-12-03 18:40:02 UTC
+* Number of recursive dependencies: 109
+
+Run `revdepcheck::cloud_details(, "deeptrafo")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/deeptrafo/new/deeptrafo.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘deeptrafo/DESCRIPTION’ ... OK
+...
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required but not available: ‘mlt’
+
+Packages suggested but not available for checking: 'tram', 'cotram'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/deeptrafo/old/deeptrafo.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘deeptrafo/DESCRIPTION’ ... OK
+...
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required but not available: ‘mlt’
+
+Packages suggested but not available for checking: 'tram', 'cotram'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# DepthProc
+
+
+
+* Version: 2.1.5
+* GitHub: https://github.com/zzawadz/DepthProc
+* Source code: https://github.com/cran/DepthProc
+* Date/Publication: 2022-02-03 20:30:02 UTC
+* Number of recursive dependencies: 133
+
+Run `revdepcheck::cloud_details(, "DepthProc")` for more info
+
+
+
+## In both
+
+* checking whether package ‘DepthProc’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/DepthProc/new/DepthProc.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘DepthProc’ ...
+** package ‘DepthProc’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++11
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c Depth.cpp -o Depth.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c LocationEstimators.cpp -o LocationEstimators.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c LocationScaleDepth.cpp -o LocationScaleDepth.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c LocationScaleDepthCPP.cpp -o LocationScaleDepthCPP.o
+...
+installing to /tmp/workdir/DepthProc/new/DepthProc.Rcheck/00LOCK-DepthProc/00new/DepthProc/libs
+** R
+** data
+** inst
+** byte-compile and prepare package for lazy loading
+Error: package or namespace load failed for ‘np’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Execution halted
+ERROR: lazy loading failed for package ‘DepthProc’
+* removing ‘/tmp/workdir/DepthProc/new/DepthProc.Rcheck/DepthProc’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘DepthProc’ ...
+** package ‘DepthProc’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++11
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c Depth.cpp -o Depth.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c LocationEstimators.cpp -o LocationEstimators.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c LocationScaleDepth.cpp -o LocationScaleDepth.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c LocationScaleDepthCPP.cpp -o LocationScaleDepthCPP.o
+...
+installing to /tmp/workdir/DepthProc/old/DepthProc.Rcheck/00LOCK-DepthProc/00new/DepthProc/libs
+** R
+** data
+** inst
+** byte-compile and prepare package for lazy loading
+Error: package or namespace load failed for ‘np’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Execution halted
+ERROR: lazy loading failed for package ‘DepthProc’
+* removing ‘/tmp/workdir/DepthProc/old/DepthProc.Rcheck/DepthProc’
+
+
+```
+# dibble
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/dibble
+* Number of recursive dependencies: 51
+
+Run `revdepcheck::cloud_details(, "dibble")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# drtmle
+
+
+
+* Version: 1.1.2
+* GitHub: https://github.com/benkeser/drtmle
+* Source code: https://github.com/cran/drtmle
+* Date/Publication: 2023-01-05 19:50:02 UTC
+* Number of recursive dependencies: 74
+
+Run `revdepcheck::cloud_details(, "drtmle")` for more info
+
+
+
+## In both
+
+* checking whether package ‘drtmle’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/drtmle/new/drtmle.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘drtmle’ ...
+** package ‘drtmle’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘drtmle’
+* removing ‘/tmp/workdir/drtmle/new/drtmle.Rcheck/drtmle’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘drtmle’ ...
+** package ‘drtmle’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘drtmle’
+* removing ‘/tmp/workdir/drtmle/old/drtmle.Rcheck/drtmle’
+
+
+```
+# dscoreMSM
+
+
+
+* Version: 0.1.0
+* GitHub: NA
+* Source code: https://github.com/cran/dscoreMSM
+* Date/Publication: 2024-12-13 16:40:02 UTC
+* Number of recursive dependencies: 121
+
+Run `revdepcheck::cloud_details(, "dscoreMSM")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/dscoreMSM/new/dscoreMSM.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dscoreMSM/DESCRIPTION’ ... OK
+...
+* checking installed files from ‘inst/doc’ ... OK
+* checking files in ‘vignettes’ ... OK
+* checking examples ... OK
+* checking for unstated dependencies in vignettes ... OK
+* checking package vignettes in ‘inst/doc’ ... OK
+* checking running R code from vignettes ... OK
+ ‘dscoreMSM.Rmd’ using ‘UTF-8’... OK
+* checking re-building of vignette outputs ... OK
+* DONE
+Status: OK
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/dscoreMSM/old/dscoreMSM.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘dscoreMSM/DESCRIPTION’ ... OK
+...
+* checking installed files from ‘inst/doc’ ... OK
+* checking files in ‘vignettes’ ... OK
+* checking examples ... OK
+* checking for unstated dependencies in vignettes ... OK
+* checking package vignettes in ‘inst/doc’ ... OK
+* checking running R code from vignettes ... OK
+ ‘dscoreMSM.Rmd’ using ‘UTF-8’... OK
+* checking re-building of vignette outputs ... OK
+* DONE
+Status: OK
+
+
+
+
+
+```
+# DWLS
+
+
+
+* Version: 0.1.0
+* GitHub: https://github.com/sistia01/DWLS
+* Source code: https://github.com/cran/DWLS
+* Date/Publication: 2022-05-24 09:20:01 UTC
+* Number of recursive dependencies: 183
+
+Run `revdepcheck::cloud_details(, "DWLS")` for more info
+
+
+
+## In both
+
+* checking whether package ‘DWLS’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/DWLS/new/DWLS.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘DWLS’ ...
+** package ‘DWLS’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.4 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘DWLS’
+* removing ‘/tmp/workdir/DWLS/new/DWLS.Rcheck/DWLS’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘DWLS’ ...
+** package ‘DWLS’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.4 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘DWLS’
+* removing ‘/tmp/workdir/DWLS/old/DWLS.Rcheck/DWLS’
+
+
+```
+# easybgm
+
+
+
+* Version: 0.2.1
+* GitHub: https://github.com/KarolineHuth/easybgm
+* Source code: https://github.com/cran/easybgm
+* Date/Publication: 2024-10-17 08:30:02 UTC
+* Number of recursive dependencies: 179
+
+Run `revdepcheck::cloud_details(, "easybgm")` for more info
+
+
+
+## In both
+
+* checking whether package ‘easybgm’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/easybgm/new/easybgm.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘easybgm’ ...
+** package ‘easybgm’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘easybgm’
+* removing ‘/tmp/workdir/easybgm/new/easybgm.Rcheck/easybgm’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘easybgm’ ...
+** package ‘easybgm’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘easybgm’
+* removing ‘/tmp/workdir/easybgm/old/easybgm.Rcheck/easybgm’
+
+
+```
+# EcoEnsemble
+
+
+
+* Version: 1.1.0
+* GitHub: https://github.com/CefasRepRes/EcoEnsemble
+* Source code: https://github.com/cran/EcoEnsemble
+* Date/Publication: 2024-08-19 17:20:06 UTC
+* Number of recursive dependencies: 90
+
+Run `revdepcheck::cloud_details(, "EcoEnsemble")` for more info
+
+
+
+## In both
+
+* checking whether package ‘EcoEnsemble’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/EcoEnsemble/new/EcoEnsemble.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘EcoEnsemble’ ...
+** package ‘EcoEnsemble’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++17
+
+
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I"../inst/include" -I"/usr/local/lib/R/site-library/StanHeaders/include/src" -DBOOST_DISABLE_ASSERTS -DEIGEN_NO_DEBUG -DBOOST_MATH_OVERFLOW_ERROR_POLICY=errno_on_error -DUSE_STANC3 -D_HAS_AUTO_PTR_ETC=0 -I'/usr/local/lib/R/site-library/BH/include' -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppEigen/include' -I'/usr/local/lib/R/site-library/RcppParallel/include' -I'/usr/local/lib/R/site-library/rstan/include' -I'/usr/local/lib/R/site-library/StanHeaders/include' -I/usr/local/include -I'/usr/local/lib/R/site-library/RcppParallel/include' -D_REENTRANT -DSTAN_THREADS -fpic -g -O2 -c KF_back.cpp -o KF_back.o
+In file included from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Core:205,
+...
+/usr/local/lib/R/site-library/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:22:0: required from ‘double stan::mcmc::dense_e_metric::T(stan::mcmc::dense_e_point&) [with Model = model_ensemble_model_hierarchical_namespace::model_ensemble_model_hierarchical; BaseRNG = boost::random::additive_combine_engine, boost::random::linear_congruential_engine >]’
+/usr/local/lib/R/site-library/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:21:0: required from here
+/usr/local/lib/R/site-library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__m128d’} [-Wignored-attributes]
+ 654 | return internal::first_aligned::alignment),Derived>(m);
+ | ^~~~~~~~~
+g++: fatal error: Killed signal terminated program cc1plus
+compilation terminated.
+make: *** [/opt/R/4.3.1/lib/R/etc/Makeconf:198: stanExports_ensemble_model_hierarchical.o] Error 1
+ERROR: compilation failed for package ‘EcoEnsemble’
+* removing ‘/tmp/workdir/EcoEnsemble/new/EcoEnsemble.Rcheck/EcoEnsemble’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘EcoEnsemble’ ...
+** package ‘EcoEnsemble’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++17
+
+
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I"../inst/include" -I"/usr/local/lib/R/site-library/StanHeaders/include/src" -DBOOST_DISABLE_ASSERTS -DEIGEN_NO_DEBUG -DBOOST_MATH_OVERFLOW_ERROR_POLICY=errno_on_error -DUSE_STANC3 -D_HAS_AUTO_PTR_ETC=0 -I'/usr/local/lib/R/site-library/BH/include' -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppEigen/include' -I'/usr/local/lib/R/site-library/RcppParallel/include' -I'/usr/local/lib/R/site-library/rstan/include' -I'/usr/local/lib/R/site-library/StanHeaders/include' -I/usr/local/include -I'/usr/local/lib/R/site-library/RcppParallel/include' -D_REENTRANT -DSTAN_THREADS -fpic -g -O2 -c KF_back.cpp -o KF_back.o
+In file included from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Core:205,
+...
+/usr/local/lib/R/site-library/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:22:0: required from ‘double stan::mcmc::dense_e_metric::T(stan::mcmc::dense_e_point&) [with Model = model_ensemble_model_hierarchical_namespace::model_ensemble_model_hierarchical; BaseRNG = boost::random::additive_combine_engine, boost::random::linear_congruential_engine >]’
+/usr/local/lib/R/site-library/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:21:0: required from here
+/usr/local/lib/R/site-library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__m128d’} [-Wignored-attributes]
+ 654 | return internal::first_aligned::alignment),Derived>(m);
+ | ^~~~~~~~~
+g++: fatal error: Killed signal terminated program cc1plus
+compilation terminated.
+make: *** [/opt/R/4.3.1/lib/R/etc/Makeconf:198: stanExports_ensemble_model_hierarchical.o] Error 1
+ERROR: compilation failed for package ‘EcoEnsemble’
+* removing ‘/tmp/workdir/EcoEnsemble/old/EcoEnsemble.Rcheck/EcoEnsemble’
+
+
+```
+# ecolottery
+
+
+
+* Version: 1.0.0
+* GitHub: https://github.com/frmunoz/ecolottery
+* Source code: https://github.com/cran/ecolottery
+* Date/Publication: 2017-07-03 11:01:29 UTC
+* Number of recursive dependencies: 87
+
+Run `revdepcheck::cloud_details(, "ecolottery")` for more info
+
+
+
+## In both
+
+* checking whether package ‘ecolottery’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/ecolottery/new/ecolottery.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘ecolottery’ ...
+** package ‘ecolottery’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘ecolottery’
+* removing ‘/tmp/workdir/ecolottery/new/ecolottery.Rcheck/ecolottery’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘ecolottery’ ...
+** package ‘ecolottery’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘ecolottery’
+* removing ‘/tmp/workdir/ecolottery/old/ecolottery.Rcheck/ecolottery’
+
+
+```
+# EdSurvey
+
+
+
+* Version: 4.0.7
+* GitHub: https://github.com/American-Institutes-for-Research/EdSurvey
+* Source code: https://github.com/cran/EdSurvey
+* Date/Publication: 2024-06-27 14:50:14 UTC
+* Number of recursive dependencies: 127
+
+Run `revdepcheck::cloud_details(, "EdSurvey")` for more info
+
+
+
+## In both
+
+* checking whether package ‘EdSurvey’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/EdSurvey/new/EdSurvey.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘EdSurvey’ ...
+** package ‘EdSurvey’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Warning in check_dep_version() :
+ ABI version mismatch:
+lme4 was built with Matrix ABI version 1
+Current Matrix ABI version is 0
+Please re-install lme4 from source or restore original ‘Matrix’ package
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘EdSurvey’
+* removing ‘/tmp/workdir/EdSurvey/new/EdSurvey.Rcheck/EdSurvey’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘EdSurvey’ ...
+** package ‘EdSurvey’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Warning in check_dep_version() :
+ ABI version mismatch:
+lme4 was built with Matrix ABI version 1
+Current Matrix ABI version is 0
+Please re-install lme4 from source or restore original ‘Matrix’ package
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘EdSurvey’
+* removing ‘/tmp/workdir/EdSurvey/old/EdSurvey.Rcheck/EdSurvey’
+
+
+```
+# emplik
+
+
+
+* Version: 1.3-2
+* GitHub: NA
+* Source code: https://github.com/cran/emplik
+* Date/Publication: 2024-12-06 10:30:06 UTC
+* Number of recursive dependencies: 33
+
+Run `revdepcheck::cloud_details(, "emplik")` for more info
+
+
+
+## In both
+
+* checking whether package ‘emplik’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/emplik/new/emplik.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘emplik’ ...
+** package ‘emplik’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C compiler: ‘gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+gcc -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c cumsumsurv.c -o cumsumsurv.o
+gcc -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c init.c -o init.o
+gcc -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o emplik.so cumsumsurv.o init.o -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/emplik/new/emplik.Rcheck/00LOCK-emplik/00new/emplik/libs
+** R
+** data
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘emplik’
+* removing ‘/tmp/workdir/emplik/new/emplik.Rcheck/emplik’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘emplik’ ...
+** package ‘emplik’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C compiler: ‘gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+gcc -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c cumsumsurv.c -o cumsumsurv.o
+gcc -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c init.c -o init.o
+gcc -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o emplik.so cumsumsurv.o init.o -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/emplik/old/emplik.Rcheck/00LOCK-emplik/00new/emplik/libs
+** R
+** data
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘emplik’
+* removing ‘/tmp/workdir/emplik/old/emplik.Rcheck/emplik’
+
+
+```
+# EpiEstim
+
+
+
+* Version: 2.2-4
+* GitHub: https://github.com/mrc-ide/EpiEstim
+* Source code: https://github.com/cran/EpiEstim
+* Date/Publication: 2021-01-07 16:20:10 UTC
+* Number of recursive dependencies: 90
+
+Run `revdepcheck::cloud_details(, "EpiEstim")` for more info
+
+
+
+## In both
+
+* checking whether package ‘EpiEstim’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/EpiEstim/new/EpiEstim.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘EpiEstim’ ...
+** package ‘EpiEstim’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘EpiEstim’
+* removing ‘/tmp/workdir/EpiEstim/new/EpiEstim.Rcheck/EpiEstim’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘EpiEstim’ ...
+** package ‘EpiEstim’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘EpiEstim’
+* removing ‘/tmp/workdir/EpiEstim/old/EpiEstim.Rcheck/EpiEstim’
+
+
+```
+# epizootic
+
+
+
+* Version: 1.0.0
+* GitHub: https://github.com/viralemergence/epizootic
+* Source code: https://github.com/cran/epizootic
+* Date/Publication: 2024-10-02 13:10:05 UTC
+* Number of recursive dependencies: 93
+
+Run `revdepcheck::cloud_details(, "epizootic")` for more info
+
+
+
+## In both
+
+* checking whether package ‘epizootic’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/epizootic/new/epizootic.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘epizootic’ ...
+** package ‘epizootic’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c aspatial_siri.cpp -o aspatial_siri.o
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o epizootic.so RcppExports.o aspatial_siri.o -fopenmp -llapack -lblas -lgfortran -lm -lquadmath -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/epizootic/new/epizootic.Rcheck/00LOCK-epizootic/00new/epizootic/libs
+** R
+...
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘epizootic’
+* removing ‘/tmp/workdir/epizootic/new/epizootic.Rcheck/epizootic’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘epizootic’ ...
+** package ‘epizootic’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c aspatial_siri.cpp -o aspatial_siri.o
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o epizootic.so RcppExports.o aspatial_siri.o -fopenmp -llapack -lblas -lgfortran -lm -lquadmath -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/epizootic/old/epizootic.Rcheck/00LOCK-epizootic/00new/epizootic/libs
+** R
+...
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘epizootic’
+* removing ‘/tmp/workdir/epizootic/old/epizootic.Rcheck/epizootic’
+
+
+```
+# erah
+
+
+
+* Version: 2.0.1
+* GitHub: https://github.com/xdomingoal/erah-devel
+* Source code: https://github.com/cran/erah
+* Date/Publication: 2023-12-20 10:10:02 UTC
+* Number of recursive dependencies: 90
+
+Run `revdepcheck::cloud_details(, "erah")` for more info
+
+
+
+## In both
+
+* checking whether package ‘erah’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/erah/new/erah.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘erah’ ...
+** package ‘erah’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C compiler: ‘gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+gcc -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c registerDynamicSymbol.c -o registerDynamicSymbol.o
+gcc -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c runfunc.c -o runfunc.o
+gcc -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o erah.so registerDynamicSymbol.o runfunc.o -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/erah/new/erah.Rcheck/00LOCK-erah/00new/erah/libs
+** R
+...
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘erah’
+* removing ‘/tmp/workdir/erah/new/erah.Rcheck/erah’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘erah’ ...
+** package ‘erah’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C compiler: ‘gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+gcc -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c registerDynamicSymbol.c -o registerDynamicSymbol.o
+gcc -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c runfunc.c -o runfunc.o
+gcc -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o erah.so registerDynamicSymbol.o runfunc.o -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/erah/old/erah.Rcheck/00LOCK-erah/00new/erah/libs
+** R
+...
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘erah’
+* removing ‘/tmp/workdir/erah/old/erah.Rcheck/erah’
+
+
+```
+# evolqg
+
+
+
+* Version: 0.3-4
+* GitHub: https://github.com/lem-usp/evolqg
+* Source code: https://github.com/cran/evolqg
+* Date/Publication: 2023-12-05 15:20:12 UTC
+* Number of recursive dependencies: 110
+
+Run `revdepcheck::cloud_details(, "evolqg")` for more info
+
+
+
+## In both
+
+* checking whether package ‘evolqg’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/evolqg/new/evolqg.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘evolqg’ ...
+** package ‘evolqg’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c fast_RS.cpp -o fast_RS.o
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o evolqg.so RcppExports.o fast_RS.o -llapack -lblas -lgfortran -lm -lquadmath -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/evolqg/new/evolqg.Rcheck/00LOCK-evolqg/00new/evolqg/libs
+** R
+** data
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘evolqg’
+* removing ‘/tmp/workdir/evolqg/new/evolqg.Rcheck/evolqg’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘evolqg’ ...
+** package ‘evolqg’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c fast_RS.cpp -o fast_RS.o
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o evolqg.so RcppExports.o fast_RS.o -llapack -lblas -lgfortran -lm -lquadmath -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/evolqg/old/evolqg.Rcheck/00LOCK-evolqg/00new/evolqg/libs
+** R
+** data
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘evolqg’
+* removing ‘/tmp/workdir/evolqg/old/evolqg.Rcheck/evolqg’
+
+
+```
+# EWSmethods
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/EWSmethods
+* Number of recursive dependencies: 139
+
+Run `revdepcheck::cloud_details(, "EWSmethods")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# ezECM
+
+
+
+* Version: 1.0.0
+* GitHub: https://github.com/lanl/ezECM
+* Source code: https://github.com/cran/ezECM
+* Date/Publication: 2024-10-17 17:10:01 UTC
+* Number of recursive dependencies: 119
+
+Run `revdepcheck::cloud_details(, "ezECM")` for more info
+
+
+
+## In both
+
+* checking whether package ‘ezECM’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/ezECM/new/ezECM.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘ezECM’ ...
+** package ‘ezECM’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘ezECM’
+* removing ‘/tmp/workdir/ezECM/new/ezECM.Rcheck/ezECM’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘ezECM’ ...
+** package ‘ezECM’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘ezECM’
+* removing ‘/tmp/workdir/ezECM/old/ezECM.Rcheck/ezECM’
+
+
+```
+# FAIRmaterials
+
+
+
+* Version: 0.4.2.1
+* GitHub: NA
+* Source code: https://github.com/cran/FAIRmaterials
+* Date/Publication: 2024-06-27 15:40:02 UTC
+* Number of recursive dependencies: 93
+
+Run `revdepcheck::cloud_details(, "FAIRmaterials")` for more info
+
+
+
+## In both
+
+* checking whether package ‘FAIRmaterials’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/FAIRmaterials/new/FAIRmaterials.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘FAIRmaterials’ ...
+** package ‘FAIRmaterials’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in dyn.load(file, DLLpath = DLLpath, ...) :
+ unable to load shared object '/usr/local/lib/R/site-library/redland/libs/redland.so':
+ librdf.so.0: cannot open shared object file: No such file or directory
+Calls: ... asNamespace -> loadNamespace -> library.dynam -> dyn.load
+Execution halted
+ERROR: lazy loading failed for package ‘FAIRmaterials’
+* removing ‘/tmp/workdir/FAIRmaterials/new/FAIRmaterials.Rcheck/FAIRmaterials’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘FAIRmaterials’ ...
+** package ‘FAIRmaterials’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in dyn.load(file, DLLpath = DLLpath, ...) :
+ unable to load shared object '/usr/local/lib/R/site-library/redland/libs/redland.so':
+ librdf.so.0: cannot open shared object file: No such file or directory
+Calls: ... asNamespace -> loadNamespace -> library.dynam -> dyn.load
+Execution halted
+ERROR: lazy loading failed for package ‘FAIRmaterials’
+* removing ‘/tmp/workdir/FAIRmaterials/old/FAIRmaterials.Rcheck/FAIRmaterials’
+
+
+```
+# FastJM
+
+
+
+* Version: 1.4.2
+* GitHub: NA
+* Source code: https://github.com/cran/FastJM
+* Date/Publication: 2024-03-01 00:12:34 UTC
+* Number of recursive dependencies: 146
+
+Run `revdepcheck::cloud_details(, "FastJM")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/FastJM/new/FastJM.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘FastJM/DESCRIPTION’ ... OK
+...
+* checking for portable use of $(BLAS_LIBS) and $(LAPACK_LIBS) ... OK
+* checking use of PKG_*FLAGS in Makefiles ... OK
+* checking compiled code ... OK
+* checking examples ... OK
+* checking for unstated dependencies in ‘tests’ ... OK
+* checking tests ... OK
+ Running ‘spelling.R’
+ Running ‘testthat.R’
+* DONE
+Status: 1 NOTE
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/FastJM/old/FastJM.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘FastJM/DESCRIPTION’ ... OK
+...
+* checking for portable use of $(BLAS_LIBS) and $(LAPACK_LIBS) ... OK
+* checking use of PKG_*FLAGS in Makefiles ... OK
+* checking compiled code ... OK
+* checking examples ... OK
+* checking for unstated dependencies in ‘tests’ ... OK
+* checking tests ... OK
+ Running ‘spelling.R’
+ Running ‘testthat.R’
+* DONE
+Status: 1 NOTE
+
+
+
+
+
+```
+# fdaPDE
+
+
+
+* Version: 1.1-21
+* GitHub: NA
+* Source code: https://github.com/cran/fdaPDE
+* Date/Publication: 2025-01-08 18:00:02 UTC
+* Number of recursive dependencies: 50
+
+Run `revdepcheck::cloud_details(, "fdaPDE")` for more info
+
+
+
+## In both
+
+* checking whether package ‘fdaPDE’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/fdaPDE/new/fdaPDE.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘fdaPDE’ ...
+** package ‘fdaPDE’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C compiler: ‘gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++17
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/RcppEigen/include' -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c Density_Estimation/Source/Rfun_Density_Estimation.cpp -o Density_Estimation/Source/Rfun_Density_Estimation.o
+In file included from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Core:205,
+ from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/StdVector:14,
+...
+/usr/local/lib/R/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from ‘Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >, const Eigen::Solve >, Eigen::Product >, Eigen::Matrix, 0>, Eigen::Transpose >, 0>, Eigen::Matrix, 0>, Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >, 0> > > >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]’
+Regression/Source/../../Skeletons/Include/../../Inference/Include/Wald_imp.h:54:5: required from ‘void Wald_Base::compute_V() [with InputHandler = RegressionData; MatrixType = Eigen::Matrix]’
+Regression/Source/../../Skeletons/Include/../../Inference/Include/Wald_imp.h:123:5: required from ‘VectorXr Wald_Base::compute_beta_pvalue() [with InputHandler = RegressionData; MatrixType = Eigen::Matrix; VectorXr = Eigen::Matrix]’
+Regression/Source/../../Skeletons/Include/../../Inference/Include/Wald_imp.h:104:10: required from here
+/usr/local/lib/R/site-library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__m128d’} [-Wignored-attributes]
+g++: fatal error: Killed signal terminated program cc1plus
+compilation terminated.
+make: *** [/opt/R/4.3.1/lib/R/etc/Makeconf:200: Regression/Source/Rfun_Regression_Laplace.o] Error 1
+ERROR: compilation failed for package ‘fdaPDE’
+* removing ‘/tmp/workdir/fdaPDE/new/fdaPDE.Rcheck/fdaPDE’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘fdaPDE’ ...
+** package ‘fdaPDE’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C compiler: ‘gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++17
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/RcppEigen/include' -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c Density_Estimation/Source/Rfun_Density_Estimation.cpp -o Density_Estimation/Source/Rfun_Density_Estimation.o
+In file included from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Core:205,
+ from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/StdVector:14,
+...
+/usr/local/lib/R/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:225:24: required from ‘Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >, const Eigen::Solve >, Eigen::Product >, Eigen::Matrix, 0>, Eigen::Transpose >, 0>, Eigen::Matrix, 0>, Eigen::Solve >, Eigen::CwiseNullaryOp, Eigen::Matrix > >, 0> > > >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]’
+Regression/Source/../../Skeletons/Include/../../Inference/Include/Wald_imp.h:54:5: required from ‘void Wald_Base::compute_V() [with InputHandler = RegressionData; MatrixType = Eigen::Matrix]’
+Regression/Source/../../Skeletons/Include/../../Inference/Include/Wald_imp.h:123:5: required from ‘VectorXr Wald_Base::compute_beta_pvalue() [with InputHandler = RegressionData; MatrixType = Eigen::Matrix; VectorXr = Eigen::Matrix]’
+Regression/Source/../../Skeletons/Include/../../Inference/Include/Wald_imp.h:104:10: required from here
+/usr/local/lib/R/site-library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__m128d’} [-Wignored-attributes]
+g++: fatal error: Killed signal terminated program cc1plus
+compilation terminated.
+make: *** [/opt/R/4.3.1/lib/R/etc/Makeconf:200: Regression/Source/Rfun_Regression_Laplace.o] Error 1
+ERROR: compilation failed for package ‘fdaPDE’
+* removing ‘/tmp/workdir/fdaPDE/old/fdaPDE.Rcheck/fdaPDE’
+
+
+```
+# ForecastComb
+
+
+
+* Version: 1.3.1
+* GitHub: https://github.com/ceweiss/ForecastComb
+* Source code: https://github.com/cran/ForecastComb
+* Date/Publication: 2018-08-07 13:50:08 UTC
+* Number of recursive dependencies: 73
+
+Run `revdepcheck::cloud_details(, "ForecastComb")` for more info
+
+
+
+## In both
+
+* checking whether package ‘ForecastComb’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/ForecastComb/new/ForecastComb.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘ForecastComb’ ...
+** package ‘ForecastComb’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘ForecastComb’
+* removing ‘/tmp/workdir/ForecastComb/new/ForecastComb.Rcheck/ForecastComb’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘ForecastComb’ ...
+** package ‘ForecastComb’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘ForecastComb’
+* removing ‘/tmp/workdir/ForecastComb/old/ForecastComb.Rcheck/ForecastComb’
+
+
+```
+# FoReco
+
+
+
+* Version: 1.0.0
+* GitHub: https://github.com/daniGiro/FoReco
+* Source code: https://github.com/cran/FoReco
+* Date/Publication: 2024-08-20 22:20:05 UTC
+* Number of recursive dependencies: 28
+
+Run `revdepcheck::cloud_details(, "FoReco")` for more info
+
+
+
+## In both
+
+* checking whether package ‘FoReco’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/FoReco/new/FoReco.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘FoReco’ ...
+** package ‘FoReco’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.1 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘FoReco’
+* removing ‘/tmp/workdir/FoReco/new/FoReco.Rcheck/FoReco’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘FoReco’ ...
+** package ‘FoReco’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.1 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘FoReco’
+* removing ‘/tmp/workdir/FoReco/old/FoReco.Rcheck/FoReco’
+
+
+```
+# frechet
+
+
+
+* Version: 0.3.0
+* GitHub: https://github.com/functionaldata/tFrechet
+* Source code: https://github.com/cran/frechet
+* Date/Publication: 2023-12-09 15:50:08 UTC
+* Number of recursive dependencies: 110
+
+Run `revdepcheck::cloud_details(, "frechet")` for more info
+
+
+
+## In both
+
+* checking whether package ‘frechet’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/frechet/new/frechet.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘frechet’ ...
+** package ‘frechet’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.1 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘frechet’
+* removing ‘/tmp/workdir/frechet/new/frechet.Rcheck/frechet’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘frechet’ ...
+** package ‘frechet’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.1 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘frechet’
+* removing ‘/tmp/workdir/frechet/old/frechet.Rcheck/frechet’
+
+
+```
+# FREEtree
+
+
+
+* Version: 0.1.0
+* GitHub: NA
+* Source code: https://github.com/cran/FREEtree
+* Date/Publication: 2020-06-25 15:00:03 UTC
+* Number of recursive dependencies: 133
+
+Run `revdepcheck::cloud_details(, "FREEtree")` for more info
+
+
+
+## In both
+
+* checking whether package ‘FREEtree’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/FREEtree/new/FREEtree.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘FREEtree’ ...
+** package ‘FREEtree’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Warning in check_dep_version() :
+ ABI version mismatch:
+lme4 was built with Matrix ABI version 1
+Current Matrix ABI version is 0
+Please re-install lme4 from source or restore original ‘Matrix’ package
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘FREEtree’
+* removing ‘/tmp/workdir/FREEtree/new/FREEtree.Rcheck/FREEtree’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘FREEtree’ ...
+** package ‘FREEtree’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Warning in check_dep_version() :
+ ABI version mismatch:
+lme4 was built with Matrix ABI version 1
+Current Matrix ABI version is 0
+Please re-install lme4 from source or restore original ‘Matrix’ package
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘FREEtree’
+* removing ‘/tmp/workdir/FREEtree/old/FREEtree.Rcheck/FREEtree’
+
+
+```
+# gapfill
+
+
+
+* Version: 0.9.6-1
+* GitHub: https://github.com/florafauna/gapfill
+* Source code: https://github.com/cran/gapfill
+* Date/Publication: 2021-02-12 10:10:05 UTC
+* Number of recursive dependencies: 70
+
+Run `revdepcheck::cloud_details(, "gapfill")` for more info
+
+
+
+## In both
+
+* checking whether package ‘gapfill’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/gapfill/new/gapfill.Rcheck/00install.out’ for details.
+ ```
+
+* checking package dependencies ... NOTE
+ ```
+ Packages which this enhances but not available for checking:
+ 'raster', 'doParallel', 'doMPI'
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘gapfill’ ...
+** package ‘gapfill’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c gapfill.cpp -o gapfill.o
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o gapfill.so RcppExports.o gapfill.o -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/gapfill/new/gapfill.Rcheck/00LOCK-gapfill/00new/gapfill/libs
+** R
+...
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘gapfill’
+* removing ‘/tmp/workdir/gapfill/new/gapfill.Rcheck/gapfill’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘gapfill’ ...
+** package ‘gapfill’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c gapfill.cpp -o gapfill.o
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o gapfill.so RcppExports.o gapfill.o -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/gapfill/old/gapfill.Rcheck/00LOCK-gapfill/00new/gapfill/libs
+** R
+...
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘gapfill’
+* removing ‘/tmp/workdir/gapfill/old/gapfill.Rcheck/gapfill’
+
+
+```
+# genekitr
+
+
+
+* Version: 1.2.8
+* GitHub: https://github.com/GangLiLab/genekitr
+* Source code: https://github.com/cran/genekitr
+* Date/Publication: 2024-09-06 13:00:06 UTC
+* Number of recursive dependencies: 199
+
+Run `revdepcheck::cloud_details(, "genekitr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/genekitr/new/genekitr.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘genekitr/DESCRIPTION’ ... OK
+...
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required but not available: ‘clusterProfiler’
+
+Package suggested but not available for checking: ‘fgsea’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/genekitr/old/genekitr.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘genekitr/DESCRIPTION’ ... OK
+...
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required but not available: ‘clusterProfiler’
+
+Package suggested but not available for checking: ‘fgsea’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# GeneSelectR
+
+
+
+* Version: 1.0.1
+* GitHub: https://github.com/dzhakparov/GeneSelectR
+* Source code: https://github.com/cran/GeneSelectR
+* Date/Publication: 2024-02-03 14:00:05 UTC
+* Number of recursive dependencies: 183
+
+Run `revdepcheck::cloud_details(, "GeneSelectR")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/GeneSelectR/new/GeneSelectR.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘GeneSelectR/DESCRIPTION’ ... OK
+...
++ build_vignettes = FALSE)
+
+ When sourcing ‘example.R’:
+Error: there is no package called ‘devtools’
+Execution halted
+
+ ‘example.Rmd’ using ‘UTF-8’... failed
+* checking re-building of vignette outputs ... OK
+* DONE
+Status: 1 WARNING, 1 NOTE
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/GeneSelectR/old/GeneSelectR.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘GeneSelectR/DESCRIPTION’ ... OK
+...
++ build_vignettes = FALSE)
+
+ When sourcing ‘example.R’:
+Error: there is no package called ‘devtools’
+Execution halted
+
+ ‘example.Rmd’ using ‘UTF-8’... failed
+* checking re-building of vignette outputs ... OK
+* DONE
+Status: 1 WARNING, 1 NOTE
+
+
+
+
+
+```
+# GeomComb
+
+
+
+* Version: 1.0
+* GitHub: https://github.com/ceweiss/GeomComb
+* Source code: https://github.com/cran/GeomComb
+* Date/Publication: 2016-11-27 16:02:26
+* Number of recursive dependencies: 74
+
+Run `revdepcheck::cloud_details(, "GeomComb")` for more info
+
+
+
+## In both
+
+* checking whether package ‘GeomComb’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/GeomComb/new/GeomComb.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘GeomComb’ ...
+** package ‘GeomComb’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘GeomComb’
+* removing ‘/tmp/workdir/GeomComb/new/GeomComb.Rcheck/GeomComb’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘GeomComb’ ...
+** package ‘GeomComb’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘GeomComb’
+* removing ‘/tmp/workdir/GeomComb/old/GeomComb.Rcheck/GeomComb’
+
+
+```
+# geomorph
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/geomorph
+* Number of recursive dependencies: 71
+
+Run `revdepcheck::cloud_details(, "geomorph")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# GeoTox
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/GeoTox
+* Number of recursive dependencies: 142
+
+Run `revdepcheck::cloud_details(, "GeoTox")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# gllvm
+
+
+
+* Version: 2.0
+* GitHub: https://github.com/JenniNiku/gllvm
+* Source code: https://github.com/cran/gllvm
+* Date/Publication: 2024-11-26 19:40:01 UTC
+* Number of recursive dependencies: 61
+
+Run `revdepcheck::cloud_details(, "gllvm")` for more info
+
+
+
+## In both
+
+* checking whether package ‘gllvm’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/gllvm/new/gllvm.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘gllvm’ ...
+** package ‘gllvm’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -DTMBAD_FRAMEWORK -I'/usr/local/lib/R/site-library/TMB/include' -I'/usr/local/lib/R/site-library/RcppEigen/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c gllvm.cpp -o gllvm.o
+In file included from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Core:205,
+ from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Dense:1,
+ from /usr/local/lib/R/site-library/TMB/include/TMB.hpp:92,
+ from gllvm.cpp:3:
+...
+/usr/local/lib/R/site-library/TMB/include/tiny_ad/atomic.hpp:30:1: required from ‘void atomic::bessel_kOp::reverse(TMBad::ReverseArgs&) [with Type = double; int order = 3; int ninput = 2; int noutput = 8; long int mask = 9]’
+/usr/local/lib/R/site-library/TMB/include/TMBad/global.hpp:1721:28: required from ‘void TMBad::global::AddForwardMarkReverseMark::reverse(TMBad::ReverseArgs&) [with Type = double; OperatorBase = TMBad::global::AddIncrementDecrement > > >]’
+/usr/local/lib/R/site-library/TMB/include/TMBad/global.hpp:2134:57: required from ‘void TMBad::global::Complete::reverse(TMBad::ReverseArgs&) [with OperatorBase = atomic::bessel_kOp<3, 2, 8, 9>]’
+/usr/local/lib/R/site-library/TMB/include/TMBad/global.hpp:2134:10: required from here
+/usr/local/lib/R/site-library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__m128d’} [-Wignored-attributes]
+g++: fatal error: Killed signal terminated program cc1plus
+compilation terminated.
+make: *** [/opt/R/4.3.1/lib/R/etc/Makeconf:200: gllvm.o] Error 1
+ERROR: compilation failed for package ‘gllvm’
+* removing ‘/tmp/workdir/gllvm/new/gllvm.Rcheck/gllvm’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘gllvm’ ...
+** package ‘gllvm’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -DTMBAD_FRAMEWORK -I'/usr/local/lib/R/site-library/TMB/include' -I'/usr/local/lib/R/site-library/RcppEigen/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c gllvm.cpp -o gllvm.o
+In file included from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Core:205,
+ from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Dense:1,
+ from /usr/local/lib/R/site-library/TMB/include/TMB.hpp:92,
+ from gllvm.cpp:3:
+...
+/usr/local/lib/R/site-library/TMB/include/tiny_ad/atomic.hpp:30:1: required from ‘void atomic::bessel_kOp::reverse(TMBad::ReverseArgs&) [with Type = double; int order = 3; int ninput = 2; int noutput = 8; long int mask = 9]’
+/usr/local/lib/R/site-library/TMB/include/TMBad/global.hpp:1721:28: required from ‘void TMBad::global::AddForwardMarkReverseMark::reverse(TMBad::ReverseArgs&) [with Type = double; OperatorBase = TMBad::global::AddIncrementDecrement > > >]’
+/usr/local/lib/R/site-library/TMB/include/TMBad/global.hpp:2134:57: required from ‘void TMBad::global::Complete::reverse(TMBad::ReverseArgs&) [with OperatorBase = atomic::bessel_kOp<3, 2, 8, 9>]’
+/usr/local/lib/R/site-library/TMB/include/TMBad/global.hpp:2134:10: required from here
+/usr/local/lib/R/site-library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__m128d’} [-Wignored-attributes]
+g++: fatal error: Killed signal terminated program cc1plus
+compilation terminated.
+make: *** [/opt/R/4.3.1/lib/R/etc/Makeconf:200: gllvm.o] Error 1
+ERROR: compilation failed for package ‘gllvm’
+* removing ‘/tmp/workdir/gllvm/old/gllvm.Rcheck/gllvm’
+
+
+```
+# gmoTree
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/gmoTree
+* Number of recursive dependencies: 60
+
+Run `revdepcheck::cloud_details(, "gmoTree")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# gpuR
+
+
+
+* Version: 2.0.6
+* GitHub: https://github.com/cdeterman/gpuR
+* Source code: https://github.com/cran/gpuR
+* Date/Publication: 2024-05-23 16:00:02 UTC
+* Number of recursive dependencies: 32
+
+Run `revdepcheck::cloud_details(, "gpuR")` for more info
+
+
+
+## In both
+
+* checking whether package ‘gpuR’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/gpuR/new/gpuR.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘gpuR’ ...
+** package ‘gpuR’ successfully unpacked and MD5 sums checked
+** using staged installation
+OPENCL_FLAGS not set, using default -DCL_HPP_MINIMUM_OPENCL_VERSION=110 -DCL_USE_DEPRECATED_OPENCL_1_2_APIS -DCL_HPP_TARGET_OPENCL_VERSION=120
+Linux OS
+found OpenCL library
+Checking OpenCL C++ API
+OPENCL_INC not set, using default include directory /usr/include
+No OpenCL C++ API found, will use the headers contained in the package
+
+...
+/usr/local/lib/R/site-library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: required from ‘Derived& Eigen::MatrixBase::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Matrix; Derived = Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>]’
+../inst/include/gpuR/dynEigenMat.hpp:192:30: required from ‘void dynEigenMat::setCol(SEXP, int) [with T = double; SEXP = SEXPREC*]’
+../inst/include/gpuR/dynEigenMat.hpp:383:16: required from here
+/usr/local/lib/R/site-library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__m128d’} [-Wignored-attributes]
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o gpuR.so RcppExports.o chol.o context.o custom_math.o device.o gpuEigenPtr.o gpuMatrix_igemm.o norm.o platform.o set_row_order.o solve.o synchronize.o trunc_gpuMat.o utils-vcl.o utils.o vclPtr.o vienna_blas1.o vienna_blas2.o vienna_blas3.o vienna_eigen.o vienna_qr.o vienna_stats.o vienna_svd.o -lOpenCL -L/opt/R/4.3.1/lib/R/lib -lR
+/usr/bin/ld: cannot find -lOpenCL: No such file or directory
+collect2: error: ld returned 1 exit status
+make: *** [/opt/R/4.3.1/lib/R/share/make/shlib.mk:10: gpuR.so] Error 1
+ERROR: compilation failed for package ‘gpuR’
+* removing ‘/tmp/workdir/gpuR/new/gpuR.Rcheck/gpuR’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘gpuR’ ...
+** package ‘gpuR’ successfully unpacked and MD5 sums checked
+** using staged installation
+OPENCL_FLAGS not set, using default -DCL_HPP_MINIMUM_OPENCL_VERSION=110 -DCL_USE_DEPRECATED_OPENCL_1_2_APIS -DCL_HPP_TARGET_OPENCL_VERSION=120
+Linux OS
+found OpenCL library
+Checking OpenCL C++ API
+OPENCL_INC not set, using default include directory /usr/include
+No OpenCL C++ API found, will use the headers contained in the package
+
+...
+/usr/local/lib/R/site-library/RcppEigen/include/Eigen/src/Core/Assign.h:66:28: required from ‘Derived& Eigen::MatrixBase::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Matrix; Derived = Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>]’
+../inst/include/gpuR/dynEigenMat.hpp:192:30: required from ‘void dynEigenMat::setCol(SEXP, int) [with T = double; SEXP = SEXPREC*]’
+../inst/include/gpuR/dynEigenMat.hpp:383:16: required from here
+/usr/local/lib/R/site-library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__m128d’} [-Wignored-attributes]
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o gpuR.so RcppExports.o chol.o context.o custom_math.o device.o gpuEigenPtr.o gpuMatrix_igemm.o norm.o platform.o set_row_order.o solve.o synchronize.o trunc_gpuMat.o utils-vcl.o utils.o vclPtr.o vienna_blas1.o vienna_blas2.o vienna_blas3.o vienna_eigen.o vienna_qr.o vienna_stats.o vienna_svd.o -lOpenCL -L/opt/R/4.3.1/lib/R/lib -lR
+/usr/bin/ld: cannot find -lOpenCL: No such file or directory
+collect2: error: ld returned 1 exit status
+make: *** [/opt/R/4.3.1/lib/R/share/make/shlib.mk:10: gpuR.so] Error 1
+ERROR: compilation failed for package ‘gpuR’
+* removing ‘/tmp/workdir/gpuR/old/gpuR.Rcheck/gpuR’
+
+
+```
+# hettx
+
+
+
+* Version: 0.1.3
+* GitHub: https://github.com/bfifield/hettx
+* Source code: https://github.com/cran/hettx
+* Date/Publication: 2023-08-19 22:22:34 UTC
+* Number of recursive dependencies: 84
+
+Run `revdepcheck::cloud_details(, "hettx")` for more info
+
+
+
+## In both
+
+* checking whether package ‘hettx’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/hettx/new/hettx.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘hettx’ ...
+** package ‘hettx’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘hettx’
+* removing ‘/tmp/workdir/hettx/new/hettx.Rcheck/hettx’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘hettx’ ...
+** package ‘hettx’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘hettx’
+* removing ‘/tmp/workdir/hettx/old/hettx.Rcheck/hettx’
+
+
+```
+# Hmsc
+
+
+
+* Version: 3.0-13
+* GitHub: https://github.com/hmsc-r/HMSC
+* Source code: https://github.com/cran/Hmsc
+* Date/Publication: 2022-08-11 14:10:14 UTC
+* Number of recursive dependencies: 75
+
+Run `revdepcheck::cloud_details(, "Hmsc")` for more info
+
+
+
+## In both
+
+* checking whether package ‘Hmsc’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/Hmsc/new/Hmsc.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘Hmsc’ ...
+** package ‘Hmsc’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘Hmsc’
+* removing ‘/tmp/workdir/Hmsc/new/Hmsc.Rcheck/Hmsc’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘Hmsc’ ...
+** package ‘Hmsc’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘Hmsc’
+* removing ‘/tmp/workdir/Hmsc/old/Hmsc.Rcheck/Hmsc’
+
+
+```
+# IDLFM
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/IDLFM
+* Number of recursive dependencies: 36
+
+Run `revdepcheck::cloud_details(, "IDLFM")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# invivoPKfit
+
+
+
+* Version: 2.0.0
+* GitHub: NA
+* Source code: https://github.com/cran/invivoPKfit
+* Date/Publication: 2025-01-09 14:30:02 UTC
+* Number of recursive dependencies: 172
+
+Run `revdepcheck::cloud_details(, "invivoPKfit")` for more info
+
+
+
+## In both
+
+* checking whether package ‘invivoPKfit’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/invivoPKfit/new/invivoPKfit.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘invivoPKfit’ ...
+** package ‘invivoPKfit’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error: object ‘expand1’ is not exported by 'namespace:Matrix'
+Execution halted
+ERROR: lazy loading failed for package ‘invivoPKfit’
+* removing ‘/tmp/workdir/invivoPKfit/new/invivoPKfit.Rcheck/invivoPKfit’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘invivoPKfit’ ...
+** package ‘invivoPKfit’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error: object ‘expand1’ is not exported by 'namespace:Matrix'
+Execution halted
+ERROR: lazy loading failed for package ‘invivoPKfit’
+* removing ‘/tmp/workdir/invivoPKfit/old/invivoPKfit.Rcheck/invivoPKfit’
+
+
+```
+# iNZightPlots
+
+
+
+* Version: 2.15.3
+* GitHub: https://github.com/iNZightVIT/iNZightPlots
+* Source code: https://github.com/cran/iNZightPlots
+* Date/Publication: 2023-10-14 05:00:02 UTC
+* Number of recursive dependencies: 161
+
+Run `revdepcheck::cloud_details(, "iNZightPlots")` for more info
+
+
+
+## In both
+
+* checking whether package ‘iNZightPlots’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/iNZightPlots/new/iNZightPlots.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘iNZightPlots’ ...
+** package ‘iNZightPlots’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘iNZightPlots’
+* removing ‘/tmp/workdir/iNZightPlots/new/iNZightPlots.Rcheck/iNZightPlots’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘iNZightPlots’ ...
+** package ‘iNZightPlots’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘iNZightPlots’
+* removing ‘/tmp/workdir/iNZightPlots/old/iNZightPlots.Rcheck/iNZightPlots’
+
+
+```
+# iNZightRegression
+
+
+
+* Version: 1.3.4
+* GitHub: https://github.com/iNZightVIT/iNZightRegression
+* Source code: https://github.com/cran/iNZightRegression
+* Date/Publication: 2024-04-05 02:32:59 UTC
+* Number of recursive dependencies: 159
+
+Run `revdepcheck::cloud_details(, "iNZightRegression")` for more info
+
+
+
+## In both
+
+* checking whether package ‘iNZightRegression’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/iNZightRegression/new/iNZightRegression.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘iNZightRegression’ ...
+** package ‘iNZightRegression’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘iNZightRegression’
+* removing ‘/tmp/workdir/iNZightRegression/new/iNZightRegression.Rcheck/iNZightRegression’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘iNZightRegression’ ...
+** package ‘iNZightRegression’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘iNZightRegression’
+* removing ‘/tmp/workdir/iNZightRegression/old/iNZightRegression.Rcheck/iNZightRegression’
+
+
+```
+# IVCor
+
+
+
+* Version: 0.1.0
+* GitHub: NA
+* Source code: https://github.com/cran/IVCor
+* Date/Publication: 2025-01-09 18:00:02 UTC
+* Number of recursive dependencies: 54
+
+Run `revdepcheck::cloud_details(, "IVCor")` for more info
+
+
+
+## In both
+
+* checking whether package ‘IVCor’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/IVCor/new/IVCor.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘IVCor’ ...
+** package ‘IVCor’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘IVCor’
+* removing ‘/tmp/workdir/IVCor/new/IVCor.Rcheck/IVCor’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘IVCor’ ...
+** package ‘IVCor’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘IVCor’
+* removing ‘/tmp/workdir/IVCor/old/IVCor.Rcheck/IVCor’
+
+
+```
+# JMH
+
+
+
+* Version: 1.0.3
+* GitHub: NA
+* Source code: https://github.com/cran/JMH
+* Date/Publication: 2024-02-20 06:40:02 UTC
+* Number of recursive dependencies: 146
+
+Run `revdepcheck::cloud_details(, "JMH")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/JMH/new/JMH.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘JMH/DESCRIPTION’ ... OK
+...
+* checking line endings in C/C++/Fortran sources/headers ... OK
+* checking line endings in Makefiles ... OK
+* checking compilation flags in Makevars ... OK
+* checking for GNU extensions in Makefiles ... OK
+* checking for portable use of $(BLAS_LIBS) and $(LAPACK_LIBS) ... OK
+* checking use of PKG_*FLAGS in Makefiles ... OK
+* checking compiled code ... OK
+* checking examples ... OK
+* DONE
+Status: 1 NOTE
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/JMH/old/JMH.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘JMH/DESCRIPTION’ ... OK
+...
+* checking line endings in C/C++/Fortran sources/headers ... OK
+* checking line endings in Makefiles ... OK
+* checking compilation flags in Makevars ... OK
+* checking for GNU extensions in Makefiles ... OK
+* checking for portable use of $(BLAS_LIBS) and $(LAPACK_LIBS) ... OK
+* checking use of PKG_*FLAGS in Makefiles ... OK
+* checking compiled code ... OK
+* checking examples ... OK
+* DONE
+Status: 1 NOTE
+
+
+
+
+
+```
+# joineRML
+
+
+
+* Version: 0.4.6
+* GitHub: https://github.com/graemeleehickey/joineRML
+* Source code: https://github.com/cran/joineRML
+* Date/Publication: 2023-01-20 04:50:02 UTC
+* Number of recursive dependencies: 90
+
+Run `revdepcheck::cloud_details(, "joineRML")` for more info
+
+
+
+## In both
+
+* checking whether package ‘joineRML’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/joineRML/new/joineRML.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘joineRML’ ...
+** package ‘joineRML’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C compiler: ‘gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++11
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c expW.cpp -o expW.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c gammaUpdate.cpp -o gammaUpdate.o
+...
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘joineRML’
+* removing ‘/tmp/workdir/joineRML/new/joineRML.Rcheck/joineRML’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘joineRML’ ...
+** package ‘joineRML’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C compiler: ‘gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++11
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c expW.cpp -o expW.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c gammaUpdate.cpp -o gammaUpdate.o
+...
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘joineRML’
+* removing ‘/tmp/workdir/joineRML/old/joineRML.Rcheck/joineRML’
+
+
+```
+# jsmodule
+
+
+
+* Version: 1.6.1
+* GitHub: https://github.com/jinseob2kim/jsmodule
+* Source code: https://github.com/cran/jsmodule
+* Date/Publication: 2025-01-08 13:10:02 UTC
+* Number of recursive dependencies: 238
+
+Run `revdepcheck::cloud_details(, "jsmodule")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/jsmodule/new/jsmodule.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘jsmodule/DESCRIPTION’ ... OK
+...
+* checking tests ... OK
+ Running ‘testthat.R’
+* checking for unstated dependencies in vignettes ... OK
+* checking package vignettes in ‘inst/doc’ ... OK
+* checking running R code from vignettes ... OK
+ ‘jsmodule.Rmd’ using ‘UTF-8’... OK
+ ‘jsmodule_subgroup_cmprsk.Rmd’ using ‘UTF-8’... OK
+* checking re-building of vignette outputs ... OK
+* DONE
+Status: OK
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/jsmodule/old/jsmodule.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘jsmodule/DESCRIPTION’ ... OK
+...
+* checking tests ... OK
+ Running ‘testthat.R’
+* checking for unstated dependencies in vignettes ... OK
+* checking package vignettes in ‘inst/doc’ ... OK
+* checking running R code from vignettes ... OK
+ ‘jsmodule.Rmd’ using ‘UTF-8’... OK
+ ‘jsmodule_subgroup_cmprsk.Rmd’ using ‘UTF-8’... OK
+* checking re-building of vignette outputs ... OK
+* DONE
+Status: OK
+
+
+
+
+
+```
+# kmc
+
+
+
+* Version: 0.4-2
+* GitHub: https://github.com/yfyang86/kmc
+* Source code: https://github.com/cran/kmc
+* Date/Publication: 2022-11-22 08:30:02 UTC
+* Number of recursive dependencies: 60
+
+Run `revdepcheck::cloud_details(, "kmc")` for more info
+
+
+
+## In both
+
+* checking whether package ‘kmc’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/kmc/new/kmc.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘kmc’ ...
+** package ‘kmc’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C compiler: ‘gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c RcppExport.cpp -o RcppExport.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c kmc.cpp -o kmc.o
+gcc -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c kmc_init.c -o kmc_init.o
+gcc -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c surv2.c -o surv2.o
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o kmc.so RcppExport.o kmc.o kmc_init.o surv2.o -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/kmc/new/kmc.Rcheck/00LOCK-kmc/00new/kmc/libs
+** R
+** byte-compile and prepare package for lazy loading
+Error: package or namespace load failed for ‘emplik’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Execution halted
+ERROR: lazy loading failed for package ‘kmc’
+* removing ‘/tmp/workdir/kmc/new/kmc.Rcheck/kmc’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘kmc’ ...
+** package ‘kmc’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C compiler: ‘gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c RcppExport.cpp -o RcppExport.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c kmc.cpp -o kmc.o
+gcc -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c kmc_init.c -o kmc_init.o
+gcc -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c surv2.c -o surv2.o
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o kmc.so RcppExport.o kmc.o kmc_init.o surv2.o -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/kmc/old/kmc.Rcheck/00LOCK-kmc/00new/kmc/libs
+** R
+** byte-compile and prepare package for lazy loading
+Error: package or namespace load failed for ‘emplik’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Execution halted
+ERROR: lazy loading failed for package ‘kmc’
+* removing ‘/tmp/workdir/kmc/old/kmc.Rcheck/kmc’
+
+
+```
+# KMunicate
+
+
+
+* Version: 0.2.5
+* GitHub: https://github.com/ellessenne/KMunicate-package
+* Source code: https://github.com/cran/KMunicate
+* Date/Publication: 2024-05-16 11:50:08 UTC
+* Number of recursive dependencies: 171
+
+Run `revdepcheck::cloud_details(, "KMunicate")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/KMunicate/new/KMunicate.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘KMunicate/DESCRIPTION’ ... OK
+...
+* checking for unstated dependencies in ‘tests’ ... OK
+* checking tests ... OK
+ Running ‘testthat.R’
+* checking for unstated dependencies in vignettes ... OK
+* checking package vignettes in ‘inst/doc’ ... OK
+* checking running R code from vignettes ... OK
+ ‘KMunicate.Rmd’ using ‘UTF-8’... OK
+* checking re-building of vignette outputs ... OK
+* DONE
+Status: OK
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/KMunicate/old/KMunicate.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘KMunicate/DESCRIPTION’ ... OK
+...
+* checking for unstated dependencies in ‘tests’ ... OK
+* checking tests ... OK
+ Running ‘testthat.R’
+* checking for unstated dependencies in vignettes ... OK
+* checking package vignettes in ‘inst/doc’ ... OK
+* checking running R code from vignettes ... OK
+ ‘KMunicate.Rmd’ using ‘UTF-8’... OK
+* checking re-building of vignette outputs ... OK
+* DONE
+Status: OK
+
+
+
+
+
+```
+# Landmarking
+
+
+
+* Version: 1.0.0
+* GitHub: https://github.com/isobelbarrott/Landmarking
+* Source code: https://github.com/cran/Landmarking
+* Date/Publication: 2022-02-15 20:00:07 UTC
+* Number of recursive dependencies: 122
+
+Run `revdepcheck::cloud_details(, "Landmarking")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/Landmarking/new/Landmarking.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘Landmarking/DESCRIPTION’ ... OK
+...
+* this is package ‘Landmarking’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required but not available: ‘riskRegression’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/Landmarking/old/Landmarking.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘Landmarking/DESCRIPTION’ ... OK
+...
+* this is package ‘Landmarking’ version ‘1.0.0’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required but not available: ‘riskRegression’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# lavaSearch2
+
+
+
+* Version: 2.0.3
+* GitHub: https://github.com/bozenne/lavaSearch2
+* Source code: https://github.com/cran/lavaSearch2
+* Date/Publication: 2024-02-23 09:10:02 UTC
+* Number of recursive dependencies: 146
+
+Run `revdepcheck::cloud_details(, "lavaSearch2")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/lavaSearch2/new/lavaSearch2.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘lavaSearch2/DESCRIPTION’ ... OK
+...
+ [ FAIL 1 | WARN 1 | SKIP 0 | PASS 266 ]
+ Error: Test failures
+ Execution halted
+* checking for unstated dependencies in vignettes ... OK
+* checking package vignettes in ‘inst/doc’ ... OK
+* checking running R code from vignettes ... NONE
+ ‘overview.pdf.asis’ using ‘UTF-8’... OK
+* checking re-building of vignette outputs ... OK
+* DONE
+Status: 1 ERROR, 1 NOTE
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/lavaSearch2/old/lavaSearch2.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘lavaSearch2/DESCRIPTION’ ... OK
+...
+ [ FAIL 1 | WARN 1 | SKIP 0 | PASS 266 ]
+ Error: Test failures
+ Execution halted
+* checking for unstated dependencies in vignettes ... OK
+* checking package vignettes in ‘inst/doc’ ... OK
+* checking running R code from vignettes ... NONE
+ ‘overview.pdf.asis’ using ‘UTF-8’... OK
+* checking re-building of vignette outputs ... OK
+* DONE
+Status: 1 ERROR, 1 NOTE
+
+
+
+
+
+```
+# lnmixsurv
+
+
+
+* Version: 3.1.6
+* GitHub: NA
+* Source code: https://github.com/cran/lnmixsurv
+* Date/Publication: 2024-09-03 15:20:08 UTC
+* Number of recursive dependencies: 195
+
+Run `revdepcheck::cloud_details(, "lnmixsurv")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/lnmixsurv/new/lnmixsurv.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘lnmixsurv/DESCRIPTION’ ... OK
+...
+* checking package vignettes in ‘inst/doc’ ... OK
+* checking running R code from vignettes ... OK
+ ‘compare.Rmd’ using ‘UTF-8’... OK
+ ‘expectation_maximization.Rmd’ using ‘UTF-8’... OK
+ ‘intercept_only.Rmd’ using ‘UTF-8’... OK
+ ‘lnmixsurv.Rmd’ using ‘UTF-8’... OK
+ ‘parallel_computation.Rmd’ using ‘UTF-8’... OK
+* checking re-building of vignette outputs ... OK
+* DONE
+Status: 4 NOTEs
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/lnmixsurv/old/lnmixsurv.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘lnmixsurv/DESCRIPTION’ ... OK
+...
+* checking package vignettes in ‘inst/doc’ ... OK
+* checking running R code from vignettes ... OK
+ ‘compare.Rmd’ using ‘UTF-8’... OK
+ ‘expectation_maximization.Rmd’ using ‘UTF-8’... OK
+ ‘intercept_only.Rmd’ using ‘UTF-8’... OK
+ ‘lnmixsurv.Rmd’ using ‘UTF-8’... OK
+ ‘parallel_computation.Rmd’ using ‘UTF-8’... OK
+* checking re-building of vignette outputs ... OK
+* DONE
+Status: 4 NOTEs
+
+
+
+
+
+```
+# locpolExpectile
+
+
+
+* Version: 0.1.1
+* GitHub: NA
+* Source code: https://github.com/cran/locpolExpectile
+* Date/Publication: 2021-08-03 09:50:05 UTC
+* Number of recursive dependencies: 70
+
+Run `revdepcheck::cloud_details(, "locpolExpectile")` for more info
+
+
+
+## In both
+
+* checking whether package ‘locpolExpectile’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/locpolExpectile/new/locpolExpectile.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘locpolExpectile’ ...
+** package ‘locpolExpectile’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘locpolExpectile’
+* removing ‘/tmp/workdir/locpolExpectile/new/locpolExpectile.Rcheck/locpolExpectile’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘locpolExpectile’ ...
+** package ‘locpolExpectile’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘locpolExpectile’
+* removing ‘/tmp/workdir/locpolExpectile/old/locpolExpectile.Rcheck/locpolExpectile’
+
+
+```
+# loon.shiny
+
+
+
+* Version: 1.0.3
+* GitHub: NA
+* Source code: https://github.com/cran/loon.shiny
+* Date/Publication: 2022-10-08 15:30:02 UTC
+* Number of recursive dependencies: 136
+
+Run `revdepcheck::cloud_details(, "loon.shiny")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/loon.shiny/new/loon.shiny.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘loon.shiny/DESCRIPTION’ ... OK
+...
+* this is package ‘loon.shiny’ version ‘1.0.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available: 'loon', 'loon.ggplot'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/loon.shiny/old/loon.shiny.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘loon.shiny/DESCRIPTION’ ... OK
+...
+* this is package ‘loon.shiny’ version ‘1.0.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available: 'loon', 'loon.ggplot'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# loon.tourr
+
+
+
+* Version: 0.1.4
+* GitHub: https://github.com/z267xu/loon.tourr
+* Source code: https://github.com/cran/loon.tourr
+* Date/Publication: 2024-04-09 09:40:02 UTC
+* Number of recursive dependencies: 127
+
+Run `revdepcheck::cloud_details(, "loon.tourr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/loon.tourr/new/loon.tourr.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘loon.tourr/DESCRIPTION’ ... OK
+...
+* this is package ‘loon.tourr’ version ‘0.1.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available: 'loon', 'loon.ggplot'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/loon.tourr/old/loon.tourr.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘loon.tourr/DESCRIPTION’ ... OK
+...
+* this is package ‘loon.tourr’ version ‘0.1.4’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Packages required but not available: 'loon', 'loon.ggplot'
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# lsirm12pl
+
+
+
+* Version: 1.3.3
+* GitHub: NA
+* Source code: https://github.com/cran/lsirm12pl
+* Date/Publication: 2024-08-28 23:00:02 UTC
+* Number of recursive dependencies: 123
+
+Run `revdepcheck::cloud_details(, "lsirm12pl")` for more info
+
+
+
+## In both
+
+* checking whether package ‘lsirm12pl’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/lsirm12pl/new/lsirm12pl.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘lsirm12pl’ ...
+** package ‘lsirm12pl’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c lsirm1pl.cpp -o lsirm1pl.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c lsirm2pl.cpp -o lsirm2pl.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c lsm.cpp -o lsm.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c utility_cpp.cpp -o utility_cpp.o
+...
+** R
+** data
+*** moving datasets to lazyload DB
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘lsirm12pl’
+* removing ‘/tmp/workdir/lsirm12pl/new/lsirm12pl.Rcheck/lsirm12pl’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘lsirm12pl’ ...
+** package ‘lsirm12pl’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c lsirm1pl.cpp -o lsirm1pl.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c lsirm2pl.cpp -o lsirm2pl.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c lsm.cpp -o lsm.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c utility_cpp.cpp -o utility_cpp.o
+...
+** R
+** data
+*** moving datasets to lazyload DB
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘lsirm12pl’
+* removing ‘/tmp/workdir/lsirm12pl/old/lsirm12pl.Rcheck/lsirm12pl’
+
+
+```
+# marlod
+
+
+
+* Version: 0.1.2
+* GitHub: NA
+* Source code: https://github.com/cran/marlod
+* Date/Publication: 2024-11-29 21:40:02 UTC
+* Number of recursive dependencies: 106
+
+Run `revdepcheck::cloud_details(, "marlod")` for more info
+
+
+
+## In both
+
+* checking whether package ‘marlod’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/marlod/new/marlod.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘marlod’ ...
+** package ‘marlod’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘marlod’
+* removing ‘/tmp/workdir/marlod/new/marlod.Rcheck/marlod’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘marlod’ ...
+** package ‘marlod’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘marlod’
+* removing ‘/tmp/workdir/marlod/old/marlod.Rcheck/marlod’
+
+
+```
+# mbsts
+
+
+
+* Version: 3.0
+* GitHub: NA
+* Source code: https://github.com/cran/mbsts
+* Date/Publication: 2023-01-07 01:10:02 UTC
+* Number of recursive dependencies: 81
+
+Run `revdepcheck::cloud_details(, "mbsts")` for more info
+
+
+
+## In both
+
+* checking whether package ‘mbsts’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/mbsts/new/mbsts.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘mbsts’ ...
+** package ‘mbsts’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘mbsts’
+* removing ‘/tmp/workdir/mbsts/new/mbsts.Rcheck/mbsts’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘mbsts’ ...
+** package ‘mbsts’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘mbsts’
+* removing ‘/tmp/workdir/mbsts/old/mbsts.Rcheck/mbsts’
+
+
+```
+# metajam
+
+
+
+* Version: 0.3.1
+* GitHub: https://github.com/NCEAS/metajam
+* Source code: https://github.com/cran/metajam
+* Date/Publication: 2024-08-16 17:50:02 UTC
+* Number of recursive dependencies: 90
+
+Run `revdepcheck::cloud_details(, "metajam")` for more info
+
+
+
+## In both
+
+* checking whether package ‘metajam’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/metajam/new/metajam.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘metajam’ ...
+** package ‘metajam’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in dyn.load(file, DLLpath = DLLpath, ...) :
+ unable to load shared object '/usr/local/lib/R/site-library/redland/libs/redland.so':
+ librdf.so.0: cannot open shared object file: No such file or directory
+Calls: ... namespaceImport -> loadNamespace -> library.dynam -> dyn.load
+Execution halted
+ERROR: lazy loading failed for package ‘metajam’
+* removing ‘/tmp/workdir/metajam/new/metajam.Rcheck/metajam’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘metajam’ ...
+** package ‘metajam’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in dyn.load(file, DLLpath = DLLpath, ...) :
+ unable to load shared object '/usr/local/lib/R/site-library/redland/libs/redland.so':
+ librdf.so.0: cannot open shared object file: No such file or directory
+Calls: ... namespaceImport -> loadNamespace -> library.dynam -> dyn.load
+Execution halted
+ERROR: lazy loading failed for package ‘metajam’
+* removing ‘/tmp/workdir/metajam/old/metajam.Rcheck/metajam’
+
+
+```
+# mHMMbayes
+
+
+
+* Version: 1.1.0
+* GitHub: https://github.com/emmekeaarts/mHMMbayes
+* Source code: https://github.com/cran/mHMMbayes
+* Date/Publication: 2024-04-01 12:20:02 UTC
+* Number of recursive dependencies: 57
+
+Run `revdepcheck::cloud_details(, "mHMMbayes")` for more info
+
+
+
+## In both
+
+* checking whether package ‘mHMMbayes’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/mHMMbayes/new/mHMMbayes.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘mHMMbayes’ ...
+** package ‘mHMMbayes’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c cat_mult_fw_cpp.cpp -o cat_mult_fw_cpp.o
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o mHMMbayes.so RcppExports.o cat_mult_fw_cpp.o -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/mHMMbayes/new/mHMMbayes.Rcheck/00LOCK-mHMMbayes/00new/mHMMbayes/libs
+** R
+...
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘mHMMbayes’
+* removing ‘/tmp/workdir/mHMMbayes/new/mHMMbayes.Rcheck/mHMMbayes’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘mHMMbayes’ ...
+** package ‘mHMMbayes’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c cat_mult_fw_cpp.cpp -o cat_mult_fw_cpp.o
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o mHMMbayes.so RcppExports.o cat_mult_fw_cpp.o -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/mHMMbayes/old/mHMMbayes.Rcheck/00LOCK-mHMMbayes/00new/mHMMbayes/libs
+** R
+...
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘mHMMbayes’
+* removing ‘/tmp/workdir/mHMMbayes/old/mHMMbayes.Rcheck/mHMMbayes’
+
+
+```
+# midasr
+
+
+
+* Version: 0.8
+* GitHub: https://github.com/mpiktas/midasr
+* Source code: https://github.com/cran/midasr
+* Date/Publication: 2021-02-23 09:40:05 UTC
+* Number of recursive dependencies: 80
+
+Run `revdepcheck::cloud_details(, "midasr")` for more info
+
+
+
+## In both
+
+* checking whether package ‘midasr’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/midasr/new/midasr.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘midasr’ ...
+** package ‘midasr’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+** demo
+** inst
+** byte-compile and prepare package for lazy loading
+Error: package or namespace load failed for ‘quantreg’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Execution halted
+ERROR: lazy loading failed for package ‘midasr’
+* removing ‘/tmp/workdir/midasr/new/midasr.Rcheck/midasr’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘midasr’ ...
+** package ‘midasr’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+** demo
+** inst
+** byte-compile and prepare package for lazy loading
+Error: package or namespace load failed for ‘quantreg’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Execution halted
+ERROR: lazy loading failed for package ‘midasr’
+* removing ‘/tmp/workdir/midasr/old/midasr.Rcheck/midasr’
+
+
+```
+# miWQS
+
+
+
+* Version: 0.4.4
+* GitHub: https://github.com/phargarten2/miWQS
+* Source code: https://github.com/cran/miWQS
+* Date/Publication: 2021-04-02 21:50:02 UTC
+* Number of recursive dependencies: 148
+
+Run `revdepcheck::cloud_details(, "miWQS")` for more info
+
+
+
+## In both
+
+* checking whether package ‘miWQS’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/miWQS/new/miWQS.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘miWQS’ ...
+** package ‘miWQS’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘miWQS’
+* removing ‘/tmp/workdir/miWQS/new/miWQS.Rcheck/miWQS’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘miWQS’ ...
+** package ‘miWQS’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘miWQS’
+* removing ‘/tmp/workdir/miWQS/old/miWQS.Rcheck/miWQS’
+
+
+```
+# mixAR
+
+
+
+* Version: 0.22.8
+* GitHub: https://github.com/GeoBosh/mixAR
+* Source code: https://github.com/cran/mixAR
+* Date/Publication: 2023-12-19 01:40:02 UTC
+* Number of recursive dependencies: 96
+
+Run `revdepcheck::cloud_details(, "mixAR")` for more info
+
+
+
+## In both
+
+* checking whether package ‘mixAR’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/mixAR/new/mixAR.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘mixAR’ ...
+** package ‘mixAR’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘mixAR’
+* removing ‘/tmp/workdir/mixAR/new/mixAR.Rcheck/mixAR’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘mixAR’ ...
+** package ‘mixAR’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘mixAR’
+* removing ‘/tmp/workdir/mixAR/old/mixAR.Rcheck/mixAR’
+
+
+```
+# mlmts
+
+
+
+* Version: 1.1.2
+* GitHub: NA
+* Source code: https://github.com/cran/mlmts
+* Date/Publication: 2024-08-18 08:40:06 UTC
+* Number of recursive dependencies: 243
+
+Run `revdepcheck::cloud_details(, "mlmts")` for more info
+
+
+
+## In both
+
+* checking whether package ‘mlmts’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/mlmts/new/mlmts.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘mlmts’ ...
+** package ‘mlmts’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error : package or namespace load failed for ‘quantspec’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Error: unable to load R code in package ‘mlmts’
+Execution halted
+ERROR: lazy loading failed for package ‘mlmts’
+* removing ‘/tmp/workdir/mlmts/new/mlmts.Rcheck/mlmts’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘mlmts’ ...
+** package ‘mlmts’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error : package or namespace load failed for ‘quantspec’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Error: unable to load R code in package ‘mlmts’
+Execution halted
+ERROR: lazy loading failed for package ‘mlmts’
+* removing ‘/tmp/workdir/mlmts/old/mlmts.Rcheck/mlmts’
+
+
+```
+# mlr
+
+
+
+* Version: 2.19.2
+* GitHub: https://github.com/mlr-org/mlr
+* Source code: https://github.com/cran/mlr
+* Date/Publication: 2024-06-12 10:50:02 UTC
+* Number of recursive dependencies: 362
+
+Run `revdepcheck::cloud_details(, "mlr")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/mlr/new/mlr.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘mlr/DESCRIPTION’ ... OK
+...
+* checking for unstated dependencies in ‘tests’ ... OK
+* checking tests ... OK
+ Running ‘testthat.R’
+* checking for unstated dependencies in vignettes ... OK
+* checking package vignettes in ‘inst/doc’ ... OK
+* checking running R code from vignettes ... OK
+ ‘mlr.Rmd’ using ‘UTF-8’... OK
+* checking re-building of vignette outputs ... OK
+* DONE
+Status: 2 NOTEs
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/mlr/old/mlr.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘mlr/DESCRIPTION’ ... OK
+...
+* checking for unstated dependencies in ‘tests’ ... OK
+* checking tests ... OK
+ Running ‘testthat.R’
+* checking for unstated dependencies in vignettes ... OK
+* checking package vignettes in ‘inst/doc’ ... OK
+* checking running R code from vignettes ... OK
+ ‘mlr.Rmd’ using ‘UTF-8’... OK
+* checking re-building of vignette outputs ... OK
+* DONE
+Status: 2 NOTEs
+
+
+
+
+
+```
+# modeLLtest
+
+
+
+* Version: 1.0.4
+* GitHub: https://github.com/ShanaScogin/modeLLtest
+* Source code: https://github.com/cran/modeLLtest
+* Date/Publication: 2022-05-05 23:20:17 UTC
+* Number of recursive dependencies: 51
+
+Run `revdepcheck::cloud_details(, "modeLLtest")` for more info
+
+
+
+## In both
+
+* checking whether package ‘modeLLtest’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/modeLLtest/new/modeLLtest.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘modeLLtest’ ...
+** package ‘modeLLtest’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++11
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c cvll_mr.cpp -o cvll_mr.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c cvll_ols.cpp -o cvll_ols.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c cvll_rlm_m.cpp -o cvll_rlm_m.o
+...
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘modeLLtest’
+* removing ‘/tmp/workdir/modeLLtest/new/modeLLtest.Rcheck/modeLLtest’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘modeLLtest’ ...
+** package ‘modeLLtest’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++11
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c cvll_mr.cpp -o cvll_mr.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c cvll_ols.cpp -o cvll_ols.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c cvll_rlm_m.cpp -o cvll_rlm_m.o
+...
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘modeLLtest’
+* removing ‘/tmp/workdir/modeLLtest/old/modeLLtest.Rcheck/modeLLtest’
+
+
+```
+# multilevelmediation
+
+
+
+* Version: 0.4.1
+* GitHub: https://github.com/falkcarl/multilevelmediation
+* Source code: https://github.com/cran/multilevelmediation
+* Date/Publication: 2025-01-10 12:10:02 UTC
+* Number of recursive dependencies: 105
+
+Run `revdepcheck::cloud_details(, "multilevelmediation")` for more info
+
+
+
+## In both
+
+* checking whether package ‘multilevelmediation’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/multilevelmediation/new/multilevelmediation.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘multilevelmediation’ ...
+** package ‘multilevelmediation’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘multilevelmediation’
+* removing ‘/tmp/workdir/multilevelmediation/new/multilevelmediation.Rcheck/multilevelmediation’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘multilevelmediation’ ...
+** package ‘multilevelmediation’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘multilevelmediation’
+* removing ‘/tmp/workdir/multilevelmediation/old/multilevelmediation.Rcheck/multilevelmediation’
+
+
+```
+# multilevelTools
+
+
+
+* Version: 0.1.1
+* GitHub: https://github.com/JWiley/multilevelTools
+* Source code: https://github.com/cran/multilevelTools
+* Date/Publication: 2020-03-04 09:50:02 UTC
+* Number of recursive dependencies: 167
+
+Run `revdepcheck::cloud_details(, "multilevelTools")` for more info
+
+
+
+## In both
+
+* checking whether package ‘multilevelTools’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/multilevelTools/new/multilevelTools.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘multilevelTools’ ...
+** package ‘multilevelTools’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Warning in check_dep_version() :
+ ABI version mismatch:
+lme4 was built with Matrix ABI version 1
+Current Matrix ABI version is 0
+Please re-install lme4 from source or restore original ‘Matrix’ package
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘multilevelTools’
+* removing ‘/tmp/workdir/multilevelTools/new/multilevelTools.Rcheck/multilevelTools’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘multilevelTools’ ...
+** package ‘multilevelTools’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Warning in check_dep_version() :
+ ABI version mismatch:
+lme4 was built with Matrix ABI version 1
+Current Matrix ABI version is 0
+Please re-install lme4 from source or restore original ‘Matrix’ package
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘multilevelTools’
+* removing ‘/tmp/workdir/multilevelTools/old/multilevelTools.Rcheck/multilevelTools’
+
+
+```
+# multinma
+
+
+
+* Version: 0.7.2
+* GitHub: https://github.com/dmphillippo/multinma
+* Source code: https://github.com/cran/multinma
+* Date/Publication: 2024-09-16 12:20:02 UTC
+* Number of recursive dependencies: 151
+
+Run `revdepcheck::cloud_details(, "multinma")` for more info
+
+
+
+## In both
+
+* checking whether package ‘multinma’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/multinma/new/multinma.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘multinma’ ...
+** package ‘multinma’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++17
+
+
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I"../inst/include" -I"/usr/local/lib/R/site-library/StanHeaders/include/src" -DBOOST_DISABLE_ASSERTS -DEIGEN_NO_DEBUG -DBOOST_MATH_OVERFLOW_ERROR_POLICY=errno_on_error -DUSE_STANC3 -D_HAS_AUTO_PTR_ETC=0 -I'/usr/local/lib/R/site-library/BH/include' -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppEigen/include' -I'/usr/local/lib/R/site-library/RcppParallel/include' -I'/usr/local/lib/R/site-library/rstan/include' -I'/usr/local/lib/R/site-library/StanHeaders/include' -I/usr/local/include -I'/usr/local/lib/R/site-library/RcppParallel/include' -D_REENTRANT -DSTAN_THREADS -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+In file included from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Core:205,
+...
+/usr/local/lib/R/site-library/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:22:0: required from ‘double stan::mcmc::dense_e_metric::T(stan::mcmc::dense_e_point&) [with Model = model_survival_param_namespace::model_survival_param; BaseRNG = boost::random::additive_combine_engine, boost::random::linear_congruential_engine >]’
+/usr/local/lib/R/site-library/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:21:0: required from here
+/usr/local/lib/R/site-library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__m128d’} [-Wignored-attributes]
+ 654 | return internal::first_aligned::alignment),Derived>(m);
+ | ^~~~~~~~~
+g++: fatal error: Killed signal terminated program cc1plus
+compilation terminated.
+make: *** [/opt/R/4.3.1/lib/R/etc/Makeconf:198: stanExports_survival_param.o] Error 1
+ERROR: compilation failed for package ‘multinma’
+* removing ‘/tmp/workdir/multinma/new/multinma.Rcheck/multinma’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘multinma’ ...
+** package ‘multinma’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++17
+
+
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I"../inst/include" -I"/usr/local/lib/R/site-library/StanHeaders/include/src" -DBOOST_DISABLE_ASSERTS -DEIGEN_NO_DEBUG -DBOOST_MATH_OVERFLOW_ERROR_POLICY=errno_on_error -DUSE_STANC3 -D_HAS_AUTO_PTR_ETC=0 -I'/usr/local/lib/R/site-library/BH/include' -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppEigen/include' -I'/usr/local/lib/R/site-library/RcppParallel/include' -I'/usr/local/lib/R/site-library/rstan/include' -I'/usr/local/lib/R/site-library/StanHeaders/include' -I/usr/local/include -I'/usr/local/lib/R/site-library/RcppParallel/include' -D_REENTRANT -DSTAN_THREADS -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+In file included from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Core:205,
+...
+/usr/local/lib/R/site-library/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:22:0: required from ‘double stan::mcmc::dense_e_metric::T(stan::mcmc::dense_e_point&) [with Model = model_survival_param_namespace::model_survival_param; BaseRNG = boost::random::additive_combine_engine, boost::random::linear_congruential_engine >]’
+/usr/local/lib/R/site-library/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:21:0: required from here
+/usr/local/lib/R/site-library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__m128d’} [-Wignored-attributes]
+ 654 | return internal::first_aligned::alignment),Derived>(m);
+ | ^~~~~~~~~
+g++: fatal error: Killed signal terminated program cc1plus
+compilation terminated.
+make: *** [/opt/R/4.3.1/lib/R/etc/Makeconf:198: stanExports_survival_param.o] Error 1
+ERROR: compilation failed for package ‘multinma’
+* removing ‘/tmp/workdir/multinma/old/multinma.Rcheck/multinma’
+
+
+```
+# multvardiv
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/multvardiv
+* Number of recursive dependencies: 45
+
+Run `revdepcheck::cloud_details(, "multvardiv")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# NCA
+
+
+
+* Version: 4.0.2
+* GitHub: NA
+* Source code: https://github.com/cran/NCA
+* Date/Publication: 2024-11-09 18:10:02 UTC
+* Number of recursive dependencies: 98
+
+Run `revdepcheck::cloud_details(, "NCA")` for more info
+
+
+
+## In both
+
+* checking whether package ‘NCA’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/NCA/new/NCA.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘NCA’ ...
+** package ‘NCA’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘NCA’
+* removing ‘/tmp/workdir/NCA/new/NCA.Rcheck/NCA’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘NCA’ ...
+** package ‘NCA’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘NCA’
+* removing ‘/tmp/workdir/NCA/old/NCA.Rcheck/NCA’
+
+
+```
+# netcmc
+
+
+
+* Version: 1.0.2
+* GitHub: NA
+* Source code: https://github.com/cran/netcmc
+* Date/Publication: 2022-11-08 22:30:15 UTC
+* Number of recursive dependencies: 60
+
+Run `revdepcheck::cloud_details(, "netcmc")` for more info
+
+
+
+## In both
+
+* checking whether package ‘netcmc’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/netcmc/new/netcmc.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘netcmc’ ...
+** package ‘netcmc’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++11
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/RcppProgress/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/RcppProgress/include' -I/usr/local/include -fpic -g -O2 -c choleskyDecompositionRcppConversion.cpp -o choleskyDecompositionRcppConversion.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/RcppProgress/include' -I/usr/local/include -fpic -g -O2 -c doubleMatrixMultiplicationRcpp.cpp -o doubleMatrixMultiplicationRcpp.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/RcppProgress/include' -I/usr/local/include -fpic -g -O2 -c doubleVectorMultiplicationRcpp.cpp -o doubleVectorMultiplicationRcpp.o
+...
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/RcppProgress/include' -I/usr/local/include -fpic -g -O2 -c vectorVectorTransposeMultiplicationRcpp.cpp -o vectorVectorTransposeMultiplicationRcpp.o
+g++ -std=gnu++11 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o netcmc.so RcppExports.o choleskyDecompositionRcppConversion.o doubleMatrixMultiplicationRcpp.o doubleVectorMultiplicationRcpp.o eigenValuesRcppConversion.o getDiagonalMatrix.o getExp.o getExpDividedByOnePlusExp.o getMeanCenteredRandomEffects.o getMultivariateBinomialNetworkLerouxDIC.o getMultivariateBinomialNetworkLerouxFittedValuesAndLikelihoodForDICEveryIteration.o getMultivariateGaussianNetworkLerouxDIC.o getMultivariateGaussianNetworkLerouxFittedValuesAndLikelihoodForDICEveryIteration.o getMultivariatePoissonNetworkLerouxDIC.o getMultivariatePoissonNetworkLerouxFittedValuesAndLikelihoodForDICEveryIteration.o getNonZeroEntries.o getSubvector.o getSubvectorIndecies.o getSumExpNetwork.o getSumExpNetworkIndecies.o getSumExpNetworkLeroux.o getSumExpNetworkLerouxIndecies.o getSumLogExp.o getSumLogExpIndecies.o getSumVector.o getTripletForm.o getUnivariateBinomialNetworkLerouxDIC.o getUnivariateBinomialNetworkLerouxFittedValuesAndLikelihoodForDICEveryIteration.o getUnivariateGaussianNetworkLerouxDIC.o getUnivariateGaussianNetworkLerouxFittedValuesAndLikelihoodForDICEveryIteration.o getUnivariatePoissonNetworkDIC.o getUnivariatePoissonNetworkFittedValuesAndLikelihoodForDICEveryIteration.o getUnivariatePoissonNetworkLerouxDIC.o getUnivariatePoissonNetworkLerouxFittedValuesAndLikelihoodForDICEveryIteration.o getVectorMean.o matrixInverseRcppConversion.o matrixMatrixAdditionRcpp.o matrixMatrixSubtractionRcpp.o matrixVectorMultiplicationRcpp.o multivariateBinomialNetworkLerouxAllUpdate.o multivariateBinomialNetworkLerouxBetaUpdate.o multivariateBinomialNetworkLerouxRhoUpdate.o multivariateBinomialNetworkLerouxSingleUpdate.o multivariateBinomialNetworkLerouxSpatialRandomEffectsUpdate.o multivariateBinomialNetworkLerouxTauSquaredUpdate.o multivariateBinomialNetworkLerouxURandomEffectsUpdate.o multivariateBinomialNetworkLerouxVRandomEffectsUpdate.o multivariateBinomialNetworkLerouxVarianceCovarianceUUpdate.o multivariateBinomialNetworkRandAllUpdate.o multivariateBinomialNetworkRandSingleUpdate.o multivariateGaussianNetworkLerouxAllMHUpdate.o multivariateGaussianNetworkLerouxBetaUpdate.o multivariateGaussianNetworkLerouxRhoUpdate.o multivariateGaussianNetworkLerouxSigmaSquaredEUpdate.o multivariateGaussianNetworkLerouxSingleMHUpdate.o multivariateGaussianNetworkLerouxSpatialRandomEffectsMHUpdate.o multivariateGaussianNetworkLerouxTauSquaredUpdate.o multivariateGaussianNetworkLerouxURandomEffectsUpdate.o multivariateGaussianNetworkLerouxVarianceCovarianceUUpdate.o multivariateGaussianNetworkRandAllUpdate.o multivariateGaussianNetworkRandSingleUpdate.o multivariateGaussianNetworkRandVRandomEffectsUpdate.o multivariatePoissonNetworkLerouxAllUpdate.o multivariatePoissonNetworkLerouxBetaUpdate.o multivariatePoissonNetworkLerouxRhoUpdate.o multivariatePoissonNetworkLerouxSingleUpdate.o multivariatePoissonNetworkLerouxSpatialRandomEffectsUpdate.o multivariatePoissonNetworkLerouxTauSquaredUpdate.o multivariatePoissonNetworkLerouxURandomEffectsUpdate.o multivariatePoissonNetworkLerouxVRandomEffectsUpdate.o multivariatePoissonNetworkLerouxVarianceCovarianceUUpdate.o multivariatePoissonNetworkRandAllUpdate.o multivariatePoissonNetworkRandSingleUpdate.o sumMatrix.o univariateBinomialNetworkLerouxAllUpdate.o univariateBinomialNetworkLerouxBetaUpdate.o univariateBinomialNetworkLerouxRhoUpdate.o univariateBinomialNetworkLerouxSigmaSquaredUpdate.o univariateBinomialNetworkLerouxSingleUpdate.o univariateBinomialNetworkLerouxSpatialRandomEffectsUpdate.o univariateBinomialNetworkLerouxTauSquaredUpdate.o univariateBinomialNetworkLerouxURandomEffectsUpdate.o univariateGaussianNetworkLerouxAllMHUpdate.o univariateGaussianNetworkLerouxBetaUpdate.o univariateGaussianNetworkLerouxRhoUpdate.o univariateGaussianNetworkLerouxSigmaSquaredEUpdate.o univariateGaussianNetworkLerouxSigmaSquaredUUpdate.o univariateGaussianNetworkLerouxSingleMHUpdate.o univariateGaussianNetworkLerouxSpatialRandomEffectsMHUpdate.o univariateGaussianNetworkLerouxTauSquaredUpdate.o univariateGaussianNetworkLerouxURandomEffectsUpdate.o univariatePoissonNetworkLerouxAllUpdate.o univariatePoissonNetworkLerouxBetaUpdate.o univariatePoissonNetworkLerouxRhoUpdate.o univariatePoissonNetworkLerouxSigmaSquaredUpdate.o univariatePoissonNetworkLerouxSingleUpdate.o univariatePoissonNetworkLerouxSpatialRandomEffectsUpdate.o univariatePoissonNetworkLerouxTauSquaredUpdate.o univariatePoissonNetworkLerouxURandomEffectsUpdate.o vectorTransposeVectorMultiplicationRcpp.o vectorVectorTransposeMultiplicationRcpp.o -llapack -lblas -lgfortran -lm -lquadmath -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/netcmc/new/netcmc.Rcheck/00LOCK-netcmc/00new/netcmc/libs
+** R
+** byte-compile and prepare package for lazy loading
+Error: package or namespace load failed for ‘MCMCpack’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Execution halted
+ERROR: lazy loading failed for package ‘netcmc’
+* removing ‘/tmp/workdir/netcmc/new/netcmc.Rcheck/netcmc’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘netcmc’ ...
+** package ‘netcmc’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++11
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/RcppProgress/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/RcppProgress/include' -I/usr/local/include -fpic -g -O2 -c choleskyDecompositionRcppConversion.cpp -o choleskyDecompositionRcppConversion.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/RcppProgress/include' -I/usr/local/include -fpic -g -O2 -c doubleMatrixMultiplicationRcpp.cpp -o doubleMatrixMultiplicationRcpp.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/RcppProgress/include' -I/usr/local/include -fpic -g -O2 -c doubleVectorMultiplicationRcpp.cpp -o doubleVectorMultiplicationRcpp.o
+...
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/RcppProgress/include' -I/usr/local/include -fpic -g -O2 -c vectorVectorTransposeMultiplicationRcpp.cpp -o vectorVectorTransposeMultiplicationRcpp.o
+g++ -std=gnu++11 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o netcmc.so RcppExports.o choleskyDecompositionRcppConversion.o doubleMatrixMultiplicationRcpp.o doubleVectorMultiplicationRcpp.o eigenValuesRcppConversion.o getDiagonalMatrix.o getExp.o getExpDividedByOnePlusExp.o getMeanCenteredRandomEffects.o getMultivariateBinomialNetworkLerouxDIC.o getMultivariateBinomialNetworkLerouxFittedValuesAndLikelihoodForDICEveryIteration.o getMultivariateGaussianNetworkLerouxDIC.o getMultivariateGaussianNetworkLerouxFittedValuesAndLikelihoodForDICEveryIteration.o getMultivariatePoissonNetworkLerouxDIC.o getMultivariatePoissonNetworkLerouxFittedValuesAndLikelihoodForDICEveryIteration.o getNonZeroEntries.o getSubvector.o getSubvectorIndecies.o getSumExpNetwork.o getSumExpNetworkIndecies.o getSumExpNetworkLeroux.o getSumExpNetworkLerouxIndecies.o getSumLogExp.o getSumLogExpIndecies.o getSumVector.o getTripletForm.o getUnivariateBinomialNetworkLerouxDIC.o getUnivariateBinomialNetworkLerouxFittedValuesAndLikelihoodForDICEveryIteration.o getUnivariateGaussianNetworkLerouxDIC.o getUnivariateGaussianNetworkLerouxFittedValuesAndLikelihoodForDICEveryIteration.o getUnivariatePoissonNetworkDIC.o getUnivariatePoissonNetworkFittedValuesAndLikelihoodForDICEveryIteration.o getUnivariatePoissonNetworkLerouxDIC.o getUnivariatePoissonNetworkLerouxFittedValuesAndLikelihoodForDICEveryIteration.o getVectorMean.o matrixInverseRcppConversion.o matrixMatrixAdditionRcpp.o matrixMatrixSubtractionRcpp.o matrixVectorMultiplicationRcpp.o multivariateBinomialNetworkLerouxAllUpdate.o multivariateBinomialNetworkLerouxBetaUpdate.o multivariateBinomialNetworkLerouxRhoUpdate.o multivariateBinomialNetworkLerouxSingleUpdate.o multivariateBinomialNetworkLerouxSpatialRandomEffectsUpdate.o multivariateBinomialNetworkLerouxTauSquaredUpdate.o multivariateBinomialNetworkLerouxURandomEffectsUpdate.o multivariateBinomialNetworkLerouxVRandomEffectsUpdate.o multivariateBinomialNetworkLerouxVarianceCovarianceUUpdate.o multivariateBinomialNetworkRandAllUpdate.o multivariateBinomialNetworkRandSingleUpdate.o multivariateGaussianNetworkLerouxAllMHUpdate.o multivariateGaussianNetworkLerouxBetaUpdate.o multivariateGaussianNetworkLerouxRhoUpdate.o multivariateGaussianNetworkLerouxSigmaSquaredEUpdate.o multivariateGaussianNetworkLerouxSingleMHUpdate.o multivariateGaussianNetworkLerouxSpatialRandomEffectsMHUpdate.o multivariateGaussianNetworkLerouxTauSquaredUpdate.o multivariateGaussianNetworkLerouxURandomEffectsUpdate.o multivariateGaussianNetworkLerouxVarianceCovarianceUUpdate.o multivariateGaussianNetworkRandAllUpdate.o multivariateGaussianNetworkRandSingleUpdate.o multivariateGaussianNetworkRandVRandomEffectsUpdate.o multivariatePoissonNetworkLerouxAllUpdate.o multivariatePoissonNetworkLerouxBetaUpdate.o multivariatePoissonNetworkLerouxRhoUpdate.o multivariatePoissonNetworkLerouxSingleUpdate.o multivariatePoissonNetworkLerouxSpatialRandomEffectsUpdate.o multivariatePoissonNetworkLerouxTauSquaredUpdate.o multivariatePoissonNetworkLerouxURandomEffectsUpdate.o multivariatePoissonNetworkLerouxVRandomEffectsUpdate.o multivariatePoissonNetworkLerouxVarianceCovarianceUUpdate.o multivariatePoissonNetworkRandAllUpdate.o multivariatePoissonNetworkRandSingleUpdate.o sumMatrix.o univariateBinomialNetworkLerouxAllUpdate.o univariateBinomialNetworkLerouxBetaUpdate.o univariateBinomialNetworkLerouxRhoUpdate.o univariateBinomialNetworkLerouxSigmaSquaredUpdate.o univariateBinomialNetworkLerouxSingleUpdate.o univariateBinomialNetworkLerouxSpatialRandomEffectsUpdate.o univariateBinomialNetworkLerouxTauSquaredUpdate.o univariateBinomialNetworkLerouxURandomEffectsUpdate.o univariateGaussianNetworkLerouxAllMHUpdate.o univariateGaussianNetworkLerouxBetaUpdate.o univariateGaussianNetworkLerouxRhoUpdate.o univariateGaussianNetworkLerouxSigmaSquaredEUpdate.o univariateGaussianNetworkLerouxSigmaSquaredUUpdate.o univariateGaussianNetworkLerouxSingleMHUpdate.o univariateGaussianNetworkLerouxSpatialRandomEffectsMHUpdate.o univariateGaussianNetworkLerouxTauSquaredUpdate.o univariateGaussianNetworkLerouxURandomEffectsUpdate.o univariatePoissonNetworkLerouxAllUpdate.o univariatePoissonNetworkLerouxBetaUpdate.o univariatePoissonNetworkLerouxRhoUpdate.o univariatePoissonNetworkLerouxSigmaSquaredUpdate.o univariatePoissonNetworkLerouxSingleUpdate.o univariatePoissonNetworkLerouxSpatialRandomEffectsUpdate.o univariatePoissonNetworkLerouxTauSquaredUpdate.o univariatePoissonNetworkLerouxURandomEffectsUpdate.o vectorTransposeVectorMultiplicationRcpp.o vectorVectorTransposeMultiplicationRcpp.o -llapack -lblas -lgfortran -lm -lquadmath -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/netcmc/old/netcmc.Rcheck/00LOCK-netcmc/00new/netcmc/libs
+** R
+** byte-compile and prepare package for lazy loading
+Error: package or namespace load failed for ‘MCMCpack’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Execution halted
+ERROR: lazy loading failed for package ‘netcmc’
+* removing ‘/tmp/workdir/netcmc/old/netcmc.Rcheck/netcmc’
+
+
+```
+# newIMVC
+
+
+
+* Version: 0.1.0
+* GitHub: NA
+* Source code: https://github.com/cran/newIMVC
+* Date/Publication: 2024-04-16 14:50:13 UTC
+* Number of recursive dependencies: 54
+
+Run `revdepcheck::cloud_details(, "newIMVC")` for more info
+
+
+
+## In both
+
+* checking whether package ‘newIMVC’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/newIMVC/new/newIMVC.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘newIMVC’ ...
+** package ‘newIMVC’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘newIMVC’
+* removing ‘/tmp/workdir/newIMVC/new/newIMVC.Rcheck/newIMVC’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘newIMVC’ ...
+** package ‘newIMVC’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘newIMVC’
+* removing ‘/tmp/workdir/newIMVC/old/newIMVC.Rcheck/newIMVC’
+
+
+```
+# nlpred
+
+
+
+* Version: 1.0.1
+* GitHub: NA
+* Source code: https://github.com/cran/nlpred
+* Date/Publication: 2020-02-23 17:30:05 UTC
+* Number of recursive dependencies: 103
+
+Run `revdepcheck::cloud_details(, "nlpred")` for more info
+
+
+
+## In both
+
+* checking whether package ‘nlpred’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/nlpred/new/nlpred.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘nlpred’ ...
+** package ‘nlpred’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘nlpred’
+* removing ‘/tmp/workdir/nlpred/new/nlpred.Rcheck/nlpred’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘nlpred’ ...
+** package ‘nlpred’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘nlpred’
+* removing ‘/tmp/workdir/nlpred/old/nlpred.Rcheck/nlpred’
+
+
+```
+# NMADiagT
+
+
+
+* Version: 0.1.2
+* GitHub: NA
+* Source code: https://github.com/cran/NMADiagT
+* Date/Publication: 2020-02-26 07:00:02 UTC
+* Number of recursive dependencies: 78
+
+Run `revdepcheck::cloud_details(, "NMADiagT")` for more info
+
+
+
+## In both
+
+* checking whether package ‘NMADiagT’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/NMADiagT/new/NMADiagT.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘NMADiagT’ ...
+** package ‘NMADiagT’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘NMADiagT’
+* removing ‘/tmp/workdir/NMADiagT/new/NMADiagT.Rcheck/NMADiagT’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘NMADiagT’ ...
+** package ‘NMADiagT’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘NMADiagT’
+* removing ‘/tmp/workdir/NMADiagT/old/NMADiagT.Rcheck/NMADiagT’
+
+
+```
+# nse
+
+
+
+* Version: 1.21
+* GitHub: https://github.com/keblu/nse
+* Source code: https://github.com/cran/nse
+* Date/Publication: 2022-11-10 13:20:02 UTC
+* Number of recursive dependencies: 44
+
+Run `revdepcheck::cloud_details(, "nse")` for more info
+
+
+
+## In both
+
+* checking whether package ‘nse’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/nse/new/nse.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘nse’ ...
+** package ‘nse’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c f_boot.cpp -o f_boot.o
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o nse.so RcppExports.o f_boot.o -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/nse/new/nse.Rcheck/00LOCK-nse/00new/nse/libs
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘nse’
+* removing ‘/tmp/workdir/nse/new/nse.Rcheck/nse’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘nse’ ...
+** package ‘nse’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c f_boot.cpp -o f_boot.o
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o nse.so RcppExports.o f_boot.o -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/nse/old/nse.Rcheck/00LOCK-nse/00new/nse/libs
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘nse’
+* removing ‘/tmp/workdir/nse/old/nse.Rcheck/nse’
+
+
+```
+# OasisR
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/OasisR
+* Number of recursive dependencies: 44
+
+Run `revdepcheck::cloud_details(, "OasisR")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# OlinkAnalyze
+
+
+
+* Version: 4.0.2
+* GitHub: https://github.com/Olink-Proteomics/OlinkRPackage
+* Source code: https://github.com/cran/OlinkAnalyze
+* Date/Publication: 2024-11-22 16:20:02 UTC
+* Number of recursive dependencies: 207
+
+Run `revdepcheck::cloud_details(, "OlinkAnalyze")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/OlinkAnalyze/new/OlinkAnalyze.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘OlinkAnalyze/DESCRIPTION’ ... OK
+...
+--- finished re-building ‘plate_randomizer.Rmd’
+
+SUMMARY: processing the following file failed:
+ ‘Vignett.Rmd’
+
+Error: Vignette re-building failed.
+Execution halted
+
+* DONE
+Status: 1 ERROR, 2 NOTEs
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/OlinkAnalyze/old/OlinkAnalyze.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘OlinkAnalyze/DESCRIPTION’ ... OK
+...
+--- finished re-building ‘plate_randomizer.Rmd’
+
+SUMMARY: processing the following file failed:
+ ‘Vignett.Rmd’
+
+Error: Vignette re-building failed.
+Execution halted
+
+* DONE
+Status: 1 ERROR, 2 NOTEs
+
+
+
+
+
+```
+# paleopop
+
+
+
+* Version: 2.1.7
+* GitHub: https://github.com/GlobalEcologyLab/paleopop
+* Source code: https://github.com/cran/paleopop
+* Date/Publication: 2025-01-07 16:20:02 UTC
+* Number of recursive dependencies: 102
+
+Run `revdepcheck::cloud_details(, "paleopop")` for more info
+
+
+
+## In both
+
+* checking whether package ‘paleopop’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/paleopop/new/paleopop.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘paleopop’ ...
+** package ‘paleopop’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘paleopop’
+* removing ‘/tmp/workdir/paleopop/new/paleopop.Rcheck/paleopop’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘paleopop’ ...
+** package ‘paleopop’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘paleopop’
+* removing ‘/tmp/workdir/paleopop/old/paleopop.Rcheck/paleopop’
+
+
+```
+# pammtools
+
+
+
+* Version: 0.5.93
+* GitHub: https://github.com/adibender/pammtools
+* Source code: https://github.com/cran/pammtools
+* Date/Publication: 2024-02-25 10:10:02 UTC
+* Number of recursive dependencies: 124
+
+Run `revdepcheck::cloud_details(, "pammtools")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/pammtools/new/pammtools.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘pammtools/DESCRIPTION’ ... OK
+...
+* checking data for non-ASCII characters ... OK
+* checking LazyData ... OK
+* checking data for ASCII and uncompressed saves ... OK
+* checking R/sysdata.rda ... OK
+* checking examples ... OK
+* checking for unstated dependencies in ‘tests’ ... OK
+* checking tests ... OK
+ Running ‘testthat.R’
+* DONE
+Status: OK
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/pammtools/old/pammtools.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘pammtools/DESCRIPTION’ ... OK
+...
+* checking data for non-ASCII characters ... OK
+* checking LazyData ... OK
+* checking data for ASCII and uncompressed saves ... OK
+* checking R/sysdata.rda ... OK
+* checking examples ... OK
+* checking for unstated dependencies in ‘tests’ ... OK
+* checking tests ... OK
+ Running ‘testthat.R’
+* DONE
+Status: OK
+
+
+
+
+
+```
+# PathwaySpace
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/PathwaySpace
+* Number of recursive dependencies: 69
+
+Run `revdepcheck::cloud_details(, "PathwaySpace")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# pathwayTMB
+
+
+
+* Version: 0.1.3
+* GitHub: NA
+* Source code: https://github.com/cran/pathwayTMB
+* Date/Publication: 2022-08-09 13:50:02 UTC
+* Number of recursive dependencies: 223
+
+Run `revdepcheck::cloud_details(, "pathwayTMB")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/pathwayTMB/new/pathwayTMB.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘pathwayTMB/DESCRIPTION’ ... OK
+...
+* this is package ‘pathwayTMB’ version ‘0.1.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required but not available: ‘clusterProfiler’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/pathwayTMB/old/pathwayTMB.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘pathwayTMB/DESCRIPTION’ ... OK
+...
+* this is package ‘pathwayTMB’ version ‘0.1.3’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required but not available: ‘clusterProfiler’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# pcvr
+
+
+
+* Version: 1.1.1.0
+* GitHub: https://github.com/danforthcenter/pcvr
+* Source code: https://github.com/cran/pcvr
+* Date/Publication: 2024-11-06 20:50:02 UTC
+* Number of recursive dependencies: 189
+
+Run `revdepcheck::cloud_details(, "pcvr")` for more info
+
+
+
+## In both
+
+* checking whether package ‘pcvr’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/pcvr/new/pcvr.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘pcvr’ ...
+** package ‘pcvr’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Warning in check_dep_version() :
+ ABI version mismatch:
+lme4 was built with Matrix ABI version 1
+Current Matrix ABI version is 0
+Please re-install lme4 from source or restore original ‘Matrix’ package
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘pcvr’
+* removing ‘/tmp/workdir/pcvr/new/pcvr.Rcheck/pcvr’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘pcvr’ ...
+** package ‘pcvr’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Warning in check_dep_version() :
+ ABI version mismatch:
+lme4 was built with Matrix ABI version 1
+Current Matrix ABI version is 0
+Please re-install lme4 from source or restore original ‘Matrix’ package
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘pcvr’
+* removing ‘/tmp/workdir/pcvr/old/pcvr.Rcheck/pcvr’
+
+
+```
+# poems
+
+
+
+* Version: 1.3.1
+* GitHub: https://github.com/GlobalEcologyLab/poems
+* Source code: https://github.com/cran/poems
+* Date/Publication: 2024-09-19 20:40:03 UTC
+* Number of recursive dependencies: 100
+
+Run `revdepcheck::cloud_details(, "poems")` for more info
+
+
+
+## In both
+
+* checking whether package ‘poems’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/poems/new/poems.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘poems’ ...
+** package ‘poems’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘poems’
+* removing ‘/tmp/workdir/poems/new/poems.Rcheck/poems’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘poems’ ...
+** package ‘poems’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘poems’
+* removing ‘/tmp/workdir/poems/old/poems.Rcheck/poems’
+
+
+```
+# popEpi
+
+
+
+* Version: 0.4.12
+* GitHub: https://github.com/FinnishCancerRegistry/popEpi
+* Source code: https://github.com/cran/popEpi
+* Date/Publication: 2024-05-10 09:00:02 UTC
+* Number of recursive dependencies: 142
+
+Run `revdepcheck::cloud_details(, "popEpi")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/popEpi/new/popEpi.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘popEpi/DESCRIPTION’ ... OK
+...
+ Error: Test failures
+ Execution halted
+* checking for unstated dependencies in vignettes ... OK
+* checking package vignettes in ‘inst/doc’ ... OK
+* checking running R code from vignettes ... OK
+ ‘sir.Rmd’ using ‘UTF-8’... OK
+ ‘survtab_examples.Rmd’ using ‘UTF-8’... OK
+* checking re-building of vignette outputs ... OK
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/popEpi/old/popEpi.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘popEpi/DESCRIPTION’ ... OK
+...
+ Error: Test failures
+ Execution halted
+* checking for unstated dependencies in vignettes ... OK
+* checking package vignettes in ‘inst/doc’ ... OK
+* checking running R code from vignettes ... OK
+ ‘sir.Rmd’ using ‘UTF-8’... OK
+ ‘survtab_examples.Rmd’ using ‘UTF-8’... OK
+* checking re-building of vignette outputs ... OK
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# popstudy
+
+
+
+* Version: 1.0.1
+* GitHub: NA
+* Source code: https://github.com/cran/popstudy
+* Date/Publication: 2023-10-17 23:50:02 UTC
+* Number of recursive dependencies: 241
+
+Run `revdepcheck::cloud_details(, "popstudy")` for more info
+
+
+
+## In both
+
+* checking whether package ‘popstudy’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/popstudy/new/popstudy.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘popstudy’ ...
+** package ‘popstudy’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘popstudy’
+* removing ‘/tmp/workdir/popstudy/new/popstudy.Rcheck/popstudy’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘popstudy’ ...
+** package ‘popstudy’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘popstudy’
+* removing ‘/tmp/workdir/popstudy/old/popstudy.Rcheck/popstudy’
+
+
+```
+# powerly
+
+
+
+* Version: 1.8.6
+* GitHub: https://github.com/mihaiconstantin/powerly
+* Source code: https://github.com/cran/powerly
+* Date/Publication: 2022-09-09 14:10:01 UTC
+* Number of recursive dependencies: 166
+
+Run `revdepcheck::cloud_details(, "powerly")` for more info
+
+
+
+## In both
+
+* checking whether package ‘powerly’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/powerly/new/powerly.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘powerly’ ...
+** package ‘powerly’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Warning in check_dep_version() :
+ ABI version mismatch:
+lme4 was built with Matrix ABI version 1
+Current Matrix ABI version is 0
+Please re-install lme4 from source or restore original ‘Matrix’ package
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.1 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘powerly’
+* removing ‘/tmp/workdir/powerly/new/powerly.Rcheck/powerly’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘powerly’ ...
+** package ‘powerly’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Warning in check_dep_version() :
+ ABI version mismatch:
+lme4 was built with Matrix ABI version 1
+Current Matrix ABI version is 0
+Please re-install lme4 from source or restore original ‘Matrix’ package
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.1 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘powerly’
+* removing ‘/tmp/workdir/powerly/old/powerly.Rcheck/powerly’
+
+
+```
+# pre
+
+
+
+* Version: 1.0.7
+* GitHub: https://github.com/marjoleinF/pre
+* Source code: https://github.com/cran/pre
+* Date/Publication: 2024-01-12 19:30:02 UTC
+* Number of recursive dependencies: 150
+
+Run `revdepcheck::cloud_details(, "pre")` for more info
+
+
+
+## In both
+
+* checking whether package ‘pre’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/pre/new/pre.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘pre’ ...
+** package ‘pre’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘pre’
+* removing ‘/tmp/workdir/pre/new/pre.Rcheck/pre’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘pre’ ...
+** package ‘pre’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘pre’
+* removing ‘/tmp/workdir/pre/old/pre.Rcheck/pre’
+
+
+```
+# pscore
+
+
+
+* Version: 0.4.0
+* GitHub: https://github.com/JWiley/score-project
+* Source code: https://github.com/cran/pscore
+* Date/Publication: 2022-05-13 22:30:02 UTC
+* Number of recursive dependencies: 168
+
+Run `revdepcheck::cloud_details(, "pscore")` for more info
+
+
+
+## In both
+
+* checking whether package ‘pscore’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/pscore/new/pscore.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘pscore’ ...
+** package ‘pscore’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+** inst
+** byte-compile and prepare package for lazy loading
+Warning in check_dep_version() :
+ ABI version mismatch:
+lme4 was built with Matrix ABI version 1
+Current Matrix ABI version is 0
+Please re-install lme4 from source or restore original ‘Matrix’ package
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘pscore’
+* removing ‘/tmp/workdir/pscore/new/pscore.Rcheck/pscore’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘pscore’ ...
+** package ‘pscore’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+** inst
+** byte-compile and prepare package for lazy loading
+Warning in check_dep_version() :
+ ABI version mismatch:
+lme4 was built with Matrix ABI version 1
+Current Matrix ABI version is 0
+Please re-install lme4 from source or restore original ‘Matrix’ package
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘pscore’
+* removing ‘/tmp/workdir/pscore/old/pscore.Rcheck/pscore’
+
+
+```
+# Publish
+
+
+
+* Version: 2023.01.17
+* GitHub: NA
+* Source code: https://github.com/cran/Publish
+* Date/Publication: 2023-01-17 17:40:09 UTC
+* Number of recursive dependencies: 122
+
+Run `revdepcheck::cloud_details(, "Publish")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/Publish/new/Publish.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘Publish/DESCRIPTION’ ... OK
+...
+ > library(Publish)
+ Loading required package: prodlim
+ > library(mitools)
+ > library(smcfcs)
+ > library(riskRegression)
+ Error in library(riskRegression) :
+ there is no package called 'riskRegression'
+ Execution halted
+* DONE
+Status: 2 ERRORs, 1 NOTE
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/Publish/old/Publish.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘Publish/DESCRIPTION’ ... OK
+...
+ > library(Publish)
+ Loading required package: prodlim
+ > library(mitools)
+ > library(smcfcs)
+ > library(riskRegression)
+ Error in library(riskRegression) :
+ there is no package called 'riskRegression'
+ Execution halted
+* DONE
+Status: 2 ERRORs, 1 NOTE
+
+
+
+
+
+```
+# qris
+
+
+
+* Version: 1.1.1
+* GitHub: https://github.com/Kyuhyun07/qris
+* Source code: https://github.com/cran/qris
+* Date/Publication: 2024-03-05 14:40:03 UTC
+* Number of recursive dependencies: 54
+
+Run `revdepcheck::cloud_details(, "qris")` for more info
+
+
+
+## In both
+
+* checking whether package ‘qris’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/qris/new/qris.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘qris’ ...
+** package ‘qris’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C compiler: ‘gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++11
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c Amat.cpp -o Amat.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c ghat.cpp -o ghat.o
+...
+installing to /tmp/workdir/qris/new/qris.Rcheck/00LOCK-qris/00new/qris/libs
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘qris’
+* removing ‘/tmp/workdir/qris/new/qris.Rcheck/qris’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘qris’ ...
+** package ‘qris’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C compiler: ‘gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++11
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c Amat.cpp -o Amat.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++11 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c ghat.cpp -o ghat.o
+...
+installing to /tmp/workdir/qris/old/qris.Rcheck/00LOCK-qris/00new/qris/libs
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘qris’
+* removing ‘/tmp/workdir/qris/old/qris.Rcheck/qris’
+
+
+```
+# QTOCen
+
+
+
+* Version: 0.1.1
+* GitHub: NA
+* Source code: https://github.com/cran/QTOCen
+* Date/Publication: 2019-06-04 12:10:10 UTC
+* Number of recursive dependencies: 112
+
+Run `revdepcheck::cloud_details(, "QTOCen")` for more info
+
+
+
+## In both
+
+* checking whether package ‘QTOCen’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/QTOCen/new/QTOCen.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘QTOCen’ ...
+** package ‘QTOCen’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘QTOCen’
+* removing ‘/tmp/workdir/QTOCen/new/QTOCen.Rcheck/QTOCen’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘QTOCen’ ...
+** package ‘QTOCen’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘QTOCen’
+* removing ‘/tmp/workdir/QTOCen/old/QTOCen.Rcheck/QTOCen’
+
+
+```
+# quantspec
+
+
+
+* Version: 1.2-4
+* GitHub: https://github.com/tobiaskley/quantspec
+* Source code: https://github.com/cran/quantspec
+* Date/Publication: 2024-07-11 12:50:02 UTC
+* Number of recursive dependencies: 36
+
+Run `revdepcheck::cloud_details(, "quantspec")` for more info
+
+
+
+## In both
+
+* checking whether package ‘quantspec’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/quantspec/new/quantspec.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘quantspec’ ...
+** package ‘quantspec’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c computeCoherency.cpp -o computeCoherency.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c computeSdNaive.cpp -o computeSdNaive.o
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o quantspec.so RcppExports.o computeCoherency.o computeSdNaive.o -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/quantspec/new/quantspec.Rcheck/00LOCK-quantspec/00new/quantspec/libs
+...
+*** moving datasets to lazyload DB
+** demo
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘quantspec’
+* removing ‘/tmp/workdir/quantspec/new/quantspec.Rcheck/quantspec’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘quantspec’ ...
+** package ‘quantspec’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c computeCoherency.cpp -o computeCoherency.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c computeSdNaive.cpp -o computeSdNaive.o
+g++ -std=gnu++17 -shared -L/opt/R/4.3.1/lib/R/lib -L/usr/local/lib -o quantspec.so RcppExports.o computeCoherency.o computeSdNaive.o -L/opt/R/4.3.1/lib/R/lib -lR
+installing to /tmp/workdir/quantspec/old/quantspec.Rcheck/00LOCK-quantspec/00new/quantspec/libs
+...
+*** moving datasets to lazyload DB
+** demo
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘quantspec’
+* removing ‘/tmp/workdir/quantspec/old/quantspec.Rcheck/quantspec’
+
+
+```
+# quid
+
+
+
+* Version: 0.0.1
+* GitHub: NA
+* Source code: https://github.com/cran/quid
+* Date/Publication: 2021-12-09 09:00:02 UTC
+* Number of recursive dependencies: 94
+
+Run `revdepcheck::cloud_details(, "quid")` for more info
+
+
+
+## In both
+
+* checking whether package ‘quid’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/quid/new/quid.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘quid’ ...
+** package ‘quid’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘quid’
+* removing ‘/tmp/workdir/quid/new/quid.Rcheck/quid’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘quid’ ...
+** package ‘quid’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘quid’
+* removing ‘/tmp/workdir/quid/old/quid.Rcheck/quid’
+
+
+```
+# rddtools
+
+
+
+* Version: 1.6.0
+* GitHub: https://github.com/bquast/rddtools
+* Source code: https://github.com/cran/rddtools
+* Date/Publication: 2022-01-10 12:42:49 UTC
+* Number of recursive dependencies: 105
+
+Run `revdepcheck::cloud_details(, "rddtools")` for more info
+
+
+
+## In both
+
+* checking whether package ‘rddtools’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/rddtools/new/rddtools.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘rddtools’ ...
+** package ‘rddtools’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+** inst
+** byte-compile and prepare package for lazy loading
+Error: package or namespace load failed for ‘np’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Execution halted
+ERROR: lazy loading failed for package ‘rddtools’
+* removing ‘/tmp/workdir/rddtools/new/rddtools.Rcheck/rddtools’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘rddtools’ ...
+** package ‘rddtools’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+** inst
+** byte-compile and prepare package for lazy loading
+Error: package or namespace load failed for ‘np’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Execution halted
+ERROR: lazy loading failed for package ‘rddtools’
+* removing ‘/tmp/workdir/rddtools/old/rddtools.Rcheck/rddtools’
+
+
+```
+# rdflib
+
+
+
+* Version: 0.2.9
+* GitHub: https://github.com/ropensci/rdflib
+* Source code: https://github.com/cran/rdflib
+* Date/Publication: 2024-08-17 06:00:05 UTC
+* Number of recursive dependencies: 93
+
+Run `revdepcheck::cloud_details(, "rdflib")` for more info
+
+
+
+## In both
+
+* checking whether package ‘rdflib’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/rdflib/new/rdflib.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘rdflib’ ...
+** package ‘rdflib’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in dyn.load(file, DLLpath = DLLpath, ...) :
+ unable to load shared object '/usr/local/lib/R/site-library/redland/libs/redland.so':
+ librdf.so.0: cannot open shared object file: No such file or directory
+Calls: ... asNamespace -> loadNamespace -> library.dynam -> dyn.load
+Execution halted
+ERROR: lazy loading failed for package ‘rdflib’
+* removing ‘/tmp/workdir/rdflib/new/rdflib.Rcheck/rdflib’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘rdflib’ ...
+** package ‘rdflib’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** inst
+** byte-compile and prepare package for lazy loading
+Error in dyn.load(file, DLLpath = DLLpath, ...) :
+ unable to load shared object '/usr/local/lib/R/site-library/redland/libs/redland.so':
+ librdf.so.0: cannot open shared object file: No such file or directory
+Calls: ... asNamespace -> loadNamespace -> library.dynam -> dyn.load
+Execution halted
+ERROR: lazy loading failed for package ‘rdflib’
+* removing ‘/tmp/workdir/rdflib/old/rdflib.Rcheck/rdflib’
+
+
+```
+# redland
+
+
+
+* Version: 1.0.17-18
+* GitHub: https://github.com/ropensci/redland-bindings
+* Source code: https://github.com/cran/redland
+* Date/Publication: 2024-02-24 01:10:02 UTC
+* Number of recursive dependencies: 53
+
+Run `revdepcheck::cloud_details(, "redland")` for more info
+
+
+
+## In both
+
+* checking whether package ‘redland’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/redland/new/redland.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘redland’ ...
+** package ‘redland’ successfully unpacked and MD5 sums checked
+** using staged installation
+Using PKG_CFLAGS=
+Using PKG_LIBS=-lrdf
+------------------------- ANTICONF ERROR ---------------------------
+Configuration failed because redland was not found. Try installing:
+ * deb: librdf0-dev (Debian, Ubuntu, etc)
+ * rpm: redland-devel (Fedora, EPEL)
+ * brew: redland (OSX)
+If redland is already installed, check that 'pkg-config' is in your
+PATH and PKG_CONFIG_PATH contains a redland.pc file. If pkg-config
+is unavailable you can set INCLUDE_DIR and LIB_DIR manually via:
+R CMD INSTALL --configure-vars='INCLUDE_DIR=... LIB_DIR=...'
+--------------------------------------------------------------------
+ERROR: configuration failed for package ‘redland’
+* removing ‘/tmp/workdir/redland/new/redland.Rcheck/redland’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘redland’ ...
+** package ‘redland’ successfully unpacked and MD5 sums checked
+** using staged installation
+Using PKG_CFLAGS=
+Using PKG_LIBS=-lrdf
+------------------------- ANTICONF ERROR ---------------------------
+Configuration failed because redland was not found. Try installing:
+ * deb: librdf0-dev (Debian, Ubuntu, etc)
+ * rpm: redland-devel (Fedora, EPEL)
+ * brew: redland (OSX)
+If redland is already installed, check that 'pkg-config' is in your
+PATH and PKG_CONFIG_PATH contains a redland.pc file. If pkg-config
+is unavailable you can set INCLUDE_DIR and LIB_DIR manually via:
+R CMD INSTALL --configure-vars='INCLUDE_DIR=... LIB_DIR=...'
+--------------------------------------------------------------------
+ERROR: configuration failed for package ‘redland’
+* removing ‘/tmp/workdir/redland/old/redland.Rcheck/redland’
+
+
+```
+# RGraphSpace
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/RGraphSpace
+* Number of recursive dependencies: 64
+
+Run `revdepcheck::cloud_details(, "RGraphSpace")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# riskRegression
+
+
+
+* Version: 2023.12.21
+* GitHub: https://github.com/tagteam/riskRegression
+* Source code: https://github.com/cran/riskRegression
+* Date/Publication: 2023-12-19 17:00:02 UTC
+* Number of recursive dependencies: 185
+
+Run `revdepcheck::cloud_details(, "riskRegression")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/riskRegression/new/riskRegression.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘riskRegression/DESCRIPTION’ ... OK
+...
+* this is package ‘riskRegression’ version ‘2023.12.21’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required but not available: ‘rms’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/riskRegression/old/riskRegression.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘riskRegression/DESCRIPTION’ ... OK
+...
+* this is package ‘riskRegression’ version ‘2023.12.21’
+* package encoding: UTF-8
+* checking package namespace information ... OK
+* checking package dependencies ... ERROR
+Package required but not available: ‘rms’
+
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’
+manual.
+* DONE
+Status: 1 ERROR
+
+
+
+
+
+```
+# rlme
+
+
+
+* Version: 0.5
+* GitHub: NA
+* Source code: https://github.com/cran/rlme
+* Date/Publication: 2018-01-09 17:35:55 UTC
+* Number of recursive dependencies: 41
+
+Run `revdepcheck::cloud_details(, "rlme")` for more info
+
+
+
+## In both
+
+* checking whether package ‘rlme’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/rlme/new/rlme.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘rlme’ ...
+** package ‘rlme’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c bmat.cpp -o bmat.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c pairup.cpp -o pairup.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c remove_k_smallest.cpp -o remove_k_smallest.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c rhosch.cpp -o rhosch.o
+...
+** R
+** data
+*** moving datasets to lazyload DB
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘rlme’
+* removing ‘/tmp/workdir/rlme/new/rlme.Rcheck/rlme’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘rlme’ ...
+** package ‘rlme’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c bmat.cpp -o bmat.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c pairup.cpp -o pairup.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c remove_k_smallest.cpp -o remove_k_smallest.o
+g++ -std=gnu++17 -I"/opt/R/4.3.1/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c rhosch.cpp -o rhosch.o
+...
+** R
+** data
+*** moving datasets to lazyload DB
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘rlme’
+* removing ‘/tmp/workdir/rlme/old/rlme.Rcheck/rlme’
+
+
+```
+# rmlnomogram
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/rmlnomogram
+* Number of recursive dependencies: 178
+
+Run `revdepcheck::cloud_details(, "rmlnomogram")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# robber
+
+
+
+* Version: 0.2.4
+* GitHub: https://github.com/Chabert-Liddell/robber
+* Source code: https://github.com/cran/robber
+* Date/Publication: 2024-02-07 13:50:02 UTC
+* Number of recursive dependencies: 143
+
+Run `revdepcheck::cloud_details(, "robber")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+* using log directory ‘/tmp/workdir/robber/new/robber.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘robber/DESCRIPTION’ ... OK
+...
+* checking tests ... OK
+ Running ‘spelling.R’
+ Running ‘testthat.R’
+* checking for unstated dependencies in vignettes ... OK
+* checking package vignettes in ‘inst/doc’ ... OK
+* checking running R code from vignettes ... OK
+ ‘topological-analysis.Rmd’ using ‘UTF-8’... OK
+* checking re-building of vignette outputs ... OK
+* DONE
+Status: OK
+
+
+
+
+
+```
+### CRAN
+
+```
+* using log directory ‘/tmp/workdir/robber/old/robber.Rcheck’
+* using R version 4.3.1 (2023-06-16)
+* using platform: x86_64-pc-linux-gnu (64-bit)
+* R was compiled by
+ gcc (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+ GNU Fortran (Ubuntu 13.2.0-23ubuntu4) 13.2.0
+* running under: Ubuntu 24.04.1 LTS
+* using session charset: UTF-8
+* using option ‘--no-manual’
+* checking for file ‘robber/DESCRIPTION’ ... OK
+...
+* checking tests ... OK
+ Running ‘spelling.R’
+ Running ‘testthat.R’
+* checking for unstated dependencies in vignettes ... OK
+* checking package vignettes in ‘inst/doc’ ... OK
+* checking running R code from vignettes ... OK
+ ‘topological-analysis.Rmd’ using ‘UTF-8’... OK
+* checking re-building of vignette outputs ... OK
+* DONE
+Status: OK
+
+
+
+
+
+```
+# robmed
+
+
+
+* Version: 1.2.0
+* GitHub: https://github.com/aalfons/robmed
+* Source code: https://github.com/cran/robmed
+* Date/Publication: 2024-12-10 00:00:02 UTC
+* Number of recursive dependencies: 59
+
+Run `revdepcheck::cloud_details(, "robmed")` for more info
+
+
+
+## In both
+
+* checking whether package ‘robmed’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/robmed/new/robmed.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘robmed’ ...
+** package ‘robmed’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘robmed’
+* removing ‘/tmp/workdir/robmed/new/robmed.Rcheck/robmed’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘robmed’ ...
+** package ‘robmed’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘robmed’
+* removing ‘/tmp/workdir/robmed/old/robmed.Rcheck/robmed’
+
+
+```
+# RQdeltaCT
+
+
+
+* Version: 1.3.0
+* GitHub: NA
+* Source code: https://github.com/cran/RQdeltaCT
+* Date/Publication: 2024-04-17 15:50:02 UTC
+* Number of recursive dependencies: 163
+
+Run `revdepcheck::cloud_details(, "RQdeltaCT")` for more info
+
+
+
+## In both
+
+* checking whether package ‘RQdeltaCT’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/RQdeltaCT/new/RQdeltaCT.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘RQdeltaCT’ ...
+** package ‘RQdeltaCT’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘RQdeltaCT’
+* removing ‘/tmp/workdir/RQdeltaCT/new/RQdeltaCT.Rcheck/RQdeltaCT’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘RQdeltaCT’ ...
+** package ‘RQdeltaCT’ successfully unpacked and MD5 sums checked
+** using staged installation
+** R
+** data
+*** moving datasets to lazyload DB
+** inst
+** byte-compile and prepare package for lazy loading
+Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
+ namespace ‘Matrix’ 1.5-4.1 is already loaded, but >= 1.6.0 is required
+Calls: ... namespaceImportFrom -> asNamespace -> loadNamespace
+Execution halted
+ERROR: lazy loading failed for package ‘RQdeltaCT’
+* removing ‘/tmp/workdir/RQdeltaCT/old/RQdeltaCT.Rcheck/RQdeltaCT’
+
+
+```
+# RRPP
+
+
+
+* Version: NA
+* GitHub: NA
+* Source code: https://github.com/cran/RRPP
+* Number of recursive dependencies: 67
+
+Run `revdepcheck::cloud_details(, "RRPP")` for more info
+
+
+
+## Error before installation
+
+### Devel
+
+```
+
+
+
+
+
+
+```
+### CRAN
+
+```
+
+
+
+
+
+
+```
+# rstanarm
+
+
+
+* Version: 2.32.1
+* GitHub: https://github.com/stan-dev/rstanarm
+* Source code: https://github.com/cran/rstanarm
+* Date/Publication: 2024-01-18 23:00:03 UTC
+* Number of recursive dependencies: 137
+
+Run `revdepcheck::cloud_details(, "rstanarm")` for more info
+
+
+
+## In both
+
+* checking whether package ‘rstanarm’ can be installed ... ERROR
+ ```
+ Installation failed.
+ See ‘/tmp/workdir/rstanarm/new/rstanarm.Rcheck/00install.out’ for details.
+ ```
+
+## Installation
+
+### Devel
+
+```
+* installing *source* package ‘rstanarm’ ...
+** package ‘rstanarm’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++17
+"/opt/R/4.3.1/lib/R/bin/Rscript" -e "source(file.path('..', 'tools', 'make_cc.R')); make_cc(commandArgs(TRUE))" stan_files/bernoulli.stan
+Wrote C++ file "stan_files/bernoulli.cc"
+
+
+...
+/usr/local/lib/R/site-library/StanHeaders/include/stan/math/rev/fun/quad_form.hpp:88:0: required from here
+/usr/local/lib/R/site-library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__m128d’} [-Wignored-attributes]
+ 654 | return internal::first_aligned::alignment),Derived>(m);
+ | ^~~~~~~~~
+g++: fatal error: Killed signal terminated program cc1plus
+compilation terminated.
+make: *** [/opt/R/4.3.1/lib/R/etc/Makeconf:198: stan_files/continuous.o] Error 1
+rm stan_files/bernoulli.cc stan_files/binomial.cc stan_files/continuous.cc
+ERROR: compilation failed for package ‘rstanarm’
+* removing ‘/tmp/workdir/rstanarm/new/rstanarm.Rcheck/rstanarm’
+
+
+```
+### CRAN
+
+```
+* installing *source* package ‘rstanarm’ ...
+** package ‘rstanarm’ successfully unpacked and MD5 sums checked
+** using staged installation
+** libs
+using C++ compiler: ‘g++ (Ubuntu 13.2.0-23ubuntu4) 13.2.0’
+using C++17
+"/opt/R/4.3.1/lib/R/bin/Rscript" -e "source(file.path('..', 'tools', 'make_cc.R')); make_cc(commandArgs(TRUE))" stan_files/bernoulli.stan
+Wrote C++ file "stan_files/bernoulli.cc"
+
+
+...
+/usr/local/lib/R/site-library/StanHeaders/include/stan/math/rev/fun/quad_form.hpp:88:0: required from here
+/usr/local/lib/R/site-library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__m128d’} [-Wignored-attributes]
+ 654 | return internal::first_aligned::alignment),Derived>(m);
+ | ^~~~~~~~~
+g++: fatal error: Killed signal terminated program cc1plus
+compilation terminated.
+make: *** [/opt/R/4.3.1/lib/R/etc/Makeconf:198: stan_files/continuous.o] Error 1
+rm stan_files/bernoulli.cc stan_files/binomial.cc stan_files/continuous.cc
+ERROR: compilation failed for package ‘rstanarm’
+* removing ‘/tmp/workdir/rstanarm/old/rstanarm.Rcheck/rstanarm’
+
+
+```
+# scAnnotate
+
+