diff --git a/DESCRIPTION b/DESCRIPTION index 7131a6ab30..7151e187de 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Type: Package Package: dplyr Title: A Grammar of Data Manipulation -Version: 1.1.2 +Version: 1.1.3 Authors@R: c( person("Hadley", "Wickham", , "hadley@posit.co", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-4757-117X")), diff --git a/NEWS.md b/NEWS.md index 95e3b15364..e4966dffc1 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,11 @@ +# dplyr 1.1.3 + +* `mutate_each()` and `summarise_each()` now throw correct deprecation messages + (#6869). + +* `setequal()` now requires the input data frames to be compatible, similar to + the other set methods like `setdiff()` or `intersect()` (#6786). + # dplyr 1.1.2 * `count()` better documents that it has a `.drop` argument (#6820). diff --git a/R/case-when.R b/R/case-when.R index 265113a0bc..ea3f941f37 100644 --- a/R/case-when.R +++ b/R/case-when.R @@ -4,7 +4,7 @@ #' This function allows you to vectorise multiple [if_else()] statements. Each #' case is evaluated sequentially and the first match for each element #' determines the corresponding value in the output vector. If no cases match, -#' the `.default` is used. +#' the `.default` is used as a final "else" statment. #' #' `case_when()` is an R equivalent of the SQL "searched" `CASE WHEN` statement. #' diff --git a/R/deprec-lazyeval.R b/R/deprec-lazyeval.R index f65ae8bfa6..40530e7e92 100644 --- a/R/deprec-lazyeval.R +++ b/R/deprec-lazyeval.R @@ -359,17 +359,34 @@ summarize_ <- summarise_ #' @keywords internal #' @export summarise_each <- function(tbl, funs, ...) { - summarise_each_(tbl, funs, enquos(...)) + summarise_each_impl(tbl, funs, enquos(...), "summarise_each") } #' @export #' @rdname summarise_each summarise_each_ <- function(tbl, funs, vars) { - lifecycle::deprecate_warn("0.7.0", "summarise_each_()", "across()", always = TRUE) + summarise_each_impl(tbl, funs, vars, "summarise_each_") +} +summarise_each_impl <- function(tbl, + funs, + vars, + name, + env = caller_env(), + user_env = caller_env(2)) { + what <- paste0(name, "()") + + lifecycle::deprecate_warn( + when = "0.7.0", + what = what, + with = "across()", + always = TRUE, + env = env, + user_env = user_env + ) if (is_empty(vars)) { vars <- tbl_nongroup_vars(tbl) } else { - vars <- compat_lazy_dots(vars, caller_env()) + vars <- compat_lazy_dots(vars, user_env) vars <- tidyselect::vars_select(tbl_nongroup_vars(tbl), !!!vars) if (length(vars) == 1 && names(vars) == as_string(vars)) { vars <- unname(vars) @@ -378,7 +395,7 @@ summarise_each_ <- function(tbl, funs, vars) { if (is_character(funs)) { funs <- funs_(funs) } - funs <- manip_at(tbl, vars, funs, enquo(funs), caller_env(), .caller = "summarise_each_") + funs <- manip_at(tbl, vars, funs, enquo(funs), user_env, .caller = name) summarise(tbl, !!!funs) } @@ -388,24 +405,40 @@ mutate_each <- function(tbl, funs, ...) { if (is_character(funs)) { funs <- funs_(funs) } - - mutate_each_(tbl, funs, enquos(...)) + mutate_each_impl(tbl, funs, enquos(...), "mutate_each") } #' @export #' @rdname summarise_each mutate_each_ <- function(tbl, funs, vars) { - lifecycle::deprecate_warn("0.7.0", "mutate_each_()", "across()", always = TRUE) + mutate_each_impl(tbl, funs, vars, "mutate_each_") +} +mutate_each_impl <- function(tbl, + funs, + vars, + name, + env = caller_env(), + user_env = caller_env(2)) { + what <- paste0(name, "()") + + lifecycle::deprecate_warn( + when = "0.7.0", + what = what, + with = "across()", + always = TRUE, + env = env, + user_env = user_env + ) if (is_empty(vars)) { vars <- tbl_nongroup_vars(tbl) } else { - vars <- compat_lazy_dots(vars, caller_env()) + vars <- compat_lazy_dots(vars, user_env) vars <- tidyselect::vars_select(tbl_nongroup_vars(tbl), !!!vars) if (length(vars) == 1 && names(vars) == as_string(vars)) { vars <- unname(vars) } } - funs <- manip_at(tbl, vars, funs, enquo(funs), caller_env(), .caller = "mutate_each_") + funs <- manip_at(tbl, vars, funs, enquo(funs), user_env, .caller = name) mutate(tbl, !!!funs) } diff --git a/R/doc-params.R b/R/doc-params.R index 795148693c..8194c2ff76 100644 --- a/R/doc-params.R +++ b/R/doc-params.R @@ -1,14 +1,14 @@ #' Argument type: tidy-select #' #' @description -#' This page the describes the `` argument modifier which indicates +#' This page describes the `` argument modifier which indicates #' the argument supports **tidy selections**. Tidy selection provides a concise #' dialect of R for selecting variables based on their names or properties. #' #' Tidy selection is a variant of tidy evaluation. This means that inside #' functions, tidy-select arguments require special attention, as described in -#' the Indirection section. If you've never heard of tidy evaluation before, -#' start with `vignette("programming")`. +#' the *Indirection* section below. If you've never heard of tidy evaluation +#' before, start with `vignette("programming")`. #' #' #' # Overview of selection features @@ -26,8 +26,8 @@ #' names to cause an error, e.g. `select(df, all_of(vars))`, #' `select(df, !any_of(vars))`. #' -#' * If you you want the user to supply a tidyselect specification in a -#' function argument, embrace the function argument, e.g. +#' * If you want the user to be able to supply a tidyselect specification in +#' a function argument, embrace the function argument, e.g. #' `select(df, {{ vars }})`. #' #' @keywords internal diff --git a/R/sample.R b/R/sample.R index 1ef6954a0c..85ee62618c 100644 --- a/R/sample.R +++ b/R/sample.R @@ -77,7 +77,7 @@ sample_n.default <- function(tbl, size, replace = FALSE, weight = NULL, sample_n.data.frame <- function(tbl, size, replace = FALSE, weight = NULL, .env = NULL, ...) { if (!is_null(.env)) { - inform("`sample_n() argument `.env` is deprecated and no longer has any effect.") + inform("`sample_n()` argument `.env` is deprecated and no longer has any effect.") } size <- enquo(size) diff --git a/R/sets.R b/R/sets.R index c376268a8e..f35d59ae8c 100644 --- a/R/sets.R +++ b/R/sets.R @@ -142,12 +142,7 @@ setdiff.data.frame <- function(x, y, ...) { #' @export setequal.data.frame <- function(x, y, ...) { check_dots_empty() - if (!is.data.frame(y)) { - abort("`y` must be a data frame.") - } - if (!isTRUE(is_compatible(x, y))) { - return(FALSE) - } + check_compatible(x, y) cast <- vec_cast_common(x = x, y = y) all(vec_in(cast$x, cast$y)) && all(vec_in(cast$y, cast$x)) diff --git a/R/slice.R b/R/slice.R index 8546bdaa0c..3c259213fb 100644 --- a/R/slice.R +++ b/R/slice.R @@ -7,8 +7,8 @@ #' #' * `slice_head()` and `slice_tail()` select the first or last rows. #' * `slice_sample()` randomly selects rows. -#' * `slice_min()` and `slice_max()` select rows with highest or lowest values -#' of a variable. +#' * `slice_min()` and `slice_max()` select rows with the smallest or largest +#' values of a variable. #' #' If `.data` is a [grouped_df], the operation will be performed on each group, #' so that (e.g.) `slice_head(df, n = 5)` will select the first five rows in diff --git a/R/tbl.R b/R/tbl.R index a962520a8d..f1412a44e6 100644 --- a/R/tbl.R +++ b/R/tbl.R @@ -19,7 +19,6 @@ tbl <- function(src, ...) { #' @param subclass name of subclass. "tbl" is an abstract base class, so you #' must supply this value. `tbl_` is automatically prepended to the #' class name -#' @param object to test/coerce. #' @param ... For `tbl()`, other fields used by class. For `as.tbl()`, #' other arguments passed to methods. make_tbl <- function(subclass, ...) { diff --git a/cran-comments.md b/cran-comments.md index 1b78b92866..e51d709926 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,3 +1,3 @@ We don't expect any reverse dependency failures. -This patch release maintains compatibility with an upcoming release of waldo. +This patch release contains a few minor bug fixes. diff --git a/data-raw/starwars.R b/data-raw/starwars.R index 581f6a2cd1..1c8032c613 100644 --- a/data-raw/starwars.R +++ b/data-raw/starwars.R @@ -63,7 +63,7 @@ starwars <- tibble( # collected data from @MeganBeckett. # Droids are robots and do not have a biological sex. But they -# they have a gender, determined by they were programmed: +# they have a gender, determined by how they were programmed: # https://starwars.fandom.com/wiki/Sexes # # Hutts are hermaphroditic, but identify as either male or female diff --git a/man/case_when.Rd b/man/case_when.Rd index d3143968ef..e6ea81af44 100644 --- a/man/case_when.Rd +++ b/man/case_when.Rd @@ -55,7 +55,7 @@ in \code{...}. This function allows you to vectorise multiple \code{\link[=if_else]{if_else()}} statements. Each case is evaluated sequentially and the first match for each element determines the corresponding value in the output vector. If no cases match, -the \code{.default} is used. +the \code{.default} is used as a final "else" statment. \code{case_when()} is an R equivalent of the SQL "searched" \verb{CASE WHEN} statement. } diff --git a/man/dplyr_tidy_select.Rd b/man/dplyr_tidy_select.Rd index c4f4efe863..c77ab4d84e 100644 --- a/man/dplyr_tidy_select.Rd +++ b/man/dplyr_tidy_select.Rd @@ -4,14 +4,14 @@ \alias{dplyr_tidy_select} \title{Argument type: tidy-select} \description{ -This page the describes the \verb{} argument modifier which indicates +This page describes the \verb{} argument modifier which indicates the argument supports \strong{tidy selections}. Tidy selection provides a concise dialect of R for selecting variables based on their names or properties. Tidy selection is a variant of tidy evaluation. This means that inside functions, tidy-select arguments require special attention, as described in -the Indirection section. If you've never heard of tidy evaluation before, -start with \code{vignette("programming")}. +the \emph{Indirection} section below. If you've never heard of tidy evaluation +before, start with \code{vignette("programming")}. } \section{Overview of selection features}{ Tidyverse selections implement a dialect of R where operators make @@ -64,8 +64,8 @@ There are two main cases: or \code{any_of()}, depending on whether or not you want unknown variable names to cause an error, e.g. \code{select(df, all_of(vars))}, \code{select(df, !any_of(vars))}. -\item If you you want the user to supply a tidyselect specification in a -function argument, embrace the function argument, e.g. +\item If you want the user to be able to supply a tidyselect specification in +a function argument, embrace the function argument, e.g. \code{select(df, {{ vars }})}. } } diff --git a/man/make_tbl.Rd b/man/make_tbl.Rd index e9c7eaf8a2..a7aac1f5c7 100644 --- a/man/make_tbl.Rd +++ b/man/make_tbl.Rd @@ -13,8 +13,6 @@ class name} \item{...}{For \code{tbl()}, other fields used by class. For \code{as.tbl()}, other arguments passed to methods.} - -\item{object}{to test/coerce.} } \description{ \code{tbl()} is the standard constructor for tbls. \code{as.tbl()} coerces, diff --git a/man/slice.Rd b/man/slice.Rd index 727f5b864c..89a54c74d5 100644 --- a/man/slice.Rd +++ b/man/slice.Rd @@ -111,8 +111,8 @@ helpers for common use cases: \itemize{ \item \code{slice_head()} and \code{slice_tail()} select the first or last rows. \item \code{slice_sample()} randomly selects rows. -\item \code{slice_min()} and \code{slice_max()} select rows with highest or lowest values -of a variable. +\item \code{slice_min()} and \code{slice_max()} select rows with the smallest or largest +values of a variable. } If \code{.data} is a \link{grouped_df}, the operation will be performed on each group, diff --git a/revdep/README.md b/revdep/README.md index 5c335ac2cb..42f72586ac 100644 --- a/revdep/README.md +++ b/revdep/README.md @@ -1,238 +1,146 @@ # Revdeps -## Failed to check (222) +## Failed to check (132) |package |version |error |warning |note | |:--------------------|:-------|:-----|:-------|:----| |abstr |? | | | | -|accept |? | | | | -|ADAM |? | | | | -|afex |? | | | | -|AGread |? | | | | -|agridat |? | | | | -|AMARETTO |? | | | | -|amplican |? | | | | -|autoTS |? | | | | -|bangladesh |? | | | | -|bayesian |? | | | | -|bayesmodels |? | | | | -|bayesnec |? | | | | -|bayesplot |? | | | | -|BayesPostEst |? | | | | -|bayesrules |? | | | | +|NA |? | | | | |bdl |? | | | | -|BiodiversityR |? | | | | -|blocs |? | | | | -|breathtestcore |? | | | | -|brendaDb |? | | | | -|broom.helpers |? | | | | -|broom.mixed |? | | | | -|BUSpaRse |? | | | | |cancensus |? | | | | -|cattonum |? | | | | |CCAMLRGIS |? | | | | -|ceRNAnetsim |? | | | | |choroplethr |3.7.1 |1 | | | -|COMPASS |? | | | | +|cleanTS |0.1.1 |1 | | | |CoordinateCleaner |2.0-20 |1 | | | |CopernicusMarine |? | | | | -|CRE |? | | | | -|ctDNAtools |? | | | | +|NA |? | | | | +|ctsem |3.7.2 |1 | | | |cubble |? | | | | -|cxr |? | | | | |cyclestreets |? | | | | -|CytoML |? | | | | -|datawizard |? | | | | +|NA |? | | | | |dbmss |? | | | | -|DeLorean |? | | | | -|DepecheR |? | | | | -|DiffBind |? | | | | -|diffman |? | | | | -|diffrprojects |? | | | | |dycdtools |? | | | | |dynamicSDM |? | | | | -|dynfrail |? | | | | |edbuildmapr |? | | | | |EFDR |? | | | | -|embed |? | | | | +|eflm |0.3.0 |1 | | | |EnvExpInd |? | | | | -|epiphy |? | | | | -|escalation |? | | | | +|NA |? | | | | +|NA |? | | | | +|NA |? | | | | |eSDM |? | | | | -|ESTER |? | | | | -|evaluator |? | | | | -|expstudies |? | | | | -|fable.prophet |? | | | | -|finnts |? | | | | -|fipe |? | | | | -|foieGras |? | | | | +|fgdr |? | | | | +|NA |? | | | | +|NA |? | | | | +|FORTLS |? | | | | |FRK |? | | | | |fsr |? | | | | -|geocmeans |? | | | | |GeodesiCL |1.0.0 |1 | | | |ggchangepoint |? | | | | |ggOceanMaps |? | | | | |ggspatial |? | | | | -|ggstatsplot |? | | | | |glottospace |? | | | | |GREENeR |? | | | | -|gtfs2gps |? | | | | |gumboot |? | | | | |gwavr |? | | | | |GWPR.light |? | | | | |happign |? | | | | -|healthyR.ai |? | | | | -|healthyR.ts |? | | | | -|healthyverse |? | | | | |himach |? | | | | -|historicalborrowlong |? | | | | |HYPEtools |? | | | | |hypsoLoop |? | | | | |incidence2 |1.2.3 |1 | | | -|INSPECTumours |? | | | | +|NA |? | | | | |intSDM |1.0.5 |1 | |1 | -|IRexamples |? | | | | -|IsoCorrectoR |? | | | | +|NA |? | | | | |itsdm |? | | | | |jpgrid |? | | | | -|loon.ggplot |? | | | | -|loon.shiny |? | | | | +|jpmesh |? | | | | +|NA |? | | | | |MainExistingDatasets |? | | | | +|NA |? | | | | |manydata |0.8.2 |1 | | | |mapboxapi |? | | | | |mapme.biodiversity |? | | | | |mapping |? | | | | -|mapsapi |? | | | | |mapscanner |? | | | | -|marginaleffects |? | | | | |MazamaSpatialPlots |? | | | | -|merTools |? | | | | +|NA |? | | | | |meteoland |? | | | | -|modeltime |? | | | | -|modeltime.ensemble |? | | | | -|modeltime.gluonts |? | | | | -|modeltime.h2o |? | | | | -|modeltime.resample |? | | | | +|NA |? | | | | +|NA |? | | | | |motif |? | | | | -|mpower |? | | | | |MSclassifR |? | | | | -|multibiasmeta |? | | | | |naturaList |? | | | | |ncdfgeom |? | | | | |nhdplusTools |? | | | | |nhdR |? | | | | -|nlmixr2est |2.1.3 |1 | | | -|nlmixr2extra |? | | | | -|nlmixr2plot |2.0.7 |1 | | | -|nlmixr2rpt |0.1.0 |1 | | | +|NA |? | | | | |occCite |? | | | | -|occUncertain |0.1.0 |1 | | | |oceanexplorer |? | | | | |oceanis |? | | | | -|ohsome |? | | | | |OpenLand |? | | | | -|ordbetareg |? | | | | |palaeoSig |? | | | | -|panelr |? | | | | -|pct |? | | | | -|photosynthesis |? | | | | -|Platypus |? | | | | -|PoolTestR |? | | | | +|NA |? | | | | +|NA |? | | | | |PopGenHelpR |? | | | | |ppcSpatial |? | | | | |prioriactions |? | | | | -|promotionImpact |? | | | | |PSS.Health |0.6.1 |1 | | | |rangeModelMetadata |? | | | | |rbenvo |? | | | | -|RBesT |? | | | | |rcontroll |? | | | | -|RCzechia |? | | | | -|rdss |? | | | | +|NA |? | | | | |redist |? | | | | -|remap |? | | | | -|report |? | | | | -|rGhanaCensus |? | | | | -|rnaturalearth |? | | | | +|NA |? | | | | |roads |? | | | | -|Robyn |? | | | | |Rsagacmd |? | | | | |rsinaica |? | | | | -|rstac |? | | | | -|rxode2 |2.0.11 |1 | | | -|rxode2et |2.0.9 |1 | | | |saeSim |0.11.0 |1 | | | -|SAMtool |? | | | | |sandwichr |? | | | | +|NA |? | | | | |SDGdetector |2.7.1 |1 | | | |SDLfilter |? | | | | -|sdmApp |? | | | | -|sf |? | | | | -|sfdep |? | | | | |sfnetworks |? | | | | -|sftime |? | | | | |ShellChron |? | | | | +|NA |? | | | | |simodels |? | | | | |simplevis |? | | | | -|sjPlot |? | | | | -|sjstats |? | | | | -|sknifedatar |? | | | | |slendr |? | | | | |sociome |2.1.0 |1 | |1 | -|SOMEnv |1.1.2 |1 | | | -|SpaDES.tools |? | | | | |SPARTAAS |1.1.0 |1 | | | |spatgeom |? | | | | -|SpatialEpi |1.2.8 |1 | | | |SpatialKDE |? | | | | |spatialrisk |? | | | | -|spatialsample |? | | | | |spDates |? | | | | -|spectacles |0.5-3 |1 | | | |spnaf |? | | | | |spNetwork |? | | | | |spqdep |? | | | | -|spsur |1.0.2.5 |1 | |1 | -|spup |? | | | | -|stars |? | | | | -|starsTileServer |? | | | | -|stats19 |? | | | | -|statsExpressions |? | | | | +|NA |? | | | | |stplanr |? | | | | |stppSim |? | | | | +|NA |? | | | | |stxplore |? | | | | |SUNGEO |? | | | | |swfscAirDAS |0.2.3 |1 | | | |SWTools |? | | | | +|NA |? | | | | |telemac |? | | | | -|tidybayes |? | | | | -|tidyposterior |? | | | | -|tidySEM |? | | | | -|tilemaps |? | | | | -|timetk |? | | | | -|tipmap |? | | | | -|tmap |? | | | | +|NA |? | | | | |trackdf |? | | | | -|trending |? | | | | |TUFLOWR |? | | | | |VancouvR |? | | | | -|vivid |? | | | | |wallace |? | | | | |waterquality |? | | | | +|NA |? | | | | |waves |0.2.4 |1 | | | |wdpar |? | | | | -|wearables |0.8.1 |1 | | | -|webSDM |? | | | | -|xpose.nlmixr2 |0.4.0 |1 | | | +|NA |? | | | | |zipcodeR |0.3.5 |1 | | | -|zonebuilder |? | | | | -## New problems (4) +## New problems (2) -|package |version |error |warning |note | -|:-----------|:-------|:------|:-------|:----| -|[dm](problems.md#dm)|1.0.4 |__+1__ | | | +|package |version |error |warning |note | +|:----------|:-------|:------|:-------|:----| |[exuber](problems.md#exuber)|1.0.1 |__+1__ | |1 | -|[missCompare](problems.md#misscompare)|1.0.3 |__+1__ | | | -|[rapbase](problems.md#rapbase)|1.24.0 |__+1__ | | | +|[modelplotr](problems.md#modelplotr)|1.1.0 | |__+1__ | | diff --git a/revdep/cran.md b/revdep/cran.md index a2d488721e..83a9b8a975 100644 --- a/revdep/cran.md +++ b/revdep/cran.md @@ -1,199 +1,112 @@ ## revdepcheck results -We checked 3801 reverse dependencies (3777 from CRAN + 24 from Bioconductor), comparing R CMD check results across CRAN and dev versions of this package. +We checked 3423 reverse dependencies (3395 from CRAN + 28 from Bioconductor), comparing R CMD check results across CRAN and dev versions of this package. - * We saw 4 new problems - * We failed to check 198 packages + * We saw 2 new problems + * We failed to check 104 packages Issues with CRAN packages are summarised below. ### New problems (This reports the first line of each new failure) -* dm - checking tests ... ERROR - * exuber checking tests ... ERROR -* missCompare - checking tests ... ERROR - -* rapbase - checking tests ... ERROR +* modelplotr + checking re-building of vignette outputs ... WARNING ### Failed to check * abstr (NA) -* accept (NA) -* afex (NA) -* agridat (NA) -* autoTS (NA) -* bangladesh (NA) -* bayesian (NA) -* bayesnec (NA) -* bayesplot (NA) -* BayesPostEst (NA) -* bayesrules (NA) * bdl (NA) -* BiodiversityR (NA) -* blocs (NA) -* breathtestcore (NA) -* broom.helpers (NA) -* broom.mixed (NA) * cancensus (NA) * CCAMLRGIS (NA) * choroplethr (NA) +* cleanTS (NA) * CoordinateCleaner (NA) * CopernicusMarine (NA) -* CRE (NA) +* ctsem (NA) * cubble (NA) -* cxr (NA) * cyclestreets (NA) -* datawizard (NA) * dbmss (NA) * dycdtools (NA) * dynamicSDM (NA) * edbuildmapr (NA) * EFDR (NA) -* embed (NA) +* eflm (NA) * EnvExpInd (NA) -* escalation (NA) * eSDM (NA) -* ESTER (NA) -* fable.prophet (NA) -* finnts (NA) +* fgdr (NA) +* FORTLS (NA) * FRK (NA) * fsr (NA) -* geocmeans (NA) * GeodesiCL (NA) * ggchangepoint (NA) * ggOceanMaps (NA) * ggspatial (NA) -* ggstatsplot (NA) * glottospace (NA) * GREENeR (NA) -* gtfs2gps (NA) * gumboot (NA) * gwavr (NA) * GWPR.light (NA) * happign (NA) -* healthyR.ai (NA) -* healthyR.ts (NA) -* healthyverse (NA) * himach (NA) -* historicalborrowlong (NA) * HYPEtools (NA) * hypsoLoop (NA) * incidence2 (NA) -* INSPECTumours (NA) * intSDM (NA) -* IRexamples (NA) * itsdm (NA) * jpgrid (NA) -* loon.ggplot (NA) -* loon.shiny (NA) +* jpmesh (NA) * MainExistingDatasets (NA) * manydata (NA) * mapboxapi (NA) * mapme.biodiversity (NA) * mapping (NA) -* mapsapi (NA) * mapscanner (NA) -* marginaleffects (NA) * MazamaSpatialPlots (NA) -* merTools (NA) * meteoland (NA) -* modeltime (NA) -* modeltime.ensemble (NA) -* modeltime.gluonts (NA) -* modeltime.h2o (NA) -* modeltime.resample (NA) * motif (NA) -* mpower (NA) * MSclassifR (NA) -* multibiasmeta (NA) * naturaList (NA) * ncdfgeom (NA) * nhdplusTools (NA) * nhdR (NA) -* nlmixr2est (NA) -* nlmixr2extra (NA) -* nlmixr2plot (NA) -* nlmixr2rpt (NA) * occCite (NA) -* occUncertain (NA) * oceanexplorer (NA) * oceanis (NA) -* ohsome (NA) * OpenLand (NA) -* ordbetareg (NA) * palaeoSig (NA) -* panelr (NA) -* pct (NA) -* photosynthesis (NA) -* Platypus (NA) -* PoolTestR (NA) * PopGenHelpR (NA) * ppcSpatial (NA) * prioriactions (NA) -* promotionImpact (NA) * PSS.Health (NA) * rangeModelMetadata (NA) * rbenvo (NA) -* RBesT (NA) * rcontroll (NA) -* RCzechia (NA) -* rdss (NA) * redist (NA) -* remap (NA) -* report (NA) -* rGhanaCensus (NA) -* rnaturalearth (NA) * roads (NA) -* Robyn (NA) * Rsagacmd (NA) * rsinaica (NA) -* rstac (NA) -* rxode2 (NA) -* rxode2et (NA) * saeSim (NA) -* SAMtool (NA) * sandwichr (NA) * SDGdetector (NA) * SDLfilter (NA) -* sdmApp (NA) -* sf (NA) -* sfdep (NA) * sfnetworks (NA) -* sftime (NA) * ShellChron (NA) * simodels (NA) * simplevis (NA) -* sjPlot (NA) -* sjstats (NA) -* sknifedatar (NA) * slendr (NA) * sociome (NA) -* SOMEnv (NA) -* SpaDES.tools (NA) * SPARTAAS (NA) * spatgeom (NA) -* SpatialEpi (NA) * SpatialKDE (NA) * spatialrisk (NA) -* spatialsample (NA) * spDates (NA) -* spectacles (NA) * spnaf (NA) * spNetwork (NA) * spqdep (NA) -* spsur (NA) -* spup (NA) -* stars (NA) -* starsTileServer (NA) -* stats19 (NA) -* statsExpressions (NA) * stplanr (NA) * stppSim (NA) * stxplore (NA) @@ -201,24 +114,11 @@ Issues with CRAN packages are summarised below. * swfscAirDAS (NA) * SWTools (NA) * telemac (NA) -* tidybayes (NA) -* tidyposterior (NA) -* tidySEM (NA) -* tilemaps (NA) -* timetk (NA) -* tipmap (NA) -* tmap (NA) * trackdf (NA) -* trending (NA) * TUFLOWR (NA) * VancouvR (NA) -* vivid (NA) * wallace (NA) * waterquality (NA) * waves (NA) * wdpar (NA) -* wearables (NA) -* webSDM (NA) -* xpose.nlmixr2 (NA) * zipcodeR (NA) -* zonebuilder (NA) diff --git a/revdep/failures.md b/revdep/failures.md index db419f5d7c..0bdef5d9f4 100644 --- a/revdep/failures.md +++ b/revdep/failures.md @@ -18,7 +18,7 @@ Run `revdepcheck::cloud_details(, "abstr")` for more info ``` * using log directory ‘/tmp/workdir/abstr/new/abstr.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ @@ -30,8 +30,6 @@ Run `revdepcheck::cloud_details(, "abstr")` for more info * checking package dependencies ... ERROR Packages required but not available: 'lwgeom', 'sf' -Package suggested but not available for checking: ‘tmap’ - See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. * DONE @@ -46,7 +44,7 @@ Status: 1 ERROR ``` * using log directory ‘/tmp/workdir/abstr/old/abstr.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ @@ -58,8 +56,6 @@ Status: 1 ERROR * checking package dependencies ... ERROR Packages required but not available: 'lwgeom', 'sf' -Package suggested but not available for checking: ‘tmap’ - See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. * DONE @@ -70,17 +66,16 @@ Status: 1 ERROR ``` -# accept +# NA
-* Version: 1.0.0 +* Version: NA * GitHub: NA -* Source code: https://github.com/cran/accept -* Date/Publication: 2023-02-06 20:52:31 UTC -* Number of recursive dependencies: 97 +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "accept")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
@@ -89,27 +84,7 @@ Run `revdepcheck::cloud_details(, "accept")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/accept/new/accept.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘accept/DESCRIPTION’ ... OK -* this is package ‘accept’ version ‘1.0.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... OK -... -* checking if there is a namespace ... OK -* checking for executable files ... OK -* checking for hidden files and directories ... OK -* checking for portable file names ... OK -* checking for sufficient/correct file permissions ... OK -* checking whether package ‘accept’ can be installed ... ERROR -Installation failed. -See ‘/tmp/workdir/accept/new/accept.Rcheck/00install.out’ for details. -* DONE -Status: 1 ERROR + @@ -119,43 +94,24 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/accept/old/accept.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘accept/DESCRIPTION’ ... OK -* this is package ‘accept’ version ‘1.0.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... OK -... -* checking if there is a namespace ... OK -* checking for executable files ... OK -* checking for hidden files and directories ... OK -* checking for portable file names ... OK -* checking for sufficient/correct file permissions ... OK -* checking whether package ‘accept’ can be installed ... ERROR -Installation failed. -See ‘/tmp/workdir/accept/old/accept.Rcheck/00install.out’ for details. -* DONE -Status: 1 ERROR + ``` -# ADAM +# bdl
-* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/ADAM -* Number of recursive dependencies: 94 +* Version: 1.0.5 +* GitHub: https://github.com/statisticspoland/R_Package_to_API_BDL +* Source code: https://github.com/cran/bdl +* Date/Publication: 2023-02-24 15:00:02 UTC +* Number of recursive dependencies: 145 -Run `revdepcheck::cloud_details(, "ADAM")` for more info +Run `revdepcheck::cloud_details(, "bdl")` for more info
@@ -164,7 +120,23 @@ Run `revdepcheck::cloud_details(, "ADAM")` for more info ### Devel ``` +* using log directory ‘/tmp/workdir/bdl/new/bdl.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘bdl/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘bdl’ version ‘1.0.5’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR @@ -174,24 +146,40 @@ Run `revdepcheck::cloud_details(, "ADAM")` for more info ### CRAN ``` +* using log directory ‘/tmp/workdir/bdl/old/bdl.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘bdl/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘bdl’ version ‘1.0.5’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR ``` -# afex +# cancensus
-* Version: 1.2-1 -* GitHub: https://github.com/singmann/afex -* Source code: https://github.com/cran/afex -* Date/Publication: 2023-01-09 08:40:11 UTC -* Number of recursive dependencies: 224 +* Version: 0.5.5 +* GitHub: https://github.com/mountainMath/cancensus +* Source code: https://github.com/cran/cancensus +* Date/Publication: 2023-01-23 08:40:06 UTC +* Number of recursive dependencies: 117 -Run `revdepcheck::cloud_details(, "afex")` for more info +Run `revdepcheck::cloud_details(, "cancensus")` for more info
@@ -200,27 +188,27 @@ Run `revdepcheck::cloud_details(, "afex")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/afex/new/afex.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/cancensus/new/cancensus.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘afex/DESCRIPTION’ ... OK +* checking for file ‘cancensus/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘afex’ version ‘1.2-1’ +* this is package ‘cancensus’ version ‘0.5.5’ * package encoding: UTF-8 * checking package namespace information ... OK ... - ‘afex_analysing_accuracy_data.Rmd’ using ‘UTF-8’... OK - ‘afex_anova_example.Rmd’ using ‘UTF-8’... OK - ‘afex_mixed_example.Rmd’ using ‘UTF-8’... OK - ‘afex_plot_introduction.Rmd’ using ‘UTF-8’... OK - ‘afex_plot_supported_models.Rmd’ using ‘UTF-8’... OK - ‘assumptions_of_ANOVAs.Rmd’ using ‘UTF-8’... OK - ‘introduction-mixed-models.pdf.asis’ using ‘UTF-8’... OK + ‘Making_maps_with_cancensus.Rmd’ using ‘UTF-8’... OK + ‘Taxfiler_Data.Rmd’ using ‘UTF-8’... OK + ‘cancensus.Rmd’ using ‘UTF-8’... OK + ‘data_discovery.Rmd’ using ‘UTF-8’... OK + ‘intersecting_geometries.Rmd’ using ‘UTF-8’... OK + ‘statcan_attribute_files.Rmd’ using ‘UTF-8’... OK + ‘statcan_wds.Rmd’ using ‘UTF-8’... OK * checking re-building of vignette outputs ... OK * DONE -Status: 1 NOTE +Status: 3 NOTEs @@ -230,79 +218,44 @@ Status: 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/afex/old/afex.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/cancensus/old/cancensus.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘afex/DESCRIPTION’ ... OK +* checking for file ‘cancensus/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘afex’ version ‘1.2-1’ +* this is package ‘cancensus’ version ‘0.5.5’ * package encoding: UTF-8 * checking package namespace information ... OK ... - ‘afex_analysing_accuracy_data.Rmd’ using ‘UTF-8’... OK - ‘afex_anova_example.Rmd’ using ‘UTF-8’... OK - ‘afex_mixed_example.Rmd’ using ‘UTF-8’... OK - ‘afex_plot_introduction.Rmd’ using ‘UTF-8’... OK - ‘afex_plot_supported_models.Rmd’ using ‘UTF-8’... OK - ‘assumptions_of_ANOVAs.Rmd’ using ‘UTF-8’... OK - ‘introduction-mixed-models.pdf.asis’ using ‘UTF-8’... OK + ‘Making_maps_with_cancensus.Rmd’ using ‘UTF-8’... OK + ‘Taxfiler_Data.Rmd’ using ‘UTF-8’... OK + ‘cancensus.Rmd’ using ‘UTF-8’... OK + ‘data_discovery.Rmd’ using ‘UTF-8’... OK + ‘intersecting_geometries.Rmd’ using ‘UTF-8’... OK + ‘statcan_attribute_files.Rmd’ using ‘UTF-8’... OK + ‘statcan_wds.Rmd’ using ‘UTF-8’... OK * checking re-building of vignette outputs ... OK * DONE -Status: 1 NOTE - - - - - -``` -# AGread - -
- -* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/AGread -* Number of recursive dependencies: 157 - -Run `revdepcheck::cloud_details(, "AGread")` for more info - -
- -## Error before installation - -### Devel - -``` - - - - - - -``` -### CRAN - -``` - +Status: 3 NOTEs ``` -# agridat +# CCAMLRGIS
-* Version: 1.21 -* GitHub: https://github.com/kwstat/agridat -* Source code: https://github.com/cran/agridat -* Date/Publication: 2022-06-15 08:30:07 UTC -* Number of recursive dependencies: 257 +* Version: 4.0.4 +* GitHub: https://github.com/ccamlr/CCAMLRGIS +* Source code: https://github.com/cran/CCAMLRGIS +* Date/Publication: 2023-02-07 04:12:37 UTC +* Number of recursive dependencies: 72 -Run `revdepcheck::cloud_details(, "agridat")` for more info +Run `revdepcheck::cloud_details(, "CCAMLRGIS")` for more info
@@ -311,27 +264,23 @@ Run `revdepcheck::cloud_details(, "agridat")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/agridat/new/agridat.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/CCAMLRGIS/new/CCAMLRGIS.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘agridat/DESCRIPTION’ ... OK +* checking for file ‘CCAMLRGIS/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘agridat’ version ‘1.21’ +* this is package ‘CCAMLRGIS’ version ‘4.0.4’ * package encoding: UTF-8 * checking package namespace information ... OK -... -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘agridat_data.Rmd’ using ‘UTF-8’... OK - ‘agridat_examples.Rmd’ using ‘UTF-8’... OK - ‘agridat_intro.Rmd’ using ‘UTF-8’... OK - ‘agridat_uniformity.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: OK +Status: 1 ERROR @@ -341,182 +290,224 @@ Status: OK ### CRAN ``` -* using log directory ‘/tmp/workdir/agridat/old/agridat.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/CCAMLRGIS/old/CCAMLRGIS.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘agridat/DESCRIPTION’ ... OK +* checking for file ‘CCAMLRGIS/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘agridat’ version ‘1.21’ +* this is package ‘CCAMLRGIS’ version ‘4.0.4’ * package encoding: UTF-8 * checking package namespace information ... OK -... -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘agridat_data.Rmd’ using ‘UTF-8’... OK - ‘agridat_examples.Rmd’ using ‘UTF-8’... OK - ‘agridat_intro.Rmd’ using ‘UTF-8’... OK - ‘agridat_uniformity.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: OK +Status: 1 ERROR ``` -# AMARETTO +# choroplethr
-* Version: NA +* Version: 3.7.1 * GitHub: NA -* Source code: https://github.com/cran/AMARETTO -* Number of recursive dependencies: 155 +* Source code: https://github.com/cran/choroplethr +* Date/Publication: 2022-10-05 07:10:06 UTC +* Number of recursive dependencies: 127 -Run `revdepcheck::cloud_details(, "AMARETTO")` for more info +Run `revdepcheck::cloud_details(, "choroplethr")` for more info
-## Error before installation - -### Devel - -``` +## In both +* checking whether package ‘choroplethr’ can be installed ... ERROR + ``` + Installation failed. + See ‘/tmp/workdir/choroplethr/new/choroplethr.Rcheck/00install.out’ for details. + ``` +## Installation +### Devel +``` +* installing *source* package ‘choroplethr’ ... +** package ‘choroplethr’ successfully unpacked and MD5 sums checked +** using staged installation +** R +** data +** byte-compile and prepare package for lazy loading +Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : + there is no package called ‘sf’ +Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: lazy loading failed for package ‘choroplethr’ +* removing ‘/tmp/workdir/choroplethr/new/choroplethr.Rcheck/choroplethr’ ``` ### CRAN ``` - - - - +* installing *source* package ‘choroplethr’ ... +** package ‘choroplethr’ successfully unpacked and MD5 sums checked +** using staged installation +** R +** data +** byte-compile and prepare package for lazy loading +Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : + there is no package called ‘sf’ +Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: lazy loading failed for package ‘choroplethr’ +* removing ‘/tmp/workdir/choroplethr/old/choroplethr.Rcheck/choroplethr’ ``` -# amplican +# cleanTS
-* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/amplican -* Number of recursive dependencies: 116 +* Version: 0.1.1 +* GitHub: https://github.com/Mayur1009/cleanTS +* Source code: https://github.com/cran/cleanTS +* Date/Publication: 2022-06-15 09:20:19 UTC +* Number of recursive dependencies: 163 -Run `revdepcheck::cloud_details(, "amplican")` for more info +Run `revdepcheck::cloud_details(, "cleanTS")` for more info
-## Error before installation - -### Devel - -``` +## In both +* checking whether package ‘cleanTS’ can be installed ... ERROR + ``` + Installation failed. + See ‘/tmp/workdir/cleanTS/new/cleanTS.Rcheck/00install.out’ for details. + ``` +## Installation +### Devel +``` +* installing *source* package ‘cleanTS’ ... +** package ‘cleanTS’ 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]]) : + there is no package called ‘sf’ +Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: lazy loading failed for package ‘cleanTS’ +* removing ‘/tmp/workdir/cleanTS/new/cleanTS.Rcheck/cleanTS’ ``` ### CRAN ``` +* installing *source* package ‘cleanTS’ ... +** package ‘cleanTS’ 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]]) : + there is no package called ‘sf’ +Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: lazy loading failed for package ‘cleanTS’ +* removing ‘/tmp/workdir/cleanTS/old/cleanTS.Rcheck/cleanTS’ +``` +# CoordinateCleaner +
+* Version: 2.0-20 +* GitHub: https://github.com/ropensci/CoordinateCleaner +* Source code: https://github.com/cran/CoordinateCleaner +* Date/Publication: 2021-10-21 17:10:05 UTC +* Number of recursive dependencies: 115 +Run `revdepcheck::cloud_details(, "CoordinateCleaner")` for more info -``` -# autoTS - -
- -* Version: 0.9.11 -* GitHub: https://github.com/vivienroussez/autots -* Source code: https://github.com/cran/autoTS -* Date/Publication: 2020-06-05 12:20:06 UTC -* Number of recursive dependencies: 116 - -Run `revdepcheck::cloud_details(, "autoTS")` for more info - -
- -## Error before installation - -### Devel +
-``` -* using log directory ‘/tmp/workdir/autoTS/new/autoTS.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘autoTS/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘autoTS’ version ‘0.9.11’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘prophet’ +## In both -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR +* checking whether package ‘CoordinateCleaner’ can be installed ... ERROR + ``` + Installation failed. + See ‘/tmp/workdir/CoordinateCleaner/new/CoordinateCleaner.Rcheck/00install.out’ for details. + ``` +## Installation +### Devel +``` +* installing *source* package ‘CoordinateCleaner’ ... +** package ‘CoordinateCleaner’ 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(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : + there is no package called ‘sf’ +Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: lazy loading failed for package ‘CoordinateCleaner’ +* removing ‘/tmp/workdir/CoordinateCleaner/new/CoordinateCleaner.Rcheck/CoordinateCleaner’ ``` ### CRAN ``` -* using log directory ‘/tmp/workdir/autoTS/old/autoTS.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘autoTS/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘autoTS’ version ‘0.9.11’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘prophet’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - +* installing *source* package ‘CoordinateCleaner’ ... +** package ‘CoordinateCleaner’ 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(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : + there is no package called ‘sf’ +Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: lazy loading failed for package ‘CoordinateCleaner’ +* removing ‘/tmp/workdir/CoordinateCleaner/old/CoordinateCleaner.Rcheck/CoordinateCleaner’ ``` -# bangladesh +# CopernicusMarine
-* Version: 1.0.0 -* GitHub: NA -* Source code: https://github.com/cran/bangladesh -* Date/Publication: 2022-10-28 16:30:05 UTC -* Number of recursive dependencies: 94 +* Version: 0.0.6 +* GitHub: https://github.com/pepijn-devries/CopernicusMarine +* Source code: https://github.com/cran/CopernicusMarine +* Date/Publication: 2023-01-30 13:50:02 UTC +* Number of recursive dependencies: 113 -Run `revdepcheck::cloud_details(, "bangladesh")` for more info +Run `revdepcheck::cloud_details(, "CopernicusMarine")` for more info
@@ -525,17 +516,18 @@ Run `revdepcheck::cloud_details(, "bangladesh")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/bangladesh/new/bangladesh.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/CopernicusMarine/new/CopernicusMarine.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘bangladesh/DESCRIPTION’ ... OK -* this is package ‘bangladesh’ version ‘1.0.0’ +* checking for file ‘CopernicusMarine/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘CopernicusMarine’ version ‘0.0.6’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'tmap', 'sf' +Package required but not available: ‘sf’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -550,17 +542,18 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/bangladesh/old/bangladesh.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/CopernicusMarine/old/CopernicusMarine.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘bangladesh/DESCRIPTION’ ... OK -* this is package ‘bangladesh’ version ‘1.0.0’ +* checking for file ‘CopernicusMarine/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘CopernicusMarine’ version ‘0.0.6’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'tmap', 'sf' +Package required but not available: ‘sf’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -572,17 +565,16 @@ Status: 1 ERROR ``` -# bayesian +# NA
-* Version: 0.0.9 -* GitHub: https://github.com/hsbadr/bayesian -* Source code: https://github.com/cran/bayesian -* Date/Publication: 2022-06-16 23:00:02 UTC -* Number of recursive dependencies: 187 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "bayesian")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
@@ -591,25 +583,7 @@ Run `revdepcheck::cloud_details(, "bayesian")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/bayesian/new/bayesian.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘bayesian/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘bayesian’ version ‘0.0.9’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘brms’ - -Package suggested but not available for checking: ‘rstan’ -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR @@ -619,77 +593,102 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/bayesian/old/bayesian.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘bayesian/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘bayesian’ version ‘0.0.9’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘brms’ - -Package suggested but not available for checking: ‘rstan’ -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR ``` -# bayesmodels +# ctsem
-* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/bayesmodels -* Number of recursive dependencies: 259 +* Version: 3.7.2 +* GitHub: https://github.com/cdriveraus/ctsem +* Source code: https://github.com/cran/ctsem +* Date/Publication: 2022-11-06 05:10:11 UTC +* Number of recursive dependencies: 136 -Run `revdepcheck::cloud_details(, "bayesmodels")` for more info +Run `revdepcheck::cloud_details(, "ctsem")` for more info
-## Error before installation - -### Devel +## 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 +"/opt/R/4.1.1/lib/R/bin/Rscript" -e "source(file.path('..', 'tools', 'make_cc.R')); make_cc(commandArgs(TRUE))" stan_files/ctsm.stan +DIAGNOSTIC(S) FROM PARSER: +Info: integer division implicitly rounds to integer. Found int division: d * d - d / 2 + Positive values rounded down, negative values rounded up or down in platform-dependent way. +Wrote C++ file "stan_files/ctsm.cc" +... + 2340 | T__ log_prob(std::vector& params_r__, + | ^~~~~~~~ +stan_files/ctsm.hpp: In member function ‘T__ model_ctsm_namespace::model_ctsm::log_prob(std::vector&, std::vector&, std::ostream*) const [with bool propto__ = false; bool jacobian__ = false; T__ = double]’: +stan_files/ctsm.hpp:2340:9: note: variable tracking size limit exceeded with ‘-fvar-tracking-assignments’, retrying without +g++: fatal error: Killed signal terminated program cc1plus +compilation terminated. +make: *** [/opt/R/4.1.1/lib/R/etc/Makeconf:175: stan_files/ctsm.o] Error 1 +rm stan_files/ctsm.cc +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 +"/opt/R/4.1.1/lib/R/bin/Rscript" -e "source(file.path('..', 'tools', 'make_cc.R')); make_cc(commandArgs(TRUE))" stan_files/ctsm.stan +DIAGNOSTIC(S) FROM PARSER: +Info: integer division implicitly rounds to integer. Found int division: d * d - d / 2 + Positive values rounded down, negative values rounded up or down in platform-dependent way. - - - +Wrote C++ file "stan_files/ctsm.cc" +... + 2340 | T__ log_prob(std::vector& params_r__, + | ^~~~~~~~ +stan_files/ctsm.hpp: In member function ‘T__ model_ctsm_namespace::model_ctsm::log_prob(std::vector&, std::vector&, std::ostream*) const [with bool propto__ = false; bool jacobian__ = false; T__ = double]’: +stan_files/ctsm.hpp:2340:9: note: variable tracking size limit exceeded with ‘-fvar-tracking-assignments’, retrying without +g++: fatal error: Killed signal terminated program cc1plus +compilation terminated. +make: *** [/opt/R/4.1.1/lib/R/etc/Makeconf:175: stan_files/ctsm.o] Error 1 +rm stan_files/ctsm.cc +ERROR: compilation failed for package ‘ctsem’ +* removing ‘/tmp/workdir/ctsem/old/ctsem.Rcheck/ctsem’ ``` -# bayesnec +# cubble
-* Version: 2.1.0.2 -* GitHub: https://github.com/open-aims/bayesnec -* Source code: https://github.com/cran/bayesnec -* Date/Publication: 2023-02-21 00:30:03 UTC -* Number of recursive dependencies: 133 +* Version: 0.2.0 +* GitHub: https://github.com/huizezhang-sherry/cubble +* Source code: https://github.com/cran/cubble +* Date/Publication: 2022-11-17 12:30:02 UTC +* Number of recursive dependencies: 132 -Run `revdepcheck::cloud_details(, "bayesnec")` for more info +Run `revdepcheck::cloud_details(, "cubble")` for more info
@@ -698,19 +697,19 @@ Run `revdepcheck::cloud_details(, "bayesnec")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/bayesnec/new/bayesnec.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/cubble/new/cubble.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘bayesnec/DESCRIPTION’ ... OK -* this is package ‘bayesnec’ version ‘2.1.0.2’ +* checking for file ‘cubble/DESCRIPTION’ ... OK +* this is package ‘cubble’ version ‘0.2.0’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘brms’ +Package required but not available: ‘sf’ -Package suggested but not available for checking: ‘rstan’ +Package suggested but not available for checking: ‘ozmaps’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -725,19 +724,19 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/bayesnec/old/bayesnec.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/cubble/old/cubble.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘bayesnec/DESCRIPTION’ ... OK -* this is package ‘bayesnec’ version ‘2.1.0.2’ +* checking for file ‘cubble/DESCRIPTION’ ... OK +* this is package ‘cubble’ version ‘0.2.0’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘brms’ +Package required but not available: ‘sf’ -Package suggested but not available for checking: ‘rstan’ +Package suggested but not available for checking: ‘ozmaps’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -749,17 +748,17 @@ Status: 1 ERROR ``` -# bayesplot +# cyclestreets
-* Version: 1.10.0 -* GitHub: https://github.com/stan-dev/bayesplot -* Source code: https://github.com/cran/bayesplot -* Date/Publication: 2022-11-16 22:00:08 UTC -* Number of recursive dependencies: 127 +* Version: 0.6.0 +* GitHub: https://github.com/cyclestreets/cyclestreets-r +* Source code: https://github.com/cran/cyclestreets +* Date/Publication: 2023-02-17 09:30:06 UTC +* Number of recursive dependencies: 67 -Run `revdepcheck::cloud_details(, "bayesplot")` for more info +Run `revdepcheck::cloud_details(, "cyclestreets")` for more info
@@ -768,27 +767,23 @@ Run `revdepcheck::cloud_details(, "bayesplot")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/bayesplot/new/bayesplot.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/cyclestreets/new/cyclestreets.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘bayesplot/DESCRIPTION’ ... OK +* checking for file ‘cyclestreets/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘bayesplot’ version ‘1.10.0’ +* this is package ‘cyclestreets’ version ‘0.6.0’ * package encoding: UTF-8 * checking package namespace information ... OK -... - Running ‘testthat.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘graphical-ppcs.Rmd’ using ‘UTF-8’... OK - ‘plotting-mcmc-draws.Rmd’ using ‘UTF-8’... OK - ‘visual-mcmc-diagnostics.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 NOTEs +Status: 1 ERROR @@ -798,44 +793,39 @@ Status: 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/bayesplot/old/bayesplot.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/cyclestreets/old/cyclestreets.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘bayesplot/DESCRIPTION’ ... OK +* checking for file ‘cyclestreets/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘bayesplot’ version ‘1.10.0’ +* this is package ‘cyclestreets’ version ‘0.6.0’ * package encoding: UTF-8 * checking package namespace information ... OK -... - Running ‘testthat.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘graphical-ppcs.Rmd’ using ‘UTF-8’... OK - ‘plotting-mcmc-draws.Rmd’ using ‘UTF-8’... OK - ‘visual-mcmc-diagnostics.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 NOTEs +Status: 1 ERROR ``` -# BayesPostEst +# NA
-* Version: 0.3.2 -* GitHub: https://github.com/ShanaScogin/BayesPostEst -* Source code: https://github.com/cran/BayesPostEst -* Date/Publication: 2021-11-11 08:10:05 UTC -* Number of recursive dependencies: 159 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "BayesPostEst")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
@@ -844,25 +834,7 @@ Run `revdepcheck::cloud_details(, "BayesPostEst")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/BayesPostEst/new/BayesPostEst.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘BayesPostEst/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘BayesPostEst’ version ‘0.3.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'rstanarm', 'brms' -Package suggested but not available for checking: ‘rstan’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR @@ -872,42 +844,24 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/BayesPostEst/old/BayesPostEst.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘BayesPostEst/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘BayesPostEst’ version ‘0.3.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'rstanarm', 'brms' -Package suggested but not available for checking: ‘rstan’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR ``` -# bayesrules +# dbmss
-* Version: 0.0.2 -* GitHub: https://github.com/bayes-rules/bayesrules -* Source code: https://github.com/cran/bayesrules -* Date/Publication: 2021-09-25 04:30:07 UTC -* Number of recursive dependencies: 135 +* Version: 2.8-0 +* GitHub: https://github.com/EricMarcon/dbmss +* Source code: https://github.com/cran/dbmss +* Date/Publication: 2023-01-06 15:10:05 UTC +* Number of recursive dependencies: 120 -Run `revdepcheck::cloud_details(, "bayesrules")` for more info +Run `revdepcheck::cloud_details(, "dbmss")` for more info
@@ -916,25 +870,29 @@ Run `revdepcheck::cloud_details(, "bayesrules")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/bayesrules/new/bayesrules.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/dbmss/new/dbmss.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘bayesrules/DESCRIPTION’ ... OK +* checking for file ‘dbmss/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘bayesrules’ version ‘0.0.2’ +* this is package ‘dbmss’ version ‘2.8-0’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘rstanarm’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - +... +* 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 ... NONE + ‘dbmss.Rmd’ using ‘UTF-8’... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 ERROR + + @@ -942,21 +900,25 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/bayesrules/old/bayesrules.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/dbmss/old/dbmss.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘bayesrules/DESCRIPTION’ ... OK +* checking for file ‘dbmss/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘bayesrules’ version ‘0.0.2’ +* this is package ‘dbmss’ version ‘2.8-0’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘rstanarm’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. +... +* 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 ... NONE + ‘dbmss.Rmd’ using ‘UTF-8’... OK +* checking re-building of vignette outputs ... OK * DONE Status: 1 ERROR @@ -965,17 +927,17 @@ Status: 1 ERROR ``` -# bdl +# dycdtools
-* Version: 1.0.5 -* GitHub: https://github.com/statisticspoland/R_Package_to_API_BDL -* Source code: https://github.com/cran/bdl -* Date/Publication: 2023-02-24 15:00:02 UTC -* Number of recursive dependencies: 145 +* Version: 0.4.3 +* GitHub: https://github.com/SongyanYu/dycdtools +* Source code: https://github.com/cran/dycdtools +* Date/Publication: 2022-11-22 00:40:02 UTC +* Number of recursive dependencies: 89 -Run `revdepcheck::cloud_details(, "bdl")` for more info +Run `revdepcheck::cloud_details(, "dycdtools")` for more info
@@ -984,21 +946,25 @@ Run `revdepcheck::cloud_details(, "bdl")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/bdl/new/bdl.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/dycdtools/new/dycdtools.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘bdl/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘bdl’ version ‘1.0.5’ +* checking for file ‘dycdtools/DESCRIPTION’ ... OK +* this is package ‘dycdtools’ version ‘0.4.3’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'sf', 'tmaptools', 'tmap' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. +* checking package dependencies ... OK +... +* checking if there is a namespace ... OK +* checking for executable files ... OK +* checking for hidden files and directories ... OK +* checking for portable file names ... OK +* checking for sufficient/correct file permissions ... OK +* checking whether package ‘dycdtools’ can be installed ... ERROR +Installation failed. +See ‘/tmp/workdir/dycdtools/new/dycdtools.Rcheck/00install.out’ for details. * DONE Status: 1 ERROR @@ -1010,21 +976,25 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/bdl/old/bdl.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/dycdtools/old/dycdtools.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘bdl/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘bdl’ version ‘1.0.5’ +* checking for file ‘dycdtools/DESCRIPTION’ ... OK +* this is package ‘dycdtools’ version ‘0.4.3’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'sf', 'tmaptools', 'tmap' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. +* checking package dependencies ... OK +... +* checking if there is a namespace ... OK +* checking for executable files ... OK +* checking for hidden files and directories ... OK +* checking for portable file names ... OK +* checking for sufficient/correct file permissions ... OK +* checking whether package ‘dycdtools’ can be installed ... ERROR +Installation failed. +See ‘/tmp/workdir/dycdtools/old/dycdtools.Rcheck/00install.out’ for details. * DONE Status: 1 ERROR @@ -1033,17 +1003,17 @@ Status: 1 ERROR ``` -# BiodiversityR +# dynamicSDM
-* Version: 2.15-1 -* GitHub: NA -* Source code: https://github.com/cran/BiodiversityR -* Date/Publication: 2023-01-06 10:00:30 UTC -* Number of recursive dependencies: 300 +* Version: 1.1 +* GitHub: https://github.com/r-a-dobson/dynamicSDM +* Source code: https://github.com/cran/dynamicSDM +* Date/Publication: 2023-02-27 13:22:30 UTC +* Number of recursive dependencies: 156 -Run `revdepcheck::cloud_details(, "BiodiversityR")` for more info +Run `revdepcheck::cloud_details(, "dynamicSDM")` for more info
@@ -1052,27 +1022,22 @@ Run `revdepcheck::cloud_details(, "BiodiversityR")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/BiodiversityR/new/BiodiversityR.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/dynamicSDM/new/dynamicSDM.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘BiodiversityR/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘BiodiversityR’ version ‘2.15-1’ +* checking for file ‘dynamicSDM/DESCRIPTION’ ... OK +* this is package ‘dynamicSDM’ version ‘1.1’ +* package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... NOTE -... -* checking for code/documentation mismatches ... OK -* checking Rd \usage sections ... OK -* checking Rd contents ... OK -* checking for unstated dependencies in examples ... OK -* checking contents of ‘data’ directory ... OK -* checking data for non-ASCII characters ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking examples ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 NOTEs +Status: 1 ERROR @@ -1082,44 +1047,39 @@ Status: 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/BiodiversityR/old/BiodiversityR.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/dynamicSDM/old/dynamicSDM.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘BiodiversityR/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘BiodiversityR’ version ‘2.15-1’ +* checking for file ‘dynamicSDM/DESCRIPTION’ ... OK +* this is package ‘dynamicSDM’ version ‘1.1’ +* package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... NOTE -... -* checking for code/documentation mismatches ... OK -* checking Rd \usage sections ... OK -* checking Rd contents ... OK -* checking for unstated dependencies in examples ... OK -* checking contents of ‘data’ directory ... OK -* checking data for non-ASCII characters ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking examples ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 NOTEs +Status: 1 ERROR ``` -# blocs +# edbuildmapr
-* Version: 0.1.0 -* GitHub: NA -* Source code: https://github.com/cran/blocs -* Date/Publication: 2022-11-23 11:20:06 UTC -* Number of recursive dependencies: 161 +* Version: 0.3.1 +* GitHub: https://github.com/EdBuild/edbuildmapr +* Source code: https://github.com/cran/edbuildmapr +* Date/Publication: 2021-06-15 06:00:02 UTC +* Number of recursive dependencies: 98 -Run `revdepcheck::cloud_details(, "blocs")` for more info +Run `revdepcheck::cloud_details(, "edbuildmapr")` for more info
@@ -1128,27 +1088,23 @@ Run `revdepcheck::cloud_details(, "blocs")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/blocs/new/blocs.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/edbuildmapr/new/edbuildmapr.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘blocs/DESCRIPTION’ ... OK +* checking for file ‘edbuildmapr/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘blocs’ version ‘0.1.0’ +* this is package ‘edbuildmapr’ version ‘0.3.1’ * package encoding: UTF-8 * checking package namespace information ... OK -... -* checking data for non-ASCII characters ... OK -* checking LazyData ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking examples ... NONE -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘dplyr_attrib.R’ - Running ‘testthat.R’ +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: OK +Status: 1 ERROR @@ -1158,44 +1114,40 @@ Status: OK ### CRAN ``` -* using log directory ‘/tmp/workdir/blocs/old/blocs.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/edbuildmapr/old/edbuildmapr.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘blocs/DESCRIPTION’ ... OK +* checking for file ‘edbuildmapr/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘blocs’ version ‘0.1.0’ +* this is package ‘edbuildmapr’ version ‘0.3.1’ * package encoding: UTF-8 * checking package namespace information ... OK -... -* checking data for non-ASCII characters ... OK -* checking LazyData ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking examples ... NONE -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘dplyr_attrib.R’ - Running ‘testthat.R’ +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: OK +Status: 1 ERROR ``` -# breathtestcore +# EFDR
-* Version: 0.8.6 -* GitHub: https://github.com/dmenne/breathtestcore -* Source code: https://github.com/cran/breathtestcore -* Date/Publication: 2023-02-13 14:00:07 UTC -* Number of recursive dependencies: 119 +* Version: 1.2 +* GitHub: https://github.com/andrewzm/EFDR +* Source code: https://github.com/cran/EFDR +* Date/Publication: 2021-04-18 05:50:03 UTC +* Number of recursive dependencies: 105 -Run `revdepcheck::cloud_details(, "breathtestcore")` for more info +Run `revdepcheck::cloud_details(, "EFDR")` for more info
@@ -1204,27 +1156,27 @@ Run `revdepcheck::cloud_details(, "breathtestcore")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/breathtestcore/new/breathtestcore.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/EFDR/new/EFDR.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘breathtestcore/DESCRIPTION’ ... OK -* this is package ‘breathtestcore’ version ‘0.8.6’ +* checking for file ‘EFDR/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘EFDR’ version ‘1.2’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... NOTE ... -* checking tests ... OK - Running ‘test-all.R’ +* 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 ... NONE - ‘data_formats.Rmd’ using ‘UTF-8’... OK - ‘methods_and_concepts.Rmd’ using ‘UTF-8’... OK + ‘EFDR_documents.Rmd’ using ‘UTF-8’... OK * checking re-building of vignette outputs ... OK * DONE -Status: 2 NOTEs +Status: OK @@ -1234,79 +1186,102 @@ Status: 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/breathtestcore/old/breathtestcore.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/EFDR/old/EFDR.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘breathtestcore/DESCRIPTION’ ... OK -* this is package ‘breathtestcore’ version ‘0.8.6’ +* checking for file ‘EFDR/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘EFDR’ version ‘1.2’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... NOTE ... -* checking tests ... OK - Running ‘test-all.R’ +* 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 ... NONE - ‘data_formats.Rmd’ using ‘UTF-8’... OK - ‘methods_and_concepts.Rmd’ using ‘UTF-8’... OK + ‘EFDR_documents.Rmd’ using ‘UTF-8’... OK * checking re-building of vignette outputs ... OK * DONE -Status: 2 NOTEs +Status: OK ``` -# brendaDb +# eflm
-* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/brendaDb -* Number of recursive dependencies: 120 +* Version: 0.3.0 +* GitHub: https://github.com/pachadotdev/eflm +* Source code: https://github.com/cran/eflm +* Date/Publication: 2021-05-31 21:20:02 UTC +* Number of recursive dependencies: 55 -Run `revdepcheck::cloud_details(, "brendaDb")` for more info +Run `revdepcheck::cloud_details(, "eflm")` for more info
-## Error before installation - -### Devel - -``` +## In both +* checking whether package ‘eflm’ can be installed ... ERROR + ``` + Installation failed. + See ‘/tmp/workdir/eflm/new/eflm.Rcheck/00install.out’ for details. + ``` +## Installation +### Devel +``` +* installing *source* package ‘eflm’ ... +** package ‘eflm’ successfully unpacked and MD5 sums checked +** using staged installation +** R +** inst +** byte-compile and prepare package for lazy loading +Error : The `x` argument of `as_tibble()` can't be missing as of tibble 3.0.0. +Error: unable to load R code in package ‘eflm’ +Execution halted +ERROR: lazy loading failed for package ‘eflm’ +* removing ‘/tmp/workdir/eflm/new/eflm.Rcheck/eflm’ ``` ### CRAN ``` - - - - +* installing *source* package ‘eflm’ ... +** package ‘eflm’ successfully unpacked and MD5 sums checked +** using staged installation +** R +** inst +** byte-compile and prepare package for lazy loading +Error : The `x` argument of `as_tibble()` can't be missing as of tibble 3.0.0. +Error: unable to load R code in package ‘eflm’ +Execution halted +ERROR: lazy loading failed for package ‘eflm’ +* removing ‘/tmp/workdir/eflm/old/eflm.Rcheck/eflm’ ``` -# broom.helpers +# EnvExpInd
-* Version: 1.12.0 -* GitHub: https://github.com/larmarange/broom.helpers -* Source code: https://github.com/cran/broom.helpers -* Date/Publication: 2023-02-09 17:00:02 UTC -* Number of recursive dependencies: 226 +* Version: 0.1.0 +* GitHub: https://github.com/Spatial-R/EnvExpInd +* Source code: https://github.com/cran/EnvExpInd +* Date/Publication: 2020-10-23 15:50:02 UTC +* Number of recursive dependencies: 67 -Run `revdepcheck::cloud_details(, "broom.helpers")` for more info +Run `revdepcheck::cloud_details(, "EnvExpInd")` for more info
@@ -1315,27 +1290,27 @@ Run `revdepcheck::cloud_details(, "broom.helpers")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/broom.helpers/new/broom.helpers.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/EnvExpInd/new/EnvExpInd.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘broom.helpers/DESCRIPTION’ ... OK -* this is package ‘broom.helpers’ version ‘1.12.0’ +* checking for file ‘EnvExpInd/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘EnvExpInd’ version ‘0.1.0’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... NOTE ... -* checking tests ... OK - Running ‘spelling.R’ - Running ‘testthat.R’ +* 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 ... NONE - ‘tidy.Rmd’ using ‘UTF-8’... OK + ‘environment_exposure.Rmd’ using ‘UTF-8’... OK * checking re-building of vignette outputs ... OK * DONE -Status: 1 NOTE +Status: OK @@ -1345,44 +1320,43 @@ Status: 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/broom.helpers/old/broom.helpers.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/EnvExpInd/old/EnvExpInd.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘broom.helpers/DESCRIPTION’ ... OK -* this is package ‘broom.helpers’ version ‘1.12.0’ +* checking for file ‘EnvExpInd/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘EnvExpInd’ version ‘0.1.0’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... NOTE ... -* checking tests ... OK - Running ‘spelling.R’ - Running ‘testthat.R’ +* 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 ... NONE - ‘tidy.Rmd’ using ‘UTF-8’... OK + ‘environment_exposure.Rmd’ using ‘UTF-8’... OK * checking re-building of vignette outputs ... OK * DONE -Status: 1 NOTE +Status: OK ``` -# broom.mixed +# NA
-* Version: 0.2.9.4 -* GitHub: https://github.com/bbolker/broom.mixed -* Source code: https://github.com/cran/broom.mixed -* Date/Publication: 2022-04-17 17:42:29 UTC -* Number of recursive dependencies: 164 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "broom.mixed")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
@@ -1391,27 +1365,7 @@ Run `revdepcheck::cloud_details(, "broom.mixed")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/broom.mixed/new/broom.mixed.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘broom.mixed/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘broom.mixed’ version ‘0.2.9.4’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘test-all.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘broom_mixed_intro.rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 2 NOTEs + @@ -1421,43 +1375,23 @@ Status: 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/broom.mixed/old/broom.mixed.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘broom.mixed/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘broom.mixed’ version ‘0.2.9.4’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘test-all.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘broom_mixed_intro.rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 2 NOTEs + ``` -# BUSpaRse +# NA
* Version: NA * GitHub: NA -* Source code: https://github.com/cran/BUSpaRse -* Number of recursive dependencies: 157 +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "BUSpaRse")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
@@ -1483,17 +1417,16 @@ Run `revdepcheck::cloud_details(, "BUSpaRse")` for more info ``` -# cancensus +# NA
-* Version: 0.5.5 -* GitHub: https://github.com/mountainMath/cancensus -* Source code: https://github.com/cran/cancensus -* Date/Publication: 2023-01-23 08:40:06 UTC -* Number of recursive dependencies: 117 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "cancensus")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
@@ -1502,27 +1435,7 @@ Run `revdepcheck::cloud_details(, "cancensus")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/cancensus/new/cancensus.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘cancensus/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘cancensus’ version ‘0.5.5’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... - ‘Making_maps_with_cancensus.Rmd’ using ‘UTF-8’... OK - ‘Taxfiler_Data.Rmd’ using ‘UTF-8’... OK - ‘cancensus.Rmd’ using ‘UTF-8’... OK - ‘data_discovery.Rmd’ using ‘UTF-8’... OK - ‘intersecting_geometries.Rmd’ using ‘UTF-8’... OK - ‘statcan_attribute_files.Rmd’ using ‘UTF-8’... OK - ‘statcan_wds.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 3 NOTEs + @@ -1532,43 +1445,24 @@ Status: 3 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/cancensus/old/cancensus.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘cancensus/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘cancensus’ version ‘0.5.5’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... - ‘Making_maps_with_cancensus.Rmd’ using ‘UTF-8’... OK - ‘Taxfiler_Data.Rmd’ using ‘UTF-8’... OK - ‘cancensus.Rmd’ using ‘UTF-8’... OK - ‘data_discovery.Rmd’ using ‘UTF-8’... OK - ‘intersecting_geometries.Rmd’ using ‘UTF-8’... OK - ‘statcan_attribute_files.Rmd’ using ‘UTF-8’... OK - ‘statcan_wds.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 3 NOTEs + ``` -# cattonum +# eSDM
-* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/cattonum -* Number of recursive dependencies: 78 +* Version: 0.3.7 +* GitHub: https://github.com/smwoodman/eSDM +* Source code: https://github.com/cran/eSDM +* Date/Publication: 2021-05-04 04:50:08 UTC +* Number of recursive dependencies: 130 -Run `revdepcheck::cloud_details(, "cattonum")` for more info +Run `revdepcheck::cloud_details(, "eSDM")` for more info
@@ -1577,7 +1471,22 @@ Run `revdepcheck::cloud_details(, "cattonum")` for more info ### Devel ``` +* using log directory ‘/tmp/workdir/eSDM/new/eSDM.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘eSDM/DESCRIPTION’ ... OK +* this is package ‘eSDM’ version ‘0.3.7’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR @@ -1587,24 +1496,39 @@ Run `revdepcheck::cloud_details(, "cattonum")` for more info ### CRAN ``` +* using log directory ‘/tmp/workdir/eSDM/old/eSDM.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘eSDM/DESCRIPTION’ ... OK +* this is package ‘eSDM’ version ‘0.3.7’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR ``` -# CCAMLRGIS +# fgdr
-* Version: 4.0.4 -* GitHub: https://github.com/ccamlr/CCAMLRGIS -* Source code: https://github.com/cran/CCAMLRGIS -* Date/Publication: 2023-02-07 04:12:37 UTC -* Number of recursive dependencies: 72 +* Version: 1.1.1 +* GitHub: https://github.com/uribo/fgdr +* Source code: https://github.com/cran/fgdr +* Date/Publication: 2022-02-22 05:00:02 UTC +* Number of recursive dependencies: 123 -Run `revdepcheck::cloud_details(, "CCAMLRGIS")` for more info +Run `revdepcheck::cloud_details(, "fgdr")` for more info
@@ -1613,14 +1537,13 @@ Run `revdepcheck::cloud_details(, "CCAMLRGIS")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/CCAMLRGIS/new/CCAMLRGIS.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/fgdr/new/fgdr.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘CCAMLRGIS/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘CCAMLRGIS’ version ‘4.0.4’ +* checking for file ‘fgdr/DESCRIPTION’ ... OK +* this is package ‘fgdr’ version ‘1.1.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -1639,14 +1562,13 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/CCAMLRGIS/old/CCAMLRGIS.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/fgdr/old/fgdr.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘CCAMLRGIS/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘CCAMLRGIS’ version ‘4.0.4’ +* checking for file ‘fgdr/DESCRIPTION’ ... OK +* this is package ‘fgdr’ version ‘1.1.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -1662,16 +1584,16 @@ Status: 1 ERROR ``` -# ceRNAnetsim +# NA
* Version: NA * GitHub: NA -* Source code: https://github.com/cran/ceRNAnetsim -* Number of recursive dependencies: 99 +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "ceRNAnetsim")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
@@ -1697,76 +1619,52 @@ Run `revdepcheck::cloud_details(, "ceRNAnetsim")` for more info ``` -# choroplethr +# NA
-* Version: 3.7.1 +* Version: NA * GitHub: NA -* Source code: https://github.com/cran/choroplethr -* Date/Publication: 2022-10-05 07:10:06 UTC -* Number of recursive dependencies: 127 +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "choroplethr")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
-## In both - -* checking whether package ‘choroplethr’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/choroplethr/new/choroplethr.Rcheck/00install.out’ for details. - ``` - -## Installation +## Error before installation ### Devel ``` -* installing *source* package ‘choroplethr’ ... -** package ‘choroplethr’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** data -** byte-compile and prepare package for lazy loading -Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘sf’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘choroplethr’ -* removing ‘/tmp/workdir/choroplethr/new/choroplethr.Rcheck/choroplethr’ + + + + ``` ### CRAN ``` -* installing *source* package ‘choroplethr’ ... -** package ‘choroplethr’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** data -** byte-compile and prepare package for lazy loading -Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘sf’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘choroplethr’ -* removing ‘/tmp/workdir/choroplethr/old/choroplethr.Rcheck/choroplethr’ + + + + ``` -# COMPASS +# FORTLS
-* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/COMPASS -* Number of recursive dependencies: 151 +* Version: 1.2.0 +* GitHub: https://github.com/Molina-Valero/FORTLS +* Source code: https://github.com/cran/FORTLS +* Date/Publication: 2023-01-08 16:50:05 UTC +* Number of recursive dependencies: 176 -Run `revdepcheck::cloud_details(, "COMPASS")` for more info +Run `revdepcheck::cloud_details(, "FORTLS")` for more info
@@ -1775,7 +1673,22 @@ Run `revdepcheck::cloud_details(, "COMPASS")` for more info ### Devel ``` +* using log directory ‘/tmp/workdir/FORTLS/new/FORTLS.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘FORTLS/DESCRIPTION’ ... OK +* this is package ‘FORTLS’ version ‘1.2.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR @@ -1785,88 +1698,115 @@ Run `revdepcheck::cloud_details(, "COMPASS")` for more info ### CRAN ``` +* using log directory ‘/tmp/workdir/FORTLS/old/FORTLS.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘FORTLS/DESCRIPTION’ ... OK +* this is package ‘FORTLS’ version ‘1.2.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR ``` -# CoordinateCleaner +# FRK
-* Version: 2.0-20 -* GitHub: https://github.com/ropensci/CoordinateCleaner -* Source code: https://github.com/cran/CoordinateCleaner -* Date/Publication: 2021-10-21 17:10:05 UTC -* Number of recursive dependencies: 115 +* Version: 2.1.5 +* GitHub: https://github.com/andrewzm/FRK +* Source code: https://github.com/cran/FRK +* Date/Publication: 2023-02-01 10:20:02 UTC +* Number of recursive dependencies: 156 -Run `revdepcheck::cloud_details(, "CoordinateCleaner")` for more info +Run `revdepcheck::cloud_details(, "FRK")` for more info
-## In both - -* checking whether package ‘CoordinateCleaner’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/CoordinateCleaner/new/CoordinateCleaner.Rcheck/00install.out’ for details. - ``` - -## Installation +## Error before installation ### Devel ``` -* installing *source* package ‘CoordinateCleaner’ ... -** package ‘CoordinateCleaner’ 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(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘sf’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +* using log directory ‘/tmp/workdir/FRK/new/FRK.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘FRK/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘FRK’ version ‘2.1.5’ +* package encoding: UTF-8 +* checking package namespace information ... OK +... +--- failed re-building ‘FRK_non-Gaussian.Rnw’ + +SUMMARY: processing the following files failed: + ‘FRK_intro.Rnw’ ‘FRK_non-Gaussian.Rnw’ + +Error: Vignette re-building failed. Execution halted -ERROR: lazy loading failed for package ‘CoordinateCleaner’ -* removing ‘/tmp/workdir/CoordinateCleaner/new/CoordinateCleaner.Rcheck/CoordinateCleaner’ + +* DONE +Status: 1 ERROR, 1 WARNING, 2 NOTEs + + + ``` ### CRAN ``` -* installing *source* package ‘CoordinateCleaner’ ... -** package ‘CoordinateCleaner’ 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(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘sf’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +* using log directory ‘/tmp/workdir/FRK/old/FRK.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘FRK/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘FRK’ version ‘2.1.5’ +* package encoding: UTF-8 +* checking package namespace information ... OK +... +--- failed re-building ‘FRK_non-Gaussian.Rnw’ + +SUMMARY: processing the following files failed: + ‘FRK_intro.Rnw’ ‘FRK_non-Gaussian.Rnw’ + +Error: Vignette re-building failed. Execution halted -ERROR: lazy loading failed for package ‘CoordinateCleaner’ -* removing ‘/tmp/workdir/CoordinateCleaner/old/CoordinateCleaner.Rcheck/CoordinateCleaner’ + +* DONE +Status: 1 ERROR, 1 WARNING, 2 NOTEs + + + ``` -# CopernicusMarine +# fsr
-* Version: 0.0.6 -* GitHub: https://github.com/pepijn-devries/CopernicusMarine -* Source code: https://github.com/cran/CopernicusMarine -* Date/Publication: 2023-01-30 13:50:02 UTC -* Number of recursive dependencies: 113 +* Version: 1.0.2 +* GitHub: https://github.com/accarniel/fsr +* Source code: https://github.com/cran/fsr +* Date/Publication: 2022-07-05 02:50:02 UTC +* Number of recursive dependencies: 71 -Run `revdepcheck::cloud_details(, "CopernicusMarine")` for more info +Run `revdepcheck::cloud_details(, "fsr")` for more info
@@ -1875,18 +1815,18 @@ Run `revdepcheck::cloud_details(, "CopernicusMarine")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/CopernicusMarine/new/CopernicusMarine.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/fsr/new/fsr.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘CopernicusMarine/DESCRIPTION’ ... OK +* checking for file ‘fsr/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘CopernicusMarine’ version ‘0.0.6’ +* this is package ‘fsr’ version ‘1.0.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘sf’ +Packages required but not available: 'sf', 'lwgeom' See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -1901,18 +1841,18 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/CopernicusMarine/old/CopernicusMarine.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/fsr/old/fsr.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘CopernicusMarine/DESCRIPTION’ ... OK +* checking for file ‘fsr/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘CopernicusMarine’ version ‘0.0.6’ +* this is package ‘fsr’ version ‘1.0.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘sf’ +Packages required but not available: 'sf', 'lwgeom' See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -1924,17 +1864,81 @@ Status: 1 ERROR ``` -# CRE +# GeodesiCL
-* Version: 0.2.0 -* GitHub: https://github.com/NSAPH-Software/CRE -* Source code: https://github.com/cran/CRE -* Date/Publication: 2023-01-19 20:20:02 UTC -* Number of recursive dependencies: 141 +* Version: 1.0.0 +* GitHub: https://github.com/diegoalarc/GeodesiCL +* Source code: https://github.com/cran/GeodesiCL +* Date/Publication: 2021-05-25 12:20:02 UTC +* Number of recursive dependencies: 129 + +Run `revdepcheck::cloud_details(, "GeodesiCL")` for more info + +
+ +## In both + +* checking whether package ‘GeodesiCL’ can be installed ... ERROR + ``` + Installation failed. + See ‘/tmp/workdir/GeodesiCL/new/GeodesiCL.Rcheck/00install.out’ for details. + ``` + +## Installation + +### Devel + +``` +* installing *source* package ‘GeodesiCL’ ... +** package ‘GeodesiCL’ 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(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : + there is no package called ‘sf’ +Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: lazy loading failed for package ‘GeodesiCL’ +* removing ‘/tmp/workdir/GeodesiCL/new/GeodesiCL.Rcheck/GeodesiCL’ + + +``` +### CRAN + +``` +* installing *source* package ‘GeodesiCL’ ... +** package ‘GeodesiCL’ 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(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : + there is no package called ‘sf’ +Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: lazy loading failed for package ‘GeodesiCL’ +* removing ‘/tmp/workdir/GeodesiCL/old/GeodesiCL.Rcheck/GeodesiCL’ + + +``` +# ggchangepoint -Run `revdepcheck::cloud_details(, "CRE")` for more info +
+ +* Version: 0.1.0 +* GitHub: NA +* Source code: https://github.com/cran/ggchangepoint +* Date/Publication: 2022-02-24 08:20:04 UTC +* Number of recursive dependencies: 81 + +Run `revdepcheck::cloud_details(, "ggchangepoint")` for more info
@@ -1943,27 +1947,27 @@ Run `revdepcheck::cloud_details(, "CRE")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/CRE/new/CRE.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/ggchangepoint/new/ggchangepoint.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘CRE/DESCRIPTION’ ... OK +* checking for file ‘ggchangepoint/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘CRE’ version ‘0.2.0’ +* this is package ‘ggchangepoint’ version ‘0.1.0’ * package encoding: UTF-8 * checking package namespace information ... OK ... - Running ‘testthat.R’ +* 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 ... NONE - ‘CRE.Rmd’ using ‘UTF-8’... OK - ‘Contribution.Rmd’ using ‘UTF-8’... OK - ‘Testing-the-Package.Rmd’ using ‘UTF-8’... OK + ‘introduction.Rmd’ using ‘UTF-8’... OK * checking re-building of vignette outputs ... OK * DONE -Status: 1 NOTE +Status: OK @@ -1973,43 +1977,44 @@ Status: 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/CRE/old/CRE.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/ggchangepoint/old/ggchangepoint.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘CRE/DESCRIPTION’ ... OK +* checking for file ‘ggchangepoint/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘CRE’ version ‘0.2.0’ +* this is package ‘ggchangepoint’ version ‘0.1.0’ * package encoding: UTF-8 * checking package namespace information ... OK ... - Running ‘testthat.R’ +* 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 ... NONE - ‘CRE.Rmd’ using ‘UTF-8’... OK - ‘Contribution.Rmd’ using ‘UTF-8’... OK - ‘Testing-the-Package.Rmd’ using ‘UTF-8’... OK + ‘introduction.Rmd’ using ‘UTF-8’... OK * checking re-building of vignette outputs ... OK * DONE -Status: 1 NOTE +Status: OK ``` -# ctDNAtools +# ggOceanMaps
-* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/ctDNAtools -* Number of recursive dependencies: 143 +* Version: 1.3.4 +* GitHub: https://github.com/MikkoVihtakari/ggOceanMaps +* Source code: https://github.com/cran/ggOceanMaps +* Date/Publication: 2022-09-26 11:50:02 UTC +* Number of recursive dependencies: 92 -Run `revdepcheck::cloud_details(, "ctDNAtools")` for more info +Run `revdepcheck::cloud_details(, "ggOceanMaps")` for more info
@@ -2018,7 +2023,23 @@ Run `revdepcheck::cloud_details(, "ctDNAtools")` for more info ### Devel ``` +* using log directory ‘/tmp/workdir/ggOceanMaps/new/ggOceanMaps.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘ggOceanMaps/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘ggOceanMaps’ version ‘1.3.4’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR @@ -2028,24 +2049,40 @@ Run `revdepcheck::cloud_details(, "ctDNAtools")` for more info ### CRAN ``` +* using log directory ‘/tmp/workdir/ggOceanMaps/old/ggOceanMaps.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘ggOceanMaps/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘ggOceanMaps’ version ‘1.3.4’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR ``` -# cubble +# ggspatial
-* Version: 0.2.0 -* GitHub: https://github.com/huizezhang-sherry/cubble -* Source code: https://github.com/cran/cubble -* Date/Publication: 2022-11-17 12:30:02 UTC -* Number of recursive dependencies: 132 +* Version: 1.1.7 +* GitHub: https://github.com/paleolimbot/ggspatial +* Source code: https://github.com/cran/ggspatial +* Date/Publication: 2022-11-24 10:00:02 UTC +* Number of recursive dependencies: 105 -Run `revdepcheck::cloud_details(, "cubble")` for more info +Run `revdepcheck::cloud_details(, "ggspatial")` for more info
@@ -2054,18 +2091,21 @@ Run `revdepcheck::cloud_details(, "cubble")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/cubble/new/cubble.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/ggspatial/new/ggspatial.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘cubble/DESCRIPTION’ ... OK -* this is package ‘cubble’ version ‘0.2.0’ +* checking for file ‘ggspatial/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘ggspatial’ version ‘1.1.7’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR Package required but not available: ‘sf’ +Package suggested but not available for checking: ‘lwgeom’ + See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. * DONE @@ -2079,18 +2119,21 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/cubble/old/cubble.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/ggspatial/old/ggspatial.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘cubble/DESCRIPTION’ ... OK -* this is package ‘cubble’ version ‘0.2.0’ +* checking for file ‘ggspatial/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘ggspatial’ version ‘1.1.7’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR Package required but not available: ‘sf’ +Package suggested but not available for checking: ‘lwgeom’ + See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. * DONE @@ -2101,17 +2144,17 @@ Status: 1 ERROR ``` -# cxr +# glottospace
-* Version: 1.0.0 -* GitHub: https://github.com/RadicalCommEcol/cxr -* Source code: https://github.com/cran/cxr -* Date/Publication: 2021-04-16 09:20:02 UTC -* Number of recursive dependencies: 128 +* Version: 0.0.112 +* GitHub: https://github.com/SietzeN/glottospace +* Source code: https://github.com/cran/glottospace +* Date/Publication: 2022-04-12 12:42:29 UTC +* Number of recursive dependencies: 141 -Run `revdepcheck::cloud_details(, "cxr")` for more info +Run `revdepcheck::cloud_details(, "glottospace")` for more info
@@ -2120,27 +2163,23 @@ Run `revdepcheck::cloud_details(, "cxr")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/cxr/new/cxr.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/glottospace/new/glottospace.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘cxr/DESCRIPTION’ ... OK +* checking for file ‘glottospace/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘cxr’ version ‘1.0.0’ +* this is package ‘glottospace’ version ‘0.0.112’ * package encoding: UTF-8 * checking package namespace information ... OK -... -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘V1_Getting_started.Rmd’ using ‘UTF-8’... OK - ‘V2_Data_formats.Rmd’ using ‘UTF-8’... OK - ‘V3_Coexistence_metrics.Rmd’ using ‘UTF-8’... OK - ‘V4_Models.Rmd’ using ‘UTF-8’... OK - ‘V5_Abundance_projections.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: OK +Status: 1 ERROR @@ -2150,44 +2189,40 @@ Status: OK ### CRAN ``` -* using log directory ‘/tmp/workdir/cxr/old/cxr.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/glottospace/old/glottospace.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘cxr/DESCRIPTION’ ... OK +* checking for file ‘glottospace/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘cxr’ version ‘1.0.0’ +* this is package ‘glottospace’ version ‘0.0.112’ * package encoding: UTF-8 * checking package namespace information ... OK -... -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘V1_Getting_started.Rmd’ using ‘UTF-8’... OK - ‘V2_Data_formats.Rmd’ using ‘UTF-8’... OK - ‘V3_Coexistence_metrics.Rmd’ using ‘UTF-8’... OK - ‘V4_Models.Rmd’ using ‘UTF-8’... OK - ‘V5_Abundance_projections.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: OK +Status: 1 ERROR ``` -# cyclestreets +# GREENeR
-* Version: 0.6.0 -* GitHub: https://github.com/cyclestreets/cyclestreets-r -* Source code: https://github.com/cran/cyclestreets -* Date/Publication: 2023-02-17 09:30:06 UTC -* Number of recursive dependencies: 67 +* Version: 0.1.1 +* GitHub: https://github.com/calfarog/GREENeR +* Source code: https://github.com/cran/GREENeR +* Date/Publication: 2022-09-07 12:10:02 UTC +* Number of recursive dependencies: 133 -Run `revdepcheck::cloud_details(, "cyclestreets")` for more info +Run `revdepcheck::cloud_details(, "GREENeR")` for more info
@@ -2196,14 +2231,14 @@ Run `revdepcheck::cloud_details(, "cyclestreets")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/cyclestreets/new/cyclestreets.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/GREENeR/new/GREENeR.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘cyclestreets/DESCRIPTION’ ... OK +* checking for file ‘GREENeR/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘cyclestreets’ version ‘0.6.0’ +* this is package ‘GREENeR’ version ‘0.1.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -2222,14 +2257,14 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/cyclestreets/old/cyclestreets.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/GREENeR/old/GREENeR.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘cyclestreets/DESCRIPTION’ ... OK +* checking for file ‘GREENeR/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘cyclestreets’ version ‘0.6.0’ +* this is package ‘GREENeR’ version ‘0.1.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -2245,16 +2280,17 @@ Status: 1 ERROR ``` -# CytoML +# gumboot
-* Version: NA +* Version: 1.0.0 * GitHub: NA -* Source code: https://github.com/cran/CytoML -* Number of recursive dependencies: 105 +* Source code: https://github.com/cran/gumboot +* Date/Publication: 2021-08-06 08:10:01 UTC +* Number of recursive dependencies: 101 -Run `revdepcheck::cloud_details(, "CytoML")` for more info +Run `revdepcheck::cloud_details(, "gumboot")` for more info
@@ -2263,7 +2299,27 @@ Run `revdepcheck::cloud_details(, "CytoML")` for more info ### Devel ``` - +* using log directory ‘/tmp/workdir/gumboot/new/gumboot.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘gumboot/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘gumboot’ version ‘1.0.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +... +* checking if there is a namespace ... OK +* checking for executable files ... OK +* checking for hidden files and directories ... OK +* checking for portable file names ... OK +* checking for sufficient/correct file permissions ... OK +* checking whether package ‘gumboot’ can be installed ... ERROR +Installation failed. +See ‘/tmp/workdir/gumboot/new/gumboot.Rcheck/00install.out’ for details. +* DONE +Status: 1 ERROR @@ -2273,24 +2329,44 @@ Run `revdepcheck::cloud_details(, "CytoML")` for more info ### CRAN ``` - +* using log directory ‘/tmp/workdir/gumboot/old/gumboot.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘gumboot/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘gumboot’ version ‘1.0.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +... +* checking if there is a namespace ... OK +* checking for executable files ... OK +* checking for hidden files and directories ... OK +* checking for portable file names ... OK +* checking for sufficient/correct file permissions ... OK +* checking whether package ‘gumboot’ can be installed ... ERROR +Installation failed. +See ‘/tmp/workdir/gumboot/old/gumboot.Rcheck/00install.out’ for details. +* DONE +Status: 1 ERROR ``` -# datawizard +# gwavr
-* Version: 0.6.5 -* GitHub: https://github.com/easystats/datawizard -* Source code: https://github.com/cran/datawizard -* Date/Publication: 2022-12-14 23:50:02 UTC -* Number of recursive dependencies: 186 +* Version: 0.2.0 +* GitHub: https://github.com/joshualerickson/gwavr +* Source code: https://github.com/cran/gwavr +* Date/Publication: 2022-03-28 21:30:02 UTC +* Number of recursive dependencies: 140 -Run `revdepcheck::cloud_details(, "datawizard")` for more info +Run `revdepcheck::cloud_details(, "gwavr")` for more info
@@ -2299,27 +2375,22 @@ Run `revdepcheck::cloud_details(, "datawizard")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/datawizard/new/datawizard.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/gwavr/new/gwavr.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘datawizard/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘datawizard’ version ‘0.6.5’ +* checking for file ‘gwavr/DESCRIPTION’ ... OK +* this is package ‘gwavr’ version ‘0.2.0’ * package encoding: UTF-8 * checking package namespace information ... OK -... - Running ‘testthat.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘selection_syntax.Rmd’ using ‘UTF-8’... OK - ‘standardize_data.Rmd’ using ‘UTF-8’... OK - ‘tidyverse_translation.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'nhdplusTools', 'sf' + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 1 NOTE +Status: 1 ERROR @@ -2329,44 +2400,39 @@ Status: 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/datawizard/old/datawizard.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/gwavr/old/gwavr.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘datawizard/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘datawizard’ version ‘0.6.5’ +* checking for file ‘gwavr/DESCRIPTION’ ... OK +* this is package ‘gwavr’ version ‘0.2.0’ * package encoding: UTF-8 * checking package namespace information ... OK -... - Running ‘testthat.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘selection_syntax.Rmd’ using ‘UTF-8’... OK - ‘standardize_data.Rmd’ using ‘UTF-8’... OK - ‘tidyverse_translation.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'nhdplusTools', 'sf' + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 1 NOTE +Status: 1 ERROR ``` -# dbmss +# GWPR.light
-* Version: 2.8-0 -* GitHub: https://github.com/EricMarcon/dbmss -* Source code: https://github.com/cran/dbmss -* Date/Publication: 2023-01-06 15:10:05 UTC -* Number of recursive dependencies: 120 +* Version: 0.2.1 +* GitHub: https://github.com/MichaelChaoLi-cpu/GWPR.light +* Source code: https://github.com/cran/GWPR.light +* Date/Publication: 2022-06-21 11:00:13 UTC +* Number of recursive dependencies: 129 -Run `revdepcheck::cloud_details(, "dbmss")` for more info +Run `revdepcheck::cloud_details(, "GWPR.light")` for more info
@@ -2375,25 +2441,25 @@ Run `revdepcheck::cloud_details(, "dbmss")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/dbmss/new/dbmss.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/GWPR.light/new/GWPR.light.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘dbmss/DESCRIPTION’ ... OK +* checking for file ‘GWPR.light/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘dbmss’ version ‘2.8-0’ +* this is package ‘GWPR.light’ version ‘0.2.1’ * package encoding: UTF-8 * checking package namespace information ... 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 ... NONE - ‘dbmss.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking if there is a namespace ... OK +* checking for executable files ... OK +* checking for hidden files and directories ... OK +* checking for portable file names ... OK +* checking for sufficient/correct file permissions ... OK +* checking whether package ‘GWPR.light’ can be installed ... ERROR +Installation failed. +See ‘/tmp/workdir/GWPR.light/new/GWPR.light.Rcheck/00install.out’ for details. * DONE Status: 1 ERROR @@ -2405,25 +2471,25 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/dbmss/old/dbmss.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/GWPR.light/old/GWPR.light.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘dbmss/DESCRIPTION’ ... OK +* checking for file ‘GWPR.light/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘dbmss’ version ‘2.8-0’ +* this is package ‘GWPR.light’ version ‘0.2.1’ * package encoding: UTF-8 * checking package namespace information ... 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 ... NONE - ‘dbmss.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking if there is a namespace ... OK +* checking for executable files ... OK +* checking for hidden files and directories ... OK +* checking for portable file names ... OK +* checking for sufficient/correct file permissions ... OK +* checking whether package ‘GWPR.light’ can be installed ... ERROR +Installation failed. +See ‘/tmp/workdir/GWPR.light/old/GWPR.light.Rcheck/00install.out’ for details. * DONE Status: 1 ERROR @@ -2432,16 +2498,17 @@ Status: 1 ERROR ``` -# DeLorean +# happign
-* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/DeLorean -* Number of recursive dependencies: 120 +* Version: 0.1.8 +* GitHub: https://github.com/paul-carteron/happign +* Source code: https://github.com/cran/happign +* Date/Publication: 2023-01-30 20:50:02 UTC +* Number of recursive dependencies: 121 -Run `revdepcheck::cloud_details(, "DeLorean")` for more info +Run `revdepcheck::cloud_details(, "happign")` for more info
@@ -2450,7 +2517,22 @@ Run `revdepcheck::cloud_details(, "DeLorean")` for more info ### Devel ``` +* using log directory ‘/tmp/workdir/happign/new/happign.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘happign/DESCRIPTION’ ... OK +* this is package ‘happign’ version ‘0.1.8’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR @@ -2460,23 +2542,39 @@ Run `revdepcheck::cloud_details(, "DeLorean")` for more info ### CRAN ``` +* using log directory ‘/tmp/workdir/happign/old/happign.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘happign/DESCRIPTION’ ... OK +* this is package ‘happign’ version ‘0.1.8’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR ``` -# DepecheR +# himach
-* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/DepecheR -* Number of recursive dependencies: 116 +* Version: 0.3.1 +* GitHub: https://github.com/david6marsh/himach +* Source code: https://github.com/cran/himach +* Date/Publication: 2022-12-05 09:30:02 UTC +* Number of recursive dependencies: 108 -Run `revdepcheck::cloud_details(, "DepecheR")` for more info +Run `revdepcheck::cloud_details(, "himach")` for more info
@@ -2485,7 +2583,23 @@ Run `revdepcheck::cloud_details(, "DepecheR")` for more info ### Devel ``` +* using log directory ‘/tmp/workdir/himach/new/himach.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘himach/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘himach’ version ‘0.3.1’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'lwgeom', 'sf' +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR @@ -2495,23 +2609,40 @@ Run `revdepcheck::cloud_details(, "DepecheR")` for more info ### CRAN ``` +* using log directory ‘/tmp/workdir/himach/old/himach.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘himach/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘himach’ version ‘0.3.1’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'lwgeom', 'sf' +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR ``` -# DiffBind +# HYPEtools
-* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/DiffBind -* Number of recursive dependencies: 158 +* Version: 1.2.0 +* GitHub: https://github.com/rcapell/HYPEtools +* Source code: https://github.com/cran/HYPEtools +* Date/Publication: 2023-02-10 08:50:06 UTC +* Number of recursive dependencies: 174 -Run `revdepcheck::cloud_details(, "DiffBind")` for more info +Run `revdepcheck::cloud_details(, "HYPEtools")` for more info
@@ -2520,7 +2651,22 @@ Run `revdepcheck::cloud_details(, "DiffBind")` for more info ### Devel ``` +* using log directory ‘/tmp/workdir/HYPEtools/new/HYPEtools.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘HYPEtools/DESCRIPTION’ ... OK +* this is package ‘HYPEtools’ version ‘1.2.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR @@ -2530,23 +2676,39 @@ Run `revdepcheck::cloud_details(, "DiffBind")` for more info ### CRAN ``` +* using log directory ‘/tmp/workdir/HYPEtools/old/HYPEtools.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘HYPEtools/DESCRIPTION’ ... OK +* this is package ‘HYPEtools’ version ‘1.2.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR ``` -# diffman +# hypsoLoop
-* Version: NA +* Version: 0.2.0 * GitHub: NA -* Source code: https://github.com/cran/diffman -* Number of recursive dependencies: 125 +* Source code: https://github.com/cran/hypsoLoop +* Date/Publication: 2022-02-08 09:00:02 UTC +* Number of recursive dependencies: 109 -Run `revdepcheck::cloud_details(, "diffman")` for more info +Run `revdepcheck::cloud_details(, "hypsoLoop")` for more info
@@ -2555,7 +2717,23 @@ Run `revdepcheck::cloud_details(, "diffman")` for more info ### Devel ``` +* using log directory ‘/tmp/workdir/hypsoLoop/new/hypsoLoop.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘hypsoLoop/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘hypsoLoop’ version ‘0.2.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR @@ -2565,59 +2743,101 @@ Run `revdepcheck::cloud_details(, "diffman")` for more info ### CRAN ``` +* using log directory ‘/tmp/workdir/hypsoLoop/old/hypsoLoop.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘hypsoLoop/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘hypsoLoop’ version ‘0.2.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR ``` -# diffrprojects +# incidence2
-* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/diffrprojects -* Number of recursive dependencies: 65 +* Version: 1.2.3 +* GitHub: https://github.com/reconverse/incidence2 +* Source code: https://github.com/cran/incidence2 +* Date/Publication: 2021-11-07 22:00:02 UTC +* Number of recursive dependencies: 73 -Run `revdepcheck::cloud_details(, "diffrprojects")` for more info +Run `revdepcheck::cloud_details(, "incidence2")` for more info
-## Error before installation - -### Devel - -``` +## In both +* checking whether package ‘incidence2’ can be installed ... ERROR + ``` + Installation failed. + See ‘/tmp/workdir/incidence2/new/incidence2.Rcheck/00install.out’ for details. + ``` +## Installation +### Devel +``` +* installing *source* package ‘incidence2’ ... +** package ‘incidence2’ 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 : The `x` argument of `as_tibble()` can't be missing as of tibble 3.0.0. +Error: unable to load R code in package ‘incidence2’ +Execution halted +ERROR: lazy loading failed for package ‘incidence2’ +* removing ‘/tmp/workdir/incidence2/new/incidence2.Rcheck/incidence2’ ``` ### CRAN ``` - - - - +* installing *source* package ‘incidence2’ ... +** package ‘incidence2’ 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 : The `x` argument of `as_tibble()` can't be missing as of tibble 3.0.0. +Error: unable to load R code in package ‘incidence2’ +Execution halted +ERROR: lazy loading failed for package ‘incidence2’ +* removing ‘/tmp/workdir/incidence2/old/incidence2.Rcheck/incidence2’ ``` -# dycdtools +# NA
-* Version: 0.4.3 -* GitHub: https://github.com/SongyanYu/dycdtools -* Source code: https://github.com/cran/dycdtools -* Date/Publication: 2022-11-22 00:40:02 UTC -* Number of recursive dependencies: 89 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "dycdtools")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
@@ -2626,27 +2846,7 @@ Run `revdepcheck::cloud_details(, "dycdtools")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/dycdtools/new/dycdtools.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘dycdtools/DESCRIPTION’ ... OK -* this is package ‘dycdtools’ version ‘0.4.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... OK -... -* checking if there is a namespace ... OK -* checking for executable files ... OK -* checking for hidden files and directories ... OK -* checking for portable file names ... OK -* checking for sufficient/correct file permissions ... OK -* checking whether package ‘dycdtools’ can be installed ... ERROR -Installation failed. -See ‘/tmp/workdir/dycdtools/new/dycdtools.Rcheck/00install.out’ for details. -* DONE -Status: 1 ERROR + @@ -2656,109 +2856,90 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/dycdtools/old/dycdtools.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘dycdtools/DESCRIPTION’ ... OK -* this is package ‘dycdtools’ version ‘0.4.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... OK -... -* checking if there is a namespace ... OK -* checking for executable files ... OK -* checking for hidden files and directories ... OK -* checking for portable file names ... OK -* checking for sufficient/correct file permissions ... OK -* checking whether package ‘dycdtools’ can be installed ... ERROR -Installation failed. -See ‘/tmp/workdir/dycdtools/old/dycdtools.Rcheck/00install.out’ for details. -* DONE -Status: 1 ERROR + ``` -# dynamicSDM +# intSDM
-* Version: 1.1 -* GitHub: https://github.com/r-a-dobson/dynamicSDM -* Source code: https://github.com/cran/dynamicSDM -* Date/Publication: 2023-02-27 13:22:30 UTC -* Number of recursive dependencies: 156 +* Version: 1.0.5 +* GitHub: NA +* Source code: https://github.com/cran/intSDM +* Date/Publication: 2023-02-17 09:00:02 UTC +* Number of recursive dependencies: 154 -Run `revdepcheck::cloud_details(, "dynamicSDM")` for more info +Run `revdepcheck::cloud_details(, "intSDM")` for more info
-## Error before installation +## In both + +* checking whether package ‘intSDM’ can be installed ... ERROR + ``` + Installation failed. + See ‘/tmp/workdir/intSDM/new/intSDM.Rcheck/00install.out’ for details. + ``` + +* checking package dependencies ... NOTE + ``` + Package suggested but not available for checking: ‘sf’ + ``` + +## Installation ### Devel ``` -* using log directory ‘/tmp/workdir/dynamicSDM/new/dynamicSDM.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘dynamicSDM/DESCRIPTION’ ... OK -* this is package ‘dynamicSDM’ version ‘1.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - +* installing *source* package ‘intSDM’ ... +** package ‘intSDM’ 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 ‘PointedSDMs’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]): + there is no package called ‘sf’ +Execution halted +ERROR: lazy loading failed for package ‘intSDM’ +* removing ‘/tmp/workdir/intSDM/new/intSDM.Rcheck/intSDM’ ``` ### CRAN ``` -* using log directory ‘/tmp/workdir/dynamicSDM/old/dynamicSDM.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘dynamicSDM/DESCRIPTION’ ... OK -* this is package ‘dynamicSDM’ version ‘1.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - +* installing *source* package ‘intSDM’ ... +** package ‘intSDM’ 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 ‘PointedSDMs’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]): + there is no package called ‘sf’ +Execution halted +ERROR: lazy loading failed for package ‘intSDM’ +* removing ‘/tmp/workdir/intSDM/old/intSDM.Rcheck/intSDM’ ``` -# dynfrail +# NA
* Version: NA * GitHub: NA -* Source code: https://github.com/cran/dynfrail -* Number of recursive dependencies: 57 +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "dynfrail")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
@@ -2784,17 +2965,17 @@ Run `revdepcheck::cloud_details(, "dynfrail")` for more info ``` -# edbuildmapr +# itsdm
-* Version: 0.3.1 -* GitHub: https://github.com/EdBuild/edbuildmapr -* Source code: https://github.com/cran/edbuildmapr -* Date/Publication: 2021-06-15 06:00:02 UTC -* Number of recursive dependencies: 98 +* Version: 0.2.0 +* GitHub: https://github.com/LLeiSong/itsdm +* Source code: https://github.com/cran/itsdm +* Date/Publication: 2023-01-15 14:30:08 UTC +* Number of recursive dependencies: 84 -Run `revdepcheck::cloud_details(, "edbuildmapr")` for more info +Run `revdepcheck::cloud_details(, "itsdm")` for more info
@@ -2803,18 +2984,17 @@ Run `revdepcheck::cloud_details(, "edbuildmapr")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/edbuildmapr/new/edbuildmapr.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/itsdm/new/itsdm.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘edbuildmapr/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘edbuildmapr’ version ‘0.3.1’ +* checking for file ‘itsdm/DESCRIPTION’ ... OK +* this is package ‘itsdm’ version ‘0.2.0’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'sf', 'tmap' +Package required but not available: ‘sf’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -2829,18 +3009,17 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/edbuildmapr/old/edbuildmapr.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/itsdm/old/itsdm.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘edbuildmapr/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘edbuildmapr’ version ‘0.3.1’ +* checking for file ‘itsdm/DESCRIPTION’ ... OK +* this is package ‘itsdm’ version ‘0.2.0’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'sf', 'tmap' +Package required but not available: ‘sf’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -2852,17 +3031,17 @@ Status: 1 ERROR ``` -# EFDR +# jpgrid
-* Version: 1.2 -* GitHub: https://github.com/andrewzm/EFDR -* Source code: https://github.com/cran/EFDR -* Date/Publication: 2021-04-18 05:50:03 UTC -* Number of recursive dependencies: 105 +* Version: 0.3.0 +* GitHub: https://github.com/UchidaMizuki/jpgrid +* Source code: https://github.com/cran/jpgrid +* Date/Publication: 2023-02-11 08:50:06 UTC +* Number of recursive dependencies: 57 -Run `revdepcheck::cloud_details(, "EFDR")` for more info +Run `revdepcheck::cloud_details(, "jpgrid")` for more info
@@ -2871,27 +3050,23 @@ Run `revdepcheck::cloud_details(, "EFDR")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/EFDR/new/EFDR.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/jpgrid/new/jpgrid.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘EFDR/DESCRIPTION’ ... OK +* checking for file ‘jpgrid/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘EFDR’ version ‘1.2’ +* this is package ‘jpgrid’ version ‘0.3.0’ * package encoding: UTF-8 * checking package namespace information ... 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 ... NONE - ‘EFDR_documents.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: OK +Status: 1 ERROR @@ -2901,44 +3076,40 @@ Status: OK ### CRAN ``` -* using log directory ‘/tmp/workdir/EFDR/old/EFDR.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/jpgrid/old/jpgrid.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘EFDR/DESCRIPTION’ ... OK +* checking for file ‘jpgrid/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘EFDR’ version ‘1.2’ +* this is package ‘jpgrid’ version ‘0.3.0’ * package encoding: UTF-8 * checking package namespace information ... 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 ... NONE - ‘EFDR_documents.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: OK +Status: 1 ERROR ``` -# embed +# jpmesh
-* Version: 1.0.0 -* GitHub: https://github.com/tidymodels/embed -* Source code: https://github.com/cran/embed -* Date/Publication: 2022-07-02 16:50:02 UTC -* Number of recursive dependencies: 183 +* Version: 2.1.0 +* GitHub: https://github.com/uribo/jpmesh +* Source code: https://github.com/cran/jpmesh +* Date/Publication: 2022-01-10 03:32:41 UTC +* Number of recursive dependencies: 108 -Run `revdepcheck::cloud_details(, "embed")` for more info +Run `revdepcheck::cloud_details(, "jpmesh")` for more info
@@ -2947,149 +3118,69 @@ Run `revdepcheck::cloud_details(, "embed")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/embed/new/embed.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/jpmesh/new/jpmesh.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘embed/DESCRIPTION’ ... OK -* this is package ‘embed’ version ‘1.0.0’ +* checking for file ‘jpmesh/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘jpmesh’ version ‘2.1.0’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... NOTE -... - i In index: 1. - i With name: x3. - Caused by error in `.f()`: - ! The package "rstanarm" is required. - - [ FAIL 1 | WARN 2 | SKIP 56 | PASS 162 ] - Error: Test failures - Execution halted -* DONE -Status: 1 ERROR, 2 NOTEs - - - - +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ -``` -### CRAN +Package suggested but not available for checking: ‘lwgeom’ -``` -* using log directory ‘/tmp/workdir/embed/old/embed.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘embed/DESCRIPTION’ ... OK -* this is package ‘embed’ version ‘1.0.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... - i In index: 1. - i With name: x3. - Caused by error in `.f()`: - ! The package "rstanarm" is required. - - [ FAIL 1 | WARN 2 | SKIP 56 | PASS 162 ] - Error: Test failures - Execution halted +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 1 ERROR, 2 NOTEs +Status: 1 ERROR ``` -# EnvExpInd - -
- -* Version: 0.1.0 -* GitHub: https://github.com/Spatial-R/EnvExpInd -* Source code: https://github.com/cran/EnvExpInd -* Date/Publication: 2020-10-23 15:50:02 UTC -* Number of recursive dependencies: 67 - -Run `revdepcheck::cloud_details(, "EnvExpInd")` for more info - -
- -## Error before installation - -### Devel +### CRAN ``` -* using log directory ‘/tmp/workdir/EnvExpInd/new/EnvExpInd.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/jpmesh/old/jpmesh.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘EnvExpInd/DESCRIPTION’ ... OK +* checking for file ‘jpmesh/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘EnvExpInd’ version ‘0.1.0’ +* this is package ‘jpmesh’ version ‘2.1.0’ * package encoding: UTF-8 * checking package namespace information ... 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 ... NONE - ‘environment_exposure.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: OK - - - - +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ -``` -### CRAN +Package suggested but not available for checking: ‘lwgeom’ -``` -* using log directory ‘/tmp/workdir/EnvExpInd/old/EnvExpInd.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘EnvExpInd/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘EnvExpInd’ version ‘0.1.0’ -* package encoding: UTF-8 -* checking package namespace information ... 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 ... NONE - ‘environment_exposure.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: OK +Status: 1 ERROR ``` -# epiphy +# NA
* Version: NA * GitHub: NA -* Source code: https://github.com/cran/epiphy -* Number of recursive dependencies: 91 +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "epiphy")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
@@ -3115,17 +3206,17 @@ Run `revdepcheck::cloud_details(, "epiphy")` for more info ``` -# escalation +# MainExistingDatasets
-* Version: 0.1.4 +* Version: 1.0.1 * GitHub: NA -* Source code: https://github.com/cran/escalation -* Date/Publication: 2020-10-18 21:40:06 UTC -* Number of recursive dependencies: 127 +* Source code: https://github.com/cran/MainExistingDatasets +* Date/Publication: 2022-06-27 14:10:02 UTC +* Number of recursive dependencies: 131 -Run `revdepcheck::cloud_details(, "escalation")` for more info +Run `revdepcheck::cloud_details(, "MainExistingDatasets")` for more info
@@ -3134,18 +3225,17 @@ Run `revdepcheck::cloud_details(, "escalation")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/escalation/new/escalation.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/MainExistingDatasets/new/MainExistingDatasets.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘escalation/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘escalation’ version ‘0.1.4’ +* checking for file ‘MainExistingDatasets/DESCRIPTION’ ... OK +* this is package ‘MainExistingDatasets’ version ‘1.0.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘trialr’ +Package required but not available: ‘sf’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -3160,18 +3250,17 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/escalation/old/escalation.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/MainExistingDatasets/old/MainExistingDatasets.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘escalation/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘escalation’ version ‘0.1.4’ +* checking for file ‘MainExistingDatasets/DESCRIPTION’ ... OK +* this is package ‘MainExistingDatasets’ version ‘1.0.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘trialr’ +Package required but not available: ‘sf’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -3183,17 +3272,16 @@ Status: 1 ERROR ``` -# eSDM +# NA
-* Version: 0.3.7 -* GitHub: https://github.com/smwoodman/eSDM -* Source code: https://github.com/cran/eSDM -* Date/Publication: 2021-05-04 04:50:08 UTC -* Number of recursive dependencies: 130 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "eSDM")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
@@ -3202,24 +3290,7 @@ Run `revdepcheck::cloud_details(, "eSDM")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/eSDM/new/eSDM.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘eSDM/DESCRIPTION’ ... OK -* this is package ‘eSDM’ version ‘0.3.7’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ -Package suggested but not available for checking: ‘tmap’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR @@ -3229,41 +3300,88 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/eSDM/old/eSDM.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘eSDM/DESCRIPTION’ ... OK -* this is package ‘eSDM’ version ‘0.3.7’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ -Package suggested but not available for checking: ‘tmap’ -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR +``` +# manydata + +
+ +* Version: 0.8.2 +* GitHub: https://github.com/globalgov/manydata +* Source code: https://github.com/cran/manydata +* Date/Publication: 2022-11-19 13:00:10 UTC +* Number of recursive dependencies: 169 + +Run `revdepcheck::cloud_details(, "manydata")` for more info + +
+ +## In both + +* checking whether package ‘manydata’ can be installed ... ERROR + ``` + Installation failed. + See ‘/tmp/workdir/manydata/new/manydata.Rcheck/00install.out’ for details. + ``` + +## Installation + +### Devel + +``` +* installing *source* package ‘manydata’ ... +** package ‘manydata’ 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]]) : + there is no package called ‘sf’ +Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: lazy loading failed for package ‘manydata’ +* removing ‘/tmp/workdir/manydata/new/manydata.Rcheck/manydata’ + + +``` +### CRAN + +``` +* installing *source* package ‘manydata’ ... +** package ‘manydata’ 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]]) : + there is no package called ‘sf’ +Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: lazy loading failed for package ‘manydata’ +* removing ‘/tmp/workdir/manydata/old/manydata.Rcheck/manydata’ + ``` -# ESTER +# mapboxapi
-* Version: 0.2.0 -* GitHub: https://github.com/lnalborczyk/ESTER -* Source code: https://github.com/cran/ESTER -* Date/Publication: 2017-12-10 14:21:14 UTC -* Number of recursive dependencies: 137 +* Version: 0.5 +* GitHub: NA +* Source code: https://github.com/cran/mapboxapi +* Date/Publication: 2022-09-15 16:06:12 UTC +* Number of recursive dependencies: 154 -Run `revdepcheck::cloud_details(, "ESTER")` for more info +Run `revdepcheck::cloud_details(, "mapboxapi")` for more info
@@ -3272,16 +3390,18 @@ Run `revdepcheck::cloud_details(, "ESTER")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/ESTER/new/ESTER.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/mapboxapi/new/mapboxapi.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ESTER/DESCRIPTION’ ... OK -* this is package ‘ESTER’ version ‘0.2.0’ +* checking for file ‘mapboxapi/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘mapboxapi’ version ‘0.5’ +* package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘brms’ +Package required but not available: ‘sf’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -3296,16 +3416,18 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/ESTER/old/ESTER.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/mapboxapi/old/mapboxapi.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ESTER/DESCRIPTION’ ... OK -* this is package ‘ESTER’ version ‘0.2.0’ +* checking for file ‘mapboxapi/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘mapboxapi’ version ‘0.5’ +* package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘brms’ +Package required but not available: ‘sf’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -3317,16 +3439,17 @@ Status: 1 ERROR ``` -# evaluator +# mapme.biodiversity
-* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/evaluator -* Number of recursive dependencies: 146 +* Version: 0.3.0 +* GitHub: https://github.com/mapme-initiative/mapme.biodiversity +* Source code: https://github.com/cran/mapme.biodiversity +* Date/Publication: 2023-01-21 14:10:02 UTC +* Number of recursive dependencies: 131 -Run `revdepcheck::cloud_details(, "evaluator")` for more info +Run `revdepcheck::cloud_details(, "mapme.biodiversity")` for more info
@@ -3335,7 +3458,24 @@ Run `revdepcheck::cloud_details(, "evaluator")` for more info ### Devel ``` +* using log directory ‘/tmp/workdir/mapme.biodiversity/new/mapme.biodiversity.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘mapme.biodiversity/DESCRIPTION’ ... OK +* this is package ‘mapme.biodiversity’ version ‘0.3.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +Package suggested but not available for checking: ‘lwgeom’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR @@ -3345,23 +3485,41 @@ Run `revdepcheck::cloud_details(, "evaluator")` for more info ### CRAN ``` +* using log directory ‘/tmp/workdir/mapme.biodiversity/old/mapme.biodiversity.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘mapme.biodiversity/DESCRIPTION’ ... OK +* this is package ‘mapme.biodiversity’ version ‘0.3.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +Package suggested but not available for checking: ‘lwgeom’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR ``` -# expstudies +# mapping
-* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/expstudies -* Number of recursive dependencies: 59 +* Version: 1.3 +* GitHub: https://github.com/serafinialessio/mapping +* Source code: https://github.com/cran/mapping +* Date/Publication: 2021-07-22 17:40:02 UTC +* Number of recursive dependencies: 147 -Run `revdepcheck::cloud_details(, "expstudies")` for more info +Run `revdepcheck::cloud_details(, "mapping")` for more info
@@ -3370,7 +3528,23 @@ Run `revdepcheck::cloud_details(, "expstudies")` for more info ### Devel ``` +* using log directory ‘/tmp/workdir/mapping/new/mapping.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘mapping/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘mapping’ version ‘1.3’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR @@ -3380,24 +3554,40 @@ Run `revdepcheck::cloud_details(, "expstudies")` for more info ### CRAN ``` +* using log directory ‘/tmp/workdir/mapping/old/mapping.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘mapping/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘mapping’ version ‘1.3’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR ``` -# fable.prophet +# mapscanner
-* Version: 0.1.0 -* GitHub: https://github.com/mitchelloharawild/fable.prophet -* Source code: https://github.com/cran/fable.prophet -* Date/Publication: 2020-08-20 09:30:03 UTC -* Number of recursive dependencies: 108 +* Version: 0.0.6 +* GitHub: https://github.com/ropensci/mapscanner +* Source code: https://github.com/cran/mapscanner +* Date/Publication: 2021-11-25 23:10:03 UTC +* Number of recursive dependencies: 143 -Run `revdepcheck::cloud_details(, "fable.prophet")` for more info +Run `revdepcheck::cloud_details(, "mapscanner")` for more info
@@ -3406,17 +3596,19 @@ Run `revdepcheck::cloud_details(, "fable.prophet")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/fable.prophet/new/fable.prophet.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/mapscanner/new/mapscanner.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘fable.prophet/DESCRIPTION’ ... OK -* this is package ‘fable.prophet’ version ‘0.1.0’ +* checking for file ‘mapscanner/DESCRIPTION’ ... OK +* this is package ‘mapscanner’ version ‘0.0.6’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘prophet’ +Package required but not available: ‘sf’ + +Package suggested but not available for checking: ‘lwgeom’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -3431,17 +3623,19 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/fable.prophet/old/fable.prophet.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/mapscanner/old/mapscanner.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘fable.prophet/DESCRIPTION’ ... OK -* this is package ‘fable.prophet’ version ‘0.1.0’ +* checking for file ‘mapscanner/DESCRIPTION’ ... OK +* this is package ‘mapscanner’ version ‘0.0.6’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘prophet’ +Package required but not available: ‘sf’ + +Package suggested but not available for checking: ‘lwgeom’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -3453,17 +3647,17 @@ Status: 1 ERROR ``` -# finnts +# MazamaSpatialPlots
-* Version: 0.2.2 -* GitHub: https://github.com/microsoft/finnts -* Source code: https://github.com/cran/finnts -* Date/Publication: 2023-02-12 00:40:02 UTC -* Number of recursive dependencies: 210 +* Version: 0.2.0 +* GitHub: https://github.com/MazamaScience/MazamaSpatialPlots +* Source code: https://github.com/cran/MazamaSpatialPlots +* Date/Publication: 2022-11-15 21:00:08 UTC +* Number of recursive dependencies: 180 -Run `revdepcheck::cloud_details(, "finnts")` for more info +Run `revdepcheck::cloud_details(, "MazamaSpatialPlots")` for more info
@@ -3472,27 +3666,23 @@ Run `revdepcheck::cloud_details(, "finnts")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/finnts/new/finnts.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/MazamaSpatialPlots/new/MazamaSpatialPlots.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘finnts/DESCRIPTION’ ... OK -* this is package ‘finnts’ version ‘0.2.2’ +* checking for file ‘MazamaSpatialPlots/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘MazamaSpatialPlots’ version ‘0.2.0’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... OK -... - ‘best-model-selection.Rmd’ using ‘UTF-8’... OK - ‘external-regressors.Rmd’ using ‘UTF-8’... OK - ‘feature-engineering.Rmd’ using ‘UTF-8’... OK - ‘finnts.Rmd’ using ‘UTF-8’... OK - ‘hierarchical-forecasting.Rmd’ using ‘UTF-8’... OK - ‘models-used-in-finnts.Rmd’ using ‘UTF-8’... OK - ‘parallel-processing.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: OK +Status: 1 ERROR @@ -3502,43 +3692,39 @@ Status: OK ### CRAN ``` -* using log directory ‘/tmp/workdir/finnts/old/finnts.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/MazamaSpatialPlots/old/MazamaSpatialPlots.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘finnts/DESCRIPTION’ ... OK -* this is package ‘finnts’ version ‘0.2.2’ +* checking for file ‘MazamaSpatialPlots/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘MazamaSpatialPlots’ version ‘0.2.0’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... OK -... - ‘best-model-selection.Rmd’ using ‘UTF-8’... OK - ‘external-regressors.Rmd’ using ‘UTF-8’... OK - ‘feature-engineering.Rmd’ using ‘UTF-8’... OK - ‘finnts.Rmd’ using ‘UTF-8’... OK - ‘hierarchical-forecasting.Rmd’ using ‘UTF-8’... OK - ‘models-used-in-finnts.Rmd’ using ‘UTF-8’... OK - ‘parallel-processing.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: OK +Status: 1 ERROR ``` -# fipe +# NA
* Version: NA * GitHub: NA -* Source code: https://github.com/cran/fipe -* Number of recursive dependencies: 69 +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "fipe")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
@@ -3564,16 +3750,17 @@ Run `revdepcheck::cloud_details(, "fipe")` for more info ``` -# foieGras +# meteoland
-* Version: NA +* Version: 2.0.0 * GitHub: NA -* Source code: https://github.com/cran/foieGras -* Number of recursive dependencies: 134 +* Source code: https://github.com/cran/meteoland +* Date/Publication: 2023-02-17 22:20:02 UTC +* Number of recursive dependencies: 155 -Run `revdepcheck::cloud_details(, "foieGras")` for more info +Run `revdepcheck::cloud_details(, "meteoland")` for more info
@@ -3582,7 +3769,23 @@ Run `revdepcheck::cloud_details(, "foieGras")` for more info ### Devel ``` +* using log directory ‘/tmp/workdir/meteoland/new/meteoland.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘meteoland/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘meteoland’ version ‘2.0.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR @@ -3592,24 +3795,39 @@ Run `revdepcheck::cloud_details(, "foieGras")` for more info ### CRAN ``` +* using log directory ‘/tmp/workdir/meteoland/old/meteoland.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘meteoland/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘meteoland’ version ‘2.0.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR ``` -# FRK +# NA
-* Version: 2.1.5 -* GitHub: https://github.com/andrewzm/FRK -* Source code: https://github.com/cran/FRK -* Date/Publication: 2023-02-01 10:20:02 UTC -* Number of recursive dependencies: 156 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "FRK")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
@@ -3618,74 +3836,69 @@ Run `revdepcheck::cloud_details(, "FRK")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/FRK/new/FRK.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘FRK/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘FRK’ version ‘2.1.5’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... ---- failed re-building ‘FRK_non-Gaussian.Rnw’ -SUMMARY: processing the following files failed: - ‘FRK_intro.Rnw’ ‘FRK_non-Gaussian.Rnw’ -Error: Vignette re-building failed. -Execution halted -* DONE -Status: 1 ERROR, 1 WARNING, 2 NOTEs + + + +``` +### CRAN + +``` + ``` -### CRAN +# NA + +
+ +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 + +Run `revdepcheck::cloud_details(, "NA")` for more info + +
+ +## Error before installation + +### Devel ``` -* using log directory ‘/tmp/workdir/FRK/old/FRK.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘FRK/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘FRK’ version ‘2.1.5’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... ---- failed re-building ‘FRK_non-Gaussian.Rnw’ -SUMMARY: processing the following files failed: - ‘FRK_intro.Rnw’ ‘FRK_non-Gaussian.Rnw’ -Error: Vignette re-building failed. -Execution halted -* DONE -Status: 1 ERROR, 1 WARNING, 2 NOTEs + + + +``` +### CRAN + +``` + ``` -# fsr +# motif
-* Version: 1.0.2 -* GitHub: https://github.com/accarniel/fsr -* Source code: https://github.com/cran/fsr -* Date/Publication: 2022-07-05 02:50:02 UTC -* Number of recursive dependencies: 71 +* Version: 0.5.2 +* GitHub: https://github.com/Nowosad/motif +* Source code: https://github.com/cran/motif +* Date/Publication: 2022-06-07 05:10:02 UTC +* Number of recursive dependencies: 86 -Run `revdepcheck::cloud_details(, "fsr")` for more info +Run `revdepcheck::cloud_details(, "motif")` for more info
@@ -3694,18 +3907,17 @@ Run `revdepcheck::cloud_details(, "fsr")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/fsr/new/fsr.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/motif/new/motif.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘fsr/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘fsr’ version ‘1.0.2’ +* checking for file ‘motif/DESCRIPTION’ ... OK +* this is package ‘motif’ version ‘0.5.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'sf', 'lwgeom' +Package required but not available: ‘sf’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -3720,18 +3932,17 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/fsr/old/fsr.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/motif/old/motif.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘fsr/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘fsr’ version ‘1.0.2’ +* checking for file ‘motif/DESCRIPTION’ ... OK +* this is package ‘motif’ version ‘0.5.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'sf', 'lwgeom' +Package required but not available: ‘sf’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -3743,17 +3954,17 @@ Status: 1 ERROR ``` -# geocmeans +# MSclassifR
-* Version: 0.3.3 -* GitHub: https://github.com/JeremyGelb/geocmeans -* Source code: https://github.com/cran/geocmeans -* Date/Publication: 2023-02-07 01:02:31 UTC -* Number of recursive dependencies: 197 +* Version: 0.3.1 +* GitHub: https://github.com/agodmer/MSclassifR_examples +* Source code: https://github.com/cran/MSclassifR +* Date/Publication: 2022-09-29 06:10:12 UTC +* Number of recursive dependencies: 227 -Run `revdepcheck::cloud_details(, "geocmeans")` for more info +Run `revdepcheck::cloud_details(, "MSclassifR")` for more info
@@ -3762,18 +3973,18 @@ Run `revdepcheck::cloud_details(, "geocmeans")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/geocmeans/new/geocmeans.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/MSclassifR/new/MSclassifR.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘geocmeans/DESCRIPTION’ ... OK +* checking for file ‘MSclassifR/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘geocmeans’ version ‘0.3.3’ +* this is package ‘MSclassifR’ version ‘0.3.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'tmap', 'sf' +Package required but not available: ‘VSURF’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -3788,18 +3999,18 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/geocmeans/old/geocmeans.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/MSclassifR/old/MSclassifR.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘geocmeans/DESCRIPTION’ ... OK +* checking for file ‘MSclassifR/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘geocmeans’ version ‘0.3.3’ +* this is package ‘MSclassifR’ version ‘0.3.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'tmap', 'sf' +Package required but not available: ‘VSURF’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -3811,81 +4022,17 @@ Status: 1 ERROR ``` -# GeodesiCL +# naturaList
-* Version: 1.0.0 -* GitHub: https://github.com/diegoalarc/GeodesiCL -* Source code: https://github.com/cran/GeodesiCL -* Date/Publication: 2021-05-25 12:20:02 UTC +* Version: 0.5.0 +* GitHub: https://github.com/avrodrigues/naturaList +* Source code: https://github.com/cran/naturaList +* Date/Publication: 2022-04-20 13:30:02 UTC * Number of recursive dependencies: 129 -Run `revdepcheck::cloud_details(, "GeodesiCL")` for more info - -
- -## In both - -* checking whether package ‘GeodesiCL’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/GeodesiCL/new/GeodesiCL.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘GeodesiCL’ ... -** package ‘GeodesiCL’ 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(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘sf’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘GeodesiCL’ -* removing ‘/tmp/workdir/GeodesiCL/new/GeodesiCL.Rcheck/GeodesiCL’ - - -``` -### CRAN - -``` -* installing *source* package ‘GeodesiCL’ ... -** package ‘GeodesiCL’ 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(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘sf’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘GeodesiCL’ -* removing ‘/tmp/workdir/GeodesiCL/old/GeodesiCL.Rcheck/GeodesiCL’ - - -``` -# ggchangepoint - -
- -* Version: 0.1.0 -* GitHub: NA -* Source code: https://github.com/cran/ggchangepoint -* Date/Publication: 2022-02-24 08:20:04 UTC -* Number of recursive dependencies: 81 - -Run `revdepcheck::cloud_details(, "ggchangepoint")` for more info +Run `revdepcheck::cloud_details(, "naturaList")` for more info
@@ -3894,27 +4041,25 @@ Run `revdepcheck::cloud_details(, "ggchangepoint")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/ggchangepoint/new/ggchangepoint.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/naturaList/new/naturaList.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ggchangepoint/DESCRIPTION’ ... OK +* checking for file ‘naturaList/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘ggchangepoint’ version ‘0.1.0’ +* this is package ‘naturaList’ version ‘0.5.0’ * package encoding: UTF-8 * checking package namespace information ... 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 ... NONE - ‘introduction.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +Package suggested but not available for checking: ‘lwgeom’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: OK +Status: 1 ERROR @@ -3924,44 +4069,42 @@ Status: OK ### CRAN ``` -* using log directory ‘/tmp/workdir/ggchangepoint/old/ggchangepoint.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/naturaList/old/naturaList.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ggchangepoint/DESCRIPTION’ ... OK +* checking for file ‘naturaList/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘ggchangepoint’ version ‘0.1.0’ +* this is package ‘naturaList’ version ‘0.5.0’ * package encoding: UTF-8 * checking package namespace information ... 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 ... NONE - ‘introduction.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +Package suggested but not available for checking: ‘lwgeom’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: OK +Status: 1 ERROR ``` -# ggOceanMaps +# ncdfgeom
-* Version: 1.3.4 -* GitHub: https://github.com/MikkoVihtakari/ggOceanMaps -* Source code: https://github.com/cran/ggOceanMaps -* Date/Publication: 2022-09-26 11:50:02 UTC -* Number of recursive dependencies: 92 +* Version: 1.1.4 +* GitHub: https://github.com/USGS-R/ncdfgeom +* Source code: https://github.com/cran/ncdfgeom +* Date/Publication: 2022-11-08 22:40:02 UTC +* Number of recursive dependencies: 90 -Run `revdepcheck::cloud_details(, "ggOceanMaps")` for more info +Run `revdepcheck::cloud_details(, "ncdfgeom")` for more info
@@ -3970,14 +4113,14 @@ Run `revdepcheck::cloud_details(, "ggOceanMaps")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/ggOceanMaps/new/ggOceanMaps.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/ncdfgeom/new/ncdfgeom.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ggOceanMaps/DESCRIPTION’ ... OK +* checking for file ‘ncdfgeom/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘ggOceanMaps’ version ‘1.3.4’ +* this is package ‘ncdfgeom’ version ‘1.1.4’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -3996,14 +4139,14 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/ggOceanMaps/old/ggOceanMaps.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/ncdfgeom/old/ncdfgeom.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ggOceanMaps/DESCRIPTION’ ... OK +* checking for file ‘ncdfgeom/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘ggOceanMaps’ version ‘1.3.4’ +* this is package ‘ncdfgeom’ version ‘1.1.4’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -4019,17 +4162,17 @@ Status: 1 ERROR ``` -# ggspatial +# nhdplusTools
-* Version: 1.1.7 -* GitHub: https://github.com/paleolimbot/ggspatial -* Source code: https://github.com/cran/ggspatial -* Date/Publication: 2022-11-24 10:00:02 UTC -* Number of recursive dependencies: 105 +* Version: 0.6.2 +* GitHub: https://github.com/doi-usgs/nhdplusTools +* Source code: https://github.com/cran/nhdplusTools +* Date/Publication: 2023-03-10 09:40:14 UTC +* Number of recursive dependencies: 167 -Run `revdepcheck::cloud_details(, "ggspatial")` for more info +Run `revdepcheck::cloud_details(, "nhdplusTools")` for more info
@@ -4038,14 +4181,14 @@ Run `revdepcheck::cloud_details(, "ggspatial")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/ggspatial/new/ggspatial.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/nhdplusTools/new/nhdplusTools.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ggspatial/DESCRIPTION’ ... OK +* checking for file ‘nhdplusTools/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘ggspatial’ version ‘1.1.7’ +* this is package ‘nhdplusTools’ version ‘0.6.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -4066,14 +4209,14 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/ggspatial/old/ggspatial.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/nhdplusTools/old/nhdplusTools.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ggspatial/DESCRIPTION’ ... OK +* checking for file ‘nhdplusTools/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘ggspatial’ version ‘1.1.7’ +* this is package ‘nhdplusTools’ version ‘0.6.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -4091,17 +4234,17 @@ Status: 1 ERROR ``` -# ggstatsplot +# nhdR
-* Version: 0.11.0 -* GitHub: https://github.com/IndrajeetPatil/ggstatsplot -* Source code: https://github.com/cran/ggstatsplot -* Date/Publication: 2023-02-15 15:30:02 UTC -* Number of recursive dependencies: 169 +* Version: 0.5.9 +* GitHub: https://github.com/jsta/nhdR +* Source code: https://github.com/cran/nhdR +* Date/Publication: 2022-10-09 02:10:02 UTC +* Number of recursive dependencies: 104 -Run `revdepcheck::cloud_details(, "ggstatsplot")` for more info +Run `revdepcheck::cloud_details(, "nhdR")` for more info
@@ -4110,27 +4253,24 @@ Run `revdepcheck::cloud_details(, "ggstatsplot")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/ggstatsplot/new/ggstatsplot.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/nhdR/new/nhdR.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ggstatsplot/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘ggstatsplot’ version ‘0.11.0’ +* checking for file ‘nhdR/DESCRIPTION’ ... OK +* this is package ‘nhdR’ version ‘0.5.9’ * package encoding: UTF-8 * checking package namespace information ... 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 ... NONE - ‘additional.Rmd’ using ‘UTF-8’... OK - ‘ggstatsplot.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +Package suggested but not available for checking: ‘lwgeom’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 1 NOTE +Status: 1 ERROR @@ -4140,44 +4280,40 @@ Status: 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/ggstatsplot/old/ggstatsplot.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/nhdR/old/nhdR.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ggstatsplot/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘ggstatsplot’ version ‘0.11.0’ +* checking for file ‘nhdR/DESCRIPTION’ ... OK +* this is package ‘nhdR’ version ‘0.5.9’ * package encoding: UTF-8 * checking package namespace information ... 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 ... NONE - ‘additional.Rmd’ using ‘UTF-8’... OK - ‘ggstatsplot.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +Package suggested but not available for checking: ‘lwgeom’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 1 NOTE +Status: 1 ERROR ``` -# glottospace +# NA
-* Version: 0.0.112 -* GitHub: https://github.com/SietzeN/glottospace -* Source code: https://github.com/cran/glottospace -* Date/Publication: 2022-04-12 12:42:29 UTC -* Number of recursive dependencies: 141 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "glottospace")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
@@ -4186,18 +4322,54 @@ Run `revdepcheck::cloud_details(, "glottospace")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/glottospace/new/glottospace.Rcheck’ -* using R version 4.2.1 (2022-06-23) + + + + + + +``` +### CRAN + +``` + + + + + + +``` +# occCite + +
+ +* Version: 0.5.6 +* GitHub: https://github.com/ropensci/occCite +* Source code: https://github.com/cran/occCite +* Date/Publication: 2022-08-05 11:40:02 UTC +* Number of recursive dependencies: 176 + +Run `revdepcheck::cloud_details(, "occCite")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/occCite/new/occCite.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘glottospace/DESCRIPTION’ ... OK +* checking for file ‘occCite/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘glottospace’ version ‘0.0.112’ +* this is package ‘occCite’ version ‘0.5.6’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'sf', 'tmap' +Package required but not available: ‘BIEN’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -4212,18 +4384,18 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/glottospace/old/glottospace.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/occCite/old/occCite.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘glottospace/DESCRIPTION’ ... OK +* checking for file ‘occCite/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘glottospace’ version ‘0.0.112’ +* this is package ‘occCite’ version ‘0.5.6’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'sf', 'tmap' +Package required but not available: ‘BIEN’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -4235,17 +4407,17 @@ Status: 1 ERROR ``` -# GREENeR +# oceanexplorer
-* Version: 0.1.1 -* GitHub: https://github.com/calfarog/GREENeR -* Source code: https://github.com/cran/GREENeR -* Date/Publication: 2022-09-07 12:10:02 UTC -* Number of recursive dependencies: 133 +* Version: 0.0.2 +* GitHub: https://github.com/UtrechtUniversity/oceanexplorer +* Source code: https://github.com/cran/oceanexplorer +* Date/Publication: 2022-09-15 09:10:08 UTC +* Number of recursive dependencies: 158 -Run `revdepcheck::cloud_details(, "GREENeR")` for more info +Run `revdepcheck::cloud_details(, "oceanexplorer")` for more info
@@ -4254,18 +4426,17 @@ Run `revdepcheck::cloud_details(, "GREENeR")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/GREENeR/new/GREENeR.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/oceanexplorer/new/oceanexplorer.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘GREENeR/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘GREENeR’ version ‘0.1.1’ +* checking for file ‘oceanexplorer/DESCRIPTION’ ... OK +* this is package ‘oceanexplorer’ version ‘0.0.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'sf', 'tmap' +Package required but not available: ‘sf’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -4280,18 +4451,17 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/GREENeR/old/GREENeR.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/oceanexplorer/old/oceanexplorer.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘GREENeR/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘GREENeR’ version ‘0.1.1’ +* checking for file ‘oceanexplorer/DESCRIPTION’ ... OK +* this is package ‘oceanexplorer’ version ‘0.0.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'sf', 'tmap' +Package required but not available: ‘sf’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -4303,17 +4473,17 @@ Status: 1 ERROR ``` -# gtfs2gps +# oceanis
-* Version: 2.1-0 -* GitHub: https://github.com/ipeaGIT/gtfs2gps -* Source code: https://github.com/cran/gtfs2gps -* Date/Publication: 2022-08-16 18:00:02 UTC -* Number of recursive dependencies: 88 +* Version: 1.8.5 +* GitHub: https://github.com/insee-psar-at/oceanis-package +* Source code: https://github.com/cran/oceanis +* Date/Publication: 2022-07-13 13:10:02 UTC +* Number of recursive dependencies: 117 -Run `revdepcheck::cloud_details(, "gtfs2gps")` for more info +Run `revdepcheck::cloud_details(, "oceanis")` for more info
@@ -4322,14 +4492,14 @@ Run `revdepcheck::cloud_details(, "gtfs2gps")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/gtfs2gps/new/gtfs2gps.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/oceanis/new/oceanis.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘gtfs2gps/DESCRIPTION’ ... OK +* checking for file ‘oceanis/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘gtfs2gps’ version ‘2.1-0’ +* this is package ‘oceanis’ version ‘1.8.5’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -4348,14 +4518,14 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/gtfs2gps/old/gtfs2gps.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/oceanis/old/oceanis.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘gtfs2gps/DESCRIPTION’ ... OK +* checking for file ‘oceanis/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘gtfs2gps’ version ‘2.1-0’ +* this is package ‘oceanis’ version ‘1.8.5’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -4371,17 +4541,17 @@ Status: 1 ERROR ``` -# gumboot +# OpenLand
-* Version: 1.0.0 -* GitHub: NA -* Source code: https://github.com/cran/gumboot -* Date/Publication: 2021-08-06 08:10:01 UTC -* Number of recursive dependencies: 101 +* Version: 1.0.2 +* GitHub: https://github.com/reginalexavier/OpenLand +* Source code: https://github.com/cran/OpenLand +* Date/Publication: 2021-11-02 07:20:02 UTC +* Number of recursive dependencies: 121 -Run `revdepcheck::cloud_details(, "gumboot")` for more info +Run `revdepcheck::cloud_details(, "OpenLand")` for more info
@@ -4390,5729 +4560,27 @@ Run `revdepcheck::cloud_details(, "gumboot")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/gumboot/new/gumboot.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/OpenLand/new/OpenLand.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘gumboot/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘gumboot’ version ‘1.0.0’ +* checking for file ‘OpenLand/DESCRIPTION’ ... OK +* this is package ‘OpenLand’ version ‘1.0.2’ * package encoding: UTF-8 * checking package namespace information ... OK +* checking package dependencies ... OK ... -* checking if there is a namespace ... OK -* checking for executable files ... OK -* checking for hidden files and directories ... OK -* checking for portable file names ... OK -* checking for sufficient/correct file permissions ... OK -* checking whether package ‘gumboot’ can be installed ... ERROR -Installation failed. -See ‘/tmp/workdir/gumboot/new/gumboot.Rcheck/00install.out’ for details. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/gumboot/old/gumboot.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘gumboot/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘gumboot’ version ‘1.0.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... -* checking if there is a namespace ... OK -* checking for executable files ... OK -* checking for hidden files and directories ... OK -* checking for portable file names ... OK -* checking for sufficient/correct file permissions ... OK -* checking whether package ‘gumboot’ can be installed ... ERROR -Installation failed. -See ‘/tmp/workdir/gumboot/old/gumboot.Rcheck/00install.out’ for details. -* DONE -Status: 1 ERROR - - - - - -``` -# gwavr - -
- -* Version: 0.2.0 -* GitHub: https://github.com/joshualerickson/gwavr -* Source code: https://github.com/cran/gwavr -* Date/Publication: 2022-03-28 21:30:02 UTC -* Number of recursive dependencies: 140 - -Run `revdepcheck::cloud_details(, "gwavr")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/gwavr/new/gwavr.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘gwavr/DESCRIPTION’ ... OK -* this is package ‘gwavr’ version ‘0.2.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'nhdplusTools', 'sf' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/gwavr/old/gwavr.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘gwavr/DESCRIPTION’ ... OK -* this is package ‘gwavr’ version ‘0.2.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'nhdplusTools', 'sf' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# GWPR.light - -
- -* Version: 0.2.1 -* GitHub: https://github.com/MichaelChaoLi-cpu/GWPR.light -* Source code: https://github.com/cran/GWPR.light -* Date/Publication: 2022-06-21 11:00:13 UTC -* Number of recursive dependencies: 129 - -Run `revdepcheck::cloud_details(, "GWPR.light")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/GWPR.light/new/GWPR.light.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘GWPR.light/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘GWPR.light’ version ‘0.2.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... -* checking if there is a namespace ... OK -* checking for executable files ... OK -* checking for hidden files and directories ... OK -* checking for portable file names ... OK -* checking for sufficient/correct file permissions ... OK -* checking whether package ‘GWPR.light’ can be installed ... ERROR -Installation failed. -See ‘/tmp/workdir/GWPR.light/new/GWPR.light.Rcheck/00install.out’ for details. -* DONE -Status: 1 ERROR, 1 NOTE - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/GWPR.light/old/GWPR.light.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘GWPR.light/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘GWPR.light’ version ‘0.2.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... -* checking if there is a namespace ... OK -* checking for executable files ... OK -* checking for hidden files and directories ... OK -* checking for portable file names ... OK -* checking for sufficient/correct file permissions ... OK -* checking whether package ‘GWPR.light’ can be installed ... ERROR -Installation failed. -See ‘/tmp/workdir/GWPR.light/old/GWPR.light.Rcheck/00install.out’ for details. -* DONE -Status: 1 ERROR, 1 NOTE - - - - - -``` -# happign - -
- -* Version: 0.1.8 -* GitHub: https://github.com/paul-carteron/happign -* Source code: https://github.com/cran/happign -* Date/Publication: 2023-01-30 20:50:02 UTC -* Number of recursive dependencies: 121 - -Run `revdepcheck::cloud_details(, "happign")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/happign/new/happign.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘happign/DESCRIPTION’ ... OK -* this is package ‘happign’ version ‘0.1.8’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘tmap’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/happign/old/happign.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘happign/DESCRIPTION’ ... OK -* this is package ‘happign’ version ‘0.1.8’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘tmap’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# healthyR.ai - -
- -* Version: 0.0.12 -* GitHub: https://github.com/spsanderson/healthyR.ai -* Source code: https://github.com/cran/healthyR.ai -* Date/Publication: 2023-02-01 18:40:06 UTC -* Number of recursive dependencies: 189 - -Run `revdepcheck::cloud_details(, "healthyR.ai")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/healthyR.ai/new/healthyR.ai.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘healthyR.ai/DESCRIPTION’ ... OK -* this is package ‘healthyR.ai’ version ‘0.0.12’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... 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 - ‘auto-kmeans.Rmd’ using ‘UTF-8’... OK - ‘getting-started.Rmd’ using ‘UTF-8’... OK - ‘kmeans-umap.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: OK - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/healthyR.ai/old/healthyR.ai.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘healthyR.ai/DESCRIPTION’ ... OK -* this is package ‘healthyR.ai’ version ‘0.0.12’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... 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 - ‘auto-kmeans.Rmd’ using ‘UTF-8’... OK - ‘getting-started.Rmd’ using ‘UTF-8’... OK - ‘kmeans-umap.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: OK - - - - - -``` -# healthyR.ts - -
- -* Version: 0.2.7 -* GitHub: https://github.com/spsanderson/healthyR.ts -* Source code: https://github.com/cran/healthyR.ts -* Date/Publication: 2023-01-28 14:50:02 UTC -* Number of recursive dependencies: 191 - -Run `revdepcheck::cloud_details(, "healthyR.ts")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/healthyR.ts/new/healthyR.ts.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘healthyR.ts/DESCRIPTION’ ... OK -* this is package ‘healthyR.ts’ version ‘0.2.7’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... 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 ... NONE - ‘getting-started.Rmd’ using ‘UTF-8’... OK - ‘using-tidy-fft.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/healthyR.ts/old/healthyR.ts.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘healthyR.ts/DESCRIPTION’ ... OK -* this is package ‘healthyR.ts’ version ‘0.2.7’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... 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 ... NONE - ‘getting-started.Rmd’ using ‘UTF-8’... OK - ‘using-tidy-fft.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - - - - - -``` -# healthyverse - -
- -* Version: 1.0.3 -* GitHub: https://github.com/spsanderson/healthyverse -* Source code: https://github.com/cran/healthyverse -* Date/Publication: 2023-02-21 20:40:02 UTC -* Number of recursive dependencies: 207 - -Run `revdepcheck::cloud_details(, "healthyverse")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/healthyverse/new/healthyverse.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘healthyverse/DESCRIPTION’ ... OK -* this is package ‘healthyverse’ version ‘1.0.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... 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 ... NONE - ‘getting-started.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/healthyverse/old/healthyverse.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘healthyverse/DESCRIPTION’ ... OK -* this is package ‘healthyverse’ version ‘1.0.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... 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 ... NONE - ‘getting-started.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - - - - - -``` -# himach - -
- -* Version: 0.3.1 -* GitHub: https://github.com/david6marsh/himach -* Source code: https://github.com/cran/himach -* Date/Publication: 2022-12-05 09:30:02 UTC -* Number of recursive dependencies: 108 - -Run `revdepcheck::cloud_details(, "himach")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/himach/new/himach.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘himach/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘himach’ version ‘0.3.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'lwgeom', 'sf' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/himach/old/himach.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘himach/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘himach’ version ‘0.3.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'lwgeom', 'sf' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# historicalborrowlong - -
- -* Version: 0.0.5 -* GitHub: https://github.com/wlandau/historicalborrowlong -* Source code: https://github.com/cran/historicalborrowlong -* Date/Publication: 2022-09-13 10:20:06 UTC -* Number of recursive dependencies: 107 - -Run `revdepcheck::cloud_details(, "historicalborrowlong")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/historicalborrowlong/new/historicalborrowlong.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘historicalborrowlong/DESCRIPTION’ ... OK -* this is package ‘historicalborrowlong’ version ‘0.0.5’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'rstan', 'trialr' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/historicalborrowlong/old/historicalborrowlong.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘historicalborrowlong/DESCRIPTION’ ... OK -* this is package ‘historicalborrowlong’ version ‘0.0.5’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'rstan', 'trialr' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# HYPEtools - -
- -* Version: 1.2.0 -* GitHub: https://github.com/rcapell/HYPEtools -* Source code: https://github.com/cran/HYPEtools -* Date/Publication: 2023-02-10 08:50:06 UTC -* Number of recursive dependencies: 174 - -Run `revdepcheck::cloud_details(, "HYPEtools")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/HYPEtools/new/HYPEtools.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘HYPEtools/DESCRIPTION’ ... OK -* this is package ‘HYPEtools’ version ‘1.2.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/HYPEtools/old/HYPEtools.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘HYPEtools/DESCRIPTION’ ... OK -* this is package ‘HYPEtools’ version ‘1.2.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# hypsoLoop - -
- -* Version: 0.2.0 -* GitHub: NA -* Source code: https://github.com/cran/hypsoLoop -* Date/Publication: 2022-02-08 09:00:02 UTC -* Number of recursive dependencies: 109 - -Run `revdepcheck::cloud_details(, "hypsoLoop")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/hypsoLoop/new/hypsoLoop.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘hypsoLoop/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘hypsoLoop’ version ‘0.2.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/hypsoLoop/old/hypsoLoop.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘hypsoLoop/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘hypsoLoop’ version ‘0.2.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# incidence2 - -
- -* Version: 1.2.3 -* GitHub: https://github.com/reconverse/incidence2 -* Source code: https://github.com/cran/incidence2 -* Date/Publication: 2021-11-07 22:00:02 UTC -* Number of recursive dependencies: 87 - -Run `revdepcheck::cloud_details(, "incidence2")` for more info - -
- -## In both - -* checking whether package ‘incidence2’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/incidence2/new/incidence2.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘incidence2’ ... -** package ‘incidence2’ 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 : The `x` argument of `as_tibble()` can't be missing as of tibble 3.0.0. -Error: unable to load R code in package ‘incidence2’ -Execution halted -ERROR: lazy loading failed for package ‘incidence2’ -* removing ‘/tmp/workdir/incidence2/new/incidence2.Rcheck/incidence2’ - - -``` -### CRAN - -``` -* installing *source* package ‘incidence2’ ... -** package ‘incidence2’ 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 : The `x` argument of `as_tibble()` can't be missing as of tibble 3.0.0. -Error: unable to load R code in package ‘incidence2’ -Execution halted -ERROR: lazy loading failed for package ‘incidence2’ -* removing ‘/tmp/workdir/incidence2/old/incidence2.Rcheck/incidence2’ - - -``` -# INSPECTumours - -
- -* Version: 0.1.0 -* GitHub: NA -* Source code: https://github.com/cran/INSPECTumours -* Date/Publication: 2022-05-06 12:10:02 UTC -* Number of recursive dependencies: 175 - -Run `revdepcheck::cloud_details(, "INSPECTumours")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/INSPECTumours/new/INSPECTumours.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘INSPECTumours/DESCRIPTION’ ... OK -* this is package ‘INSPECTumours’ version ‘0.1.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘brms’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/INSPECTumours/old/INSPECTumours.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘INSPECTumours/DESCRIPTION’ ... OK -* this is package ‘INSPECTumours’ version ‘0.1.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘brms’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# intSDM - -
- -* Version: 1.0.5 -* GitHub: NA -* Source code: https://github.com/cran/intSDM -* Date/Publication: 2023-02-17 09:00:02 UTC -* Number of recursive dependencies: 154 - -Run `revdepcheck::cloud_details(, "intSDM")` for more info - -
- -## In both - -* checking whether package ‘intSDM’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/intSDM/new/intSDM.Rcheck/00install.out’ for details. - ``` - -* checking package dependencies ... NOTE - ``` - Package suggested but not available for checking: ‘sf’ - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘intSDM’ ... -** package ‘intSDM’ 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 ‘PointedSDMs’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]): - there is no package called ‘sf’ -Execution halted -ERROR: lazy loading failed for package ‘intSDM’ -* removing ‘/tmp/workdir/intSDM/new/intSDM.Rcheck/intSDM’ - - -``` -### CRAN - -``` -* installing *source* package ‘intSDM’ ... -** package ‘intSDM’ 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 ‘PointedSDMs’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]): - there is no package called ‘sf’ -Execution halted -ERROR: lazy loading failed for package ‘intSDM’ -* removing ‘/tmp/workdir/intSDM/old/intSDM.Rcheck/intSDM’ - - -``` -# IRexamples - -
- -* Version: 0.0.2 -* GitHub: https://github.com/vinhdizzo/IRexamples -* Source code: https://github.com/cran/IRexamples -* Date/Publication: 2022-08-15 07:10:19 UTC -* Number of recursive dependencies: 184 - -Run `revdepcheck::cloud_details(, "IRexamples")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/IRexamples/new/IRexamples.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘IRexamples/DESCRIPTION’ ... OK -* this is package ‘IRexamples’ version ‘0.0.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'rstanarm', 'sf' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/IRexamples/old/IRexamples.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘IRexamples/DESCRIPTION’ ... OK -* this is package ‘IRexamples’ version ‘0.0.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'rstanarm', 'sf' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# IsoCorrectoR - -
- -* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/IsoCorrectoR -* Number of recursive dependencies: 70 - -Run `revdepcheck::cloud_details(, "IsoCorrectoR")` for more info - -
- -## Error before installation - -### Devel - -``` - - - - - - -``` -### CRAN - -``` - - - - - - -``` -# itsdm - -
- -* Version: 0.2.0 -* GitHub: https://github.com/LLeiSong/itsdm -* Source code: https://github.com/cran/itsdm -* Date/Publication: 2023-01-15 14:30:08 UTC -* Number of recursive dependencies: 84 - -Run `revdepcheck::cloud_details(, "itsdm")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/itsdm/new/itsdm.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘itsdm/DESCRIPTION’ ... OK -* this is package ‘itsdm’ version ‘0.2.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/itsdm/old/itsdm.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘itsdm/DESCRIPTION’ ... OK -* this is package ‘itsdm’ version ‘0.2.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# jpgrid - -
- -* Version: 0.3.0 -* GitHub: https://github.com/UchidaMizuki/jpgrid -* Source code: https://github.com/cran/jpgrid -* Date/Publication: 2023-02-11 08:50:06 UTC -* Number of recursive dependencies: 57 - -Run `revdepcheck::cloud_details(, "jpgrid")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/jpgrid/new/jpgrid.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘jpgrid/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘jpgrid’ version ‘0.3.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/jpgrid/old/jpgrid.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘jpgrid/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘jpgrid’ version ‘0.3.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# loon.ggplot - -
- -* Version: 1.3.3 -* GitHub: https://github.com/great-northern-diver/loon.ggplot -* Source code: https://github.com/cran/loon.ggplot -* Date/Publication: 2022-11-12 22:30:02 UTC -* Number of recursive dependencies: 104 - -Run `revdepcheck::cloud_details(, "loon.ggplot")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/loon.ggplot/new/loon.ggplot.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘loon.ggplot/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘loon.ggplot’ version ‘1.3.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘loon’ - -Package suggested but not available for checking: ‘zenplots’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/loon.ggplot/old/loon.ggplot.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘loon.ggplot/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘loon.ggplot’ version ‘1.3.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘loon’ - -Package suggested but not available for checking: ‘zenplots’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# 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.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘loon.shiny/DESCRIPTION’ ... OK -* checking extension type ... Package -* 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.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘loon.shiny/DESCRIPTION’ ... OK -* checking extension type ... Package -* 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 - - - - - -``` -# MainExistingDatasets - -
- -* Version: 1.0.1 -* GitHub: NA -* Source code: https://github.com/cran/MainExistingDatasets -* Date/Publication: 2022-06-27 14:10:02 UTC -* Number of recursive dependencies: 131 - -Run `revdepcheck::cloud_details(, "MainExistingDatasets")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/MainExistingDatasets/new/MainExistingDatasets.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘MainExistingDatasets/DESCRIPTION’ ... OK -* this is package ‘MainExistingDatasets’ version ‘1.0.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'sf', 'tmap', 'tmaptools' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/MainExistingDatasets/old/MainExistingDatasets.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘MainExistingDatasets/DESCRIPTION’ ... OK -* this is package ‘MainExistingDatasets’ version ‘1.0.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'sf', 'tmap', 'tmaptools' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# manydata - -
- -* Version: 0.8.2 -* GitHub: https://github.com/globalgov/manydata -* Source code: https://github.com/cran/manydata -* Date/Publication: 2022-11-19 13:00:10 UTC -* Number of recursive dependencies: 169 - -Run `revdepcheck::cloud_details(, "manydata")` for more info - -
- -## In both - -* checking whether package ‘manydata’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/manydata/new/manydata.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘manydata’ ... -** package ‘manydata’ 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]]) : - there is no package called ‘sf’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘manydata’ -* removing ‘/tmp/workdir/manydata/new/manydata.Rcheck/manydata’ - - -``` -### CRAN - -``` -* installing *source* package ‘manydata’ ... -** package ‘manydata’ 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]]) : - there is no package called ‘sf’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘manydata’ -* removing ‘/tmp/workdir/manydata/old/manydata.Rcheck/manydata’ - - -``` -# mapboxapi - -
- -* Version: 0.5 -* GitHub: NA -* Source code: https://github.com/cran/mapboxapi -* Date/Publication: 2022-09-15 16:06:12 UTC -* Number of recursive dependencies: 154 - -Run `revdepcheck::cloud_details(, "mapboxapi")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/mapboxapi/new/mapboxapi.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘mapboxapi/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘mapboxapi’ version ‘0.5’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘tmap’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/mapboxapi/old/mapboxapi.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘mapboxapi/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘mapboxapi’ version ‘0.5’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘tmap’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# mapme.biodiversity - -
- -* Version: 0.3.0 -* GitHub: https://github.com/mapme-initiative/mapme.biodiversity -* Source code: https://github.com/cran/mapme.biodiversity -* Date/Publication: 2023-01-21 14:10:02 UTC -* Number of recursive dependencies: 131 - -Run `revdepcheck::cloud_details(, "mapme.biodiversity")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/mapme.biodiversity/new/mapme.biodiversity.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘mapme.biodiversity/DESCRIPTION’ ... OK -* this is package ‘mapme.biodiversity’ version ‘0.3.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘lwgeom’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/mapme.biodiversity/old/mapme.biodiversity.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘mapme.biodiversity/DESCRIPTION’ ... OK -* this is package ‘mapme.biodiversity’ version ‘0.3.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘lwgeom’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# mapping - -
- -* Version: 1.3 -* GitHub: https://github.com/serafinialessio/mapping -* Source code: https://github.com/cran/mapping -* Date/Publication: 2021-07-22 17:40:02 UTC -* Number of recursive dependencies: 147 - -Run `revdepcheck::cloud_details(, "mapping")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/mapping/new/mapping.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘mapping/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘mapping’ version ‘1.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'tmap', 'sf', 'tmaptools' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/mapping/old/mapping.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘mapping/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘mapping’ version ‘1.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'tmap', 'sf', 'tmaptools' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# mapsapi - -
- -* Version: 0.5.3 -* GitHub: https://github.com/michaeldorman/mapsapi -* Source code: https://github.com/cran/mapsapi -* Date/Publication: 2022-01-13 13:22:41 UTC -* Number of recursive dependencies: 89 - -Run `revdepcheck::cloud_details(, "mapsapi")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/mapsapi/new/mapsapi.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘mapsapi/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘mapsapi’ version ‘0.5.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/mapsapi/old/mapsapi.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘mapsapi/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘mapsapi’ version ‘0.5.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# mapscanner - -
- -* Version: 0.0.6 -* GitHub: https://github.com/ropensci/mapscanner -* Source code: https://github.com/cran/mapscanner -* Date/Publication: 2021-11-25 23:10:03 UTC -* Number of recursive dependencies: 143 - -Run `revdepcheck::cloud_details(, "mapscanner")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/mapscanner/new/mapscanner.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘mapscanner/DESCRIPTION’ ... OK -* this is package ‘mapscanner’ version ‘0.0.6’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘lwgeom’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/mapscanner/old/mapscanner.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘mapscanner/DESCRIPTION’ ... OK -* this is package ‘mapscanner’ version ‘0.0.6’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘lwgeom’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# marginaleffects - -
- -* Version: 0.11.0 -* GitHub: https://github.com/vincentarelbundock/marginaleffects -* Source code: https://github.com/cran/marginaleffects -* Date/Publication: 2023-03-10 10:10:02 UTC -* Number of recursive dependencies: 366 - -Run `revdepcheck::cloud_details(, "marginaleffects")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/marginaleffects/new/marginaleffects.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘marginaleffects/DESCRIPTION’ ... OK -* this is package ‘marginaleffects’ version ‘0.11.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... -* checking for unstated dependencies in examples ... OK -* checking line endings in C/C++/Fortran sources/headers ... OK -* checking compiled code ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘spelling.R’ - Running ‘tinytest.R’ -* DONE -Status: 2 NOTEs - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/marginaleffects/old/marginaleffects.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘marginaleffects/DESCRIPTION’ ... OK -* this is package ‘marginaleffects’ version ‘0.11.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... -* checking for unstated dependencies in examples ... OK -* checking line endings in C/C++/Fortran sources/headers ... OK -* checking compiled code ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘spelling.R’ - Running ‘tinytest.R’ -* DONE -Status: 2 NOTEs - - - - - -``` -# MazamaSpatialPlots - -
- -* Version: 0.2.0 -* GitHub: https://github.com/MazamaScience/MazamaSpatialPlots -* Source code: https://github.com/cran/MazamaSpatialPlots -* Date/Publication: 2022-11-15 21:00:08 UTC -* Number of recursive dependencies: 180 - -Run `revdepcheck::cloud_details(, "MazamaSpatialPlots")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/MazamaSpatialPlots/new/MazamaSpatialPlots.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘MazamaSpatialPlots/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘MazamaSpatialPlots’ version ‘0.2.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'sf', 'tmap' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/MazamaSpatialPlots/old/MazamaSpatialPlots.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘MazamaSpatialPlots/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘MazamaSpatialPlots’ version ‘0.2.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'sf', 'tmap' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# merTools - -
- -* Version: 0.5.2 -* GitHub: NA -* Source code: https://github.com/cran/merTools -* Date/Publication: 2020-06-23 10:30:12 UTC -* Number of recursive dependencies: 143 - -Run `revdepcheck::cloud_details(, "merTools")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/merTools/new/merTools.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘merTools/DESCRIPTION’ ... OK -* this is package ‘merTools’ version ‘0.5.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘Using_predictInterval.Rmd’ using ‘UTF-8’... OK - ‘imputation.Rmd’ using ‘UTF-8’... OK - ‘marginal_effects.Rmd’ using ‘UTF-8’... OK - ‘merToolsIntro.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/merTools/old/merTools.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘merTools/DESCRIPTION’ ... OK -* this is package ‘merTools’ version ‘0.5.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘Using_predictInterval.Rmd’ using ‘UTF-8’... OK - ‘imputation.Rmd’ using ‘UTF-8’... OK - ‘marginal_effects.Rmd’ using ‘UTF-8’... OK - ‘merToolsIntro.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - - - - - -``` -# meteoland - -
- -* Version: 2.0.0 -* GitHub: NA -* Source code: https://github.com/cran/meteoland -* Date/Publication: 2023-02-17 22:20:02 UTC -* Number of recursive dependencies: 155 - -Run `revdepcheck::cloud_details(, "meteoland")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/meteoland/new/meteoland.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘meteoland/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘meteoland’ version ‘2.0.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/meteoland/old/meteoland.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘meteoland/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘meteoland’ version ‘2.0.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# modeltime - -
- -* Version: 1.2.5 -* GitHub: https://github.com/business-science/modeltime -* Source code: https://github.com/cran/modeltime -* Date/Publication: 2023-02-07 19:32:30 UTC -* Number of recursive dependencies: 253 - -Run `revdepcheck::cloud_details(, "modeltime")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/modeltime/new/modeltime.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘modeltime/DESCRIPTION’ ... OK -* this is package ‘modeltime’ version ‘1.2.5’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘prophet’ - -Package suggested but not available for checking: ‘rstan’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/modeltime/old/modeltime.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘modeltime/DESCRIPTION’ ... OK -* this is package ‘modeltime’ version ‘1.2.5’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘prophet’ - -Package suggested but not available for checking: ‘rstan’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# modeltime.ensemble - -
- -* Version: 1.0.2 -* GitHub: https://github.com/business-science/modeltime.ensemble -* Source code: https://github.com/cran/modeltime.ensemble -* Date/Publication: 2022-10-18 23:02:40 UTC -* Number of recursive dependencies: 223 - -Run `revdepcheck::cloud_details(, "modeltime.ensemble")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/modeltime.ensemble/new/modeltime.ensemble.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘modeltime.ensemble/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘modeltime.ensemble’ version ‘1.0.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... ---- finished re-building ‘recursive-ensembles.Rmd’ - -SUMMARY: processing the following file failed: - ‘getting-started-with-modeltime-ensemble.Rmd’ - -Error: Vignette re-building failed. -Execution halted - -* DONE -Status: 2 ERRORs, 1 NOTE - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/modeltime.ensemble/old/modeltime.ensemble.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘modeltime.ensemble/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘modeltime.ensemble’ version ‘1.0.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... ---- finished re-building ‘recursive-ensembles.Rmd’ - -SUMMARY: processing the following file failed: - ‘getting-started-with-modeltime-ensemble.Rmd’ - -Error: Vignette re-building failed. -Execution halted - -* DONE -Status: 2 ERRORs, 1 NOTE - - - - - -``` -# modeltime.gluonts - -
- -* Version: 0.1.0 -* GitHub: https://github.com/business-science/modeltime.gluonts -* Source code: https://github.com/cran/modeltime.gluonts -* Date/Publication: 2020-11-30 09:40:02 UTC -* Number of recursive dependencies: 214 - -Run `revdepcheck::cloud_details(, "modeltime.gluonts")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/modeltime.gluonts/new/modeltime.gluonts.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘modeltime.gluonts/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘modeltime.gluonts’ version ‘0.1.0’ -* package encoding: UTF-8 -* checking package namespace information ... 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 ... NONE - ‘getting-started.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/modeltime.gluonts/old/modeltime.gluonts.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘modeltime.gluonts/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘modeltime.gluonts’ version ‘0.1.0’ -* package encoding: UTF-8 -* checking package namespace information ... 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 ... NONE - ‘getting-started.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - - - - - -``` -# modeltime.h2o - -
- -* Version: 0.1.1 -* GitHub: https://github.com/business-science/modeltime.h2o -* Source code: https://github.com/cran/modeltime.h2o -* Date/Publication: 2021-04-05 14:40:03 UTC -* Number of recursive dependencies: 214 - -Run `revdepcheck::cloud_details(, "modeltime.h2o")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/modeltime.h2o/new/modeltime.h2o.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘modeltime.h2o/DESCRIPTION’ ... OK -* this is package ‘modeltime.h2o’ version ‘0.1.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... OK -... -* checking for code/documentation mismatches ... OK -* checking Rd \usage sections ... OK -* checking Rd contents ... OK -* checking for unstated dependencies in examples ... 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/modeltime.h2o/old/modeltime.h2o.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘modeltime.h2o/DESCRIPTION’ ... OK -* this is package ‘modeltime.h2o’ version ‘0.1.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... OK -... -* checking for code/documentation mismatches ... OK -* checking Rd \usage sections ... OK -* checking Rd contents ... OK -* checking for unstated dependencies in examples ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* DONE -Status: OK - - - - - -``` -# modeltime.resample - -
- -* Version: 0.2.2 -* GitHub: https://github.com/business-science/modeltime.resample -* Source code: https://github.com/cran/modeltime.resample -* Date/Publication: 2022-10-18 03:00:06 UTC -* Number of recursive dependencies: 221 - -Run `revdepcheck::cloud_details(, "modeltime.resample")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/modeltime.resample/new/modeltime.resample.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘modeltime.resample/DESCRIPTION’ ... OK -* this is package ‘modeltime.resample’ version ‘0.2.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... OK -... ---- failed re-building ‘panel-data.Rmd’ - -SUMMARY: processing the following file failed: - ‘panel-data.Rmd’ - -Error: Vignette re-building failed. -Execution halted - -* DONE -Status: 2 ERRORs, 1 NOTE - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/modeltime.resample/old/modeltime.resample.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘modeltime.resample/DESCRIPTION’ ... OK -* this is package ‘modeltime.resample’ version ‘0.2.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... OK -... ---- failed re-building ‘panel-data.Rmd’ - -SUMMARY: processing the following file failed: - ‘panel-data.Rmd’ - -Error: Vignette re-building failed. -Execution halted - -* DONE -Status: 2 ERRORs, 1 NOTE - - - - - -``` -# motif - -
- -* Version: 0.5.2 -* GitHub: https://github.com/Nowosad/motif -* Source code: https://github.com/cran/motif -* Date/Publication: 2022-06-07 05:10:02 UTC -* Number of recursive dependencies: 86 - -Run `revdepcheck::cloud_details(, "motif")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/motif/new/motif.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘motif/DESCRIPTION’ ... OK -* this is package ‘motif’ version ‘0.5.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/motif/old/motif.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘motif/DESCRIPTION’ ... OK -* this is package ‘motif’ version ‘0.5.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# mpower - -
- -* Version: 0.1.0 -* GitHub: NA -* Source code: https://github.com/cran/mpower -* Date/Publication: 2022-09-21 08:50:05 UTC -* Number of recursive dependencies: 132 - -Run `revdepcheck::cloud_details(, "mpower")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/mpower/new/mpower.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘mpower/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘mpower’ version ‘0.1.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... -* checking contents of ‘data’ directory ... OK -* checking data for non-ASCII characters ... OK -* checking LazyData ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* DONE -Status: 1 NOTE - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/mpower/old/mpower.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘mpower/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘mpower’ version ‘0.1.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... -* checking contents of ‘data’ directory ... OK -* checking data for non-ASCII characters ... OK -* checking LazyData ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* DONE -Status: 1 NOTE - - - - - -``` -# MSclassifR - -
- -* Version: 0.3.1 -* GitHub: https://github.com/agodmer/MSclassifR_examples -* Source code: https://github.com/cran/MSclassifR -* Date/Publication: 2022-09-29 06:10:12 UTC -* Number of recursive dependencies: 227 - -Run `revdepcheck::cloud_details(, "MSclassifR")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/MSclassifR/new/MSclassifR.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘MSclassifR/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘MSclassifR’ version ‘0.3.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... -* checking if there is a namespace ... OK -* checking for executable files ... OK -* checking for hidden files and directories ... OK -* checking for portable file names ... OK -* checking for sufficient/correct file permissions ... OK -* checking whether package ‘MSclassifR’ can be installed ... ERROR -Installation failed. -See ‘/tmp/workdir/MSclassifR/new/MSclassifR.Rcheck/00install.out’ for details. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/MSclassifR/old/MSclassifR.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘MSclassifR/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘MSclassifR’ version ‘0.3.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... -* checking if there is a namespace ... OK -* checking for executable files ... OK -* checking for hidden files and directories ... OK -* checking for portable file names ... OK -* checking for sufficient/correct file permissions ... OK -* checking whether package ‘MSclassifR’ can be installed ... ERROR -Installation failed. -See ‘/tmp/workdir/MSclassifR/old/MSclassifR.Rcheck/00install.out’ for details. -* DONE -Status: 1 ERROR - - - - - -``` -# multibiasmeta - -
- -* Version: 0.1.0 -* GitHub: https://github.com/mathurlabstanford/multibiasmeta -* Source code: https://github.com/cran/multibiasmeta -* Date/Publication: 2023-02-08 09:40:02 UTC -* Number of recursive dependencies: 99 - -Run `revdepcheck::cloud_details(, "multibiasmeta")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/multibiasmeta/new/multibiasmeta.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘multibiasmeta/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘multibiasmeta’ version ‘0.1.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... ---- failed re-building ‘tutorial.Rmd’ - -SUMMARY: processing the following file failed: - ‘tutorial.Rmd’ - -Error: Vignette re-building failed. -Execution halted - -* DONE -Status: 1 ERROR, 1 NOTE - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/multibiasmeta/old/multibiasmeta.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘multibiasmeta/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘multibiasmeta’ version ‘0.1.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... ---- failed re-building ‘tutorial.Rmd’ - -SUMMARY: processing the following file failed: - ‘tutorial.Rmd’ - -Error: Vignette re-building failed. -Execution halted - -* DONE -Status: 1 ERROR, 1 NOTE - - - - - -``` -# naturaList - -
- -* Version: 0.5.0 -* GitHub: https://github.com/avrodrigues/naturaList -* Source code: https://github.com/cran/naturaList -* Date/Publication: 2022-04-20 13:30:02 UTC -* Number of recursive dependencies: 129 - -Run `revdepcheck::cloud_details(, "naturaList")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/naturaList/new/naturaList.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘naturaList/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘naturaList’ version ‘0.5.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘lwgeom’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/naturaList/old/naturaList.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘naturaList/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘naturaList’ version ‘0.5.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘lwgeom’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# ncdfgeom - -
- -* Version: 1.1.4 -* GitHub: https://github.com/USGS-R/ncdfgeom -* Source code: https://github.com/cran/ncdfgeom -* Date/Publication: 2022-11-08 22:40:02 UTC -* Number of recursive dependencies: 90 - -Run `revdepcheck::cloud_details(, "ncdfgeom")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/ncdfgeom/new/ncdfgeom.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘ncdfgeom/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘ncdfgeom’ version ‘1.1.4’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/ncdfgeom/old/ncdfgeom.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘ncdfgeom/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘ncdfgeom’ version ‘1.1.4’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# nhdplusTools - -
- -* Version: 0.6.2 -* GitHub: https://github.com/doi-usgs/nhdplusTools -* Source code: https://github.com/cran/nhdplusTools -* Date/Publication: 2023-03-10 09:40:14 UTC -* Number of recursive dependencies: 167 - -Run `revdepcheck::cloud_details(, "nhdplusTools")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/nhdplusTools/new/nhdplusTools.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘nhdplusTools/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘nhdplusTools’ version ‘0.6.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘lwgeom’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/nhdplusTools/old/nhdplusTools.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘nhdplusTools/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘nhdplusTools’ version ‘0.6.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘lwgeom’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# nhdR - -
- -* Version: 0.5.9 -* GitHub: https://github.com/jsta/nhdR -* Source code: https://github.com/cran/nhdR -* Date/Publication: 2022-10-09 02:10:02 UTC -* Number of recursive dependencies: 104 - -Run `revdepcheck::cloud_details(, "nhdR")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/nhdR/new/nhdR.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘nhdR/DESCRIPTION’ ... OK -* this is package ‘nhdR’ version ‘0.5.9’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘lwgeom’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/nhdR/old/nhdR.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘nhdR/DESCRIPTION’ ... OK -* this is package ‘nhdR’ version ‘0.5.9’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘lwgeom’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# nlmixr2est - -
- -* Version: 2.1.3 -* GitHub: https://github.com/nlmixr2/nlmixr2est -* Source code: https://github.com/cran/nlmixr2est -* Date/Publication: 2022-11-10 17:00:19 UTC -* Number of recursive dependencies: 202 - -Run `revdepcheck::cloud_details(, "nlmixr2est")` for more info - -
- -## In both - -* checking whether package ‘nlmixr2est’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/nlmixr2est/new/nlmixr2est.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘nlmixr2est’ ... -** package ‘nlmixr2est’ successfully unpacked and MD5 sums checked -** using staged installation ---------[begin src/Makevars]-------- -# -*- mode: makefile-gmake -*- -ARMA=/opt/R/4.2.1/lib/R/site-library/RcppArmadillo/include -BH=/opt/R/4.2.1/lib/R/site-library/BH/include -RCPP=/opt/R/4.2.1/lib/R/site-library/Rcpp/include -EG=/opt/R/4.2.1/lib/R/site-library/RcppEigen/include -SH=-isystem'/opt/R/4.2.1/lib/R/site-library/StanHeaders/include/src' -... -** R -** inst -** byte-compile and prepare package for lazy loading -Error: .onLoad failed in loadNamespace() for 'rxode2parse', details: - call: NULL - error: rxode2parse compiled with dparser '1.3.1.9' but dparser '1.3.1.10' is loaded -Recompile rxode2parse with the this version of dparser -Execution halted -ERROR: lazy loading failed for package ‘nlmixr2est’ -* removing ‘/tmp/workdir/nlmixr2est/new/nlmixr2est.Rcheck/nlmixr2est’ - - -``` -### CRAN - -``` -* installing *source* package ‘nlmixr2est’ ... -** package ‘nlmixr2est’ successfully unpacked and MD5 sums checked -** using staged installation ---------[begin src/Makevars]-------- -# -*- mode: makefile-gmake -*- -ARMA=/opt/R/4.2.1/lib/R/site-library/RcppArmadillo/include -BH=/opt/R/4.2.1/lib/R/site-library/BH/include -RCPP=/opt/R/4.2.1/lib/R/site-library/Rcpp/include -EG=/opt/R/4.2.1/lib/R/site-library/RcppEigen/include -SH=-isystem'/opt/R/4.2.1/lib/R/site-library/StanHeaders/include/src' -... -** R -** inst -** byte-compile and prepare package for lazy loading -Error: .onLoad failed in loadNamespace() for 'rxode2parse', details: - call: NULL - error: rxode2parse compiled with dparser '1.3.1.9' but dparser '1.3.1.10' is loaded -Recompile rxode2parse with the this version of dparser -Execution halted -ERROR: lazy loading failed for package ‘nlmixr2est’ -* removing ‘/tmp/workdir/nlmixr2est/old/nlmixr2est.Rcheck/nlmixr2est’ - - -``` -# nlmixr2extra - -
- -* Version: 2.0.8 -* GitHub: https://github.com/nlmixr2/nlmixr2extra -* Source code: https://github.com/cran/nlmixr2extra -* Date/Publication: 2022-10-22 22:32:34 UTC -* Number of recursive dependencies: 203 - -Run `revdepcheck::cloud_details(, "nlmixr2extra")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/nlmixr2extra/new/nlmixr2extra.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘nlmixr2extra/DESCRIPTION’ ... OK -* this is package ‘nlmixr2extra’ version ‘2.0.8’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... -* checking if there is a namespace ... OK -* checking for executable files ... OK -* checking for hidden files and directories ... OK -* checking for portable file names ... OK -* checking for sufficient/correct file permissions ... OK -* checking whether package ‘nlmixr2extra’ can be installed ... ERROR -Installation failed. -See ‘/tmp/workdir/nlmixr2extra/new/nlmixr2extra.Rcheck/00install.out’ for details. -* DONE -Status: 1 ERROR, 1 NOTE - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/nlmixr2extra/old/nlmixr2extra.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘nlmixr2extra/DESCRIPTION’ ... OK -* this is package ‘nlmixr2extra’ version ‘2.0.8’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... -* checking if there is a namespace ... OK -* checking for executable files ... OK -* checking for hidden files and directories ... OK -* checking for portable file names ... OK -* checking for sufficient/correct file permissions ... OK -* checking whether package ‘nlmixr2extra’ can be installed ... ERROR -Installation failed. -See ‘/tmp/workdir/nlmixr2extra/old/nlmixr2extra.Rcheck/00install.out’ for details. -* DONE -Status: 1 ERROR, 1 NOTE - - - - - -``` -# nlmixr2plot - -
- -* Version: 2.0.7 -* GitHub: https://github.com/nlmixr2/nlmixr2plot -* Source code: https://github.com/cran/nlmixr2plot -* Date/Publication: 2022-10-20 03:12:36 UTC -* Number of recursive dependencies: 163 - -Run `revdepcheck::cloud_details(, "nlmixr2plot")` for more info - -
- -## In both - -* checking whether package ‘nlmixr2plot’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/nlmixr2plot/new/nlmixr2plot.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘nlmixr2plot’ ... -** package ‘nlmixr2plot’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** byte-compile and prepare package for lazy loading -Error: .onLoad failed in loadNamespace() for 'rxode2parse', details: - call: NULL - error: rxode2parse compiled with dparser '1.3.1.9' but dparser '1.3.1.10' is loaded -Recompile rxode2parse with the this version of dparser -Execution halted -ERROR: lazy loading failed for package ‘nlmixr2plot’ -* removing ‘/tmp/workdir/nlmixr2plot/new/nlmixr2plot.Rcheck/nlmixr2plot’ - - -``` -### CRAN - -``` -* installing *source* package ‘nlmixr2plot’ ... -** package ‘nlmixr2plot’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** byte-compile and prepare package for lazy loading -Error: .onLoad failed in loadNamespace() for 'rxode2parse', details: - call: NULL - error: rxode2parse compiled with dparser '1.3.1.9' but dparser '1.3.1.10' is loaded -Recompile rxode2parse with the this version of dparser -Execution halted -ERROR: lazy loading failed for package ‘nlmixr2plot’ -* removing ‘/tmp/workdir/nlmixr2plot/old/nlmixr2plot.Rcheck/nlmixr2plot’ - - -``` -# nlmixr2rpt - -
- -* Version: 0.1.0 -* GitHub: https://github.com/nlmixr2/nlmixr2rpt -* Source code: https://github.com/cran/nlmixr2rpt -* Date/Publication: 2022-12-05 10:40:02 UTC -* Number of recursive dependencies: 218 - -Run `revdepcheck::cloud_details(, "nlmixr2rpt")` for more info - -
- -## In both - -* checking whether package ‘nlmixr2rpt’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/nlmixr2rpt/new/nlmixr2rpt.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘nlmixr2rpt’ ... -** package ‘nlmixr2rpt’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** inst -** byte-compile and prepare package for lazy loading -Error: .onLoad failed in loadNamespace() for 'rxode2parse', details: - call: NULL - error: rxode2parse compiled with dparser '1.3.1.9' but dparser '1.3.1.10' is loaded -Recompile rxode2parse with the this version of dparser -Execution halted -ERROR: lazy loading failed for package ‘nlmixr2rpt’ -* removing ‘/tmp/workdir/nlmixr2rpt/new/nlmixr2rpt.Rcheck/nlmixr2rpt’ - - -``` -### CRAN - -``` -* installing *source* package ‘nlmixr2rpt’ ... -** package ‘nlmixr2rpt’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** inst -** byte-compile and prepare package for lazy loading -Error: .onLoad failed in loadNamespace() for 'rxode2parse', details: - call: NULL - error: rxode2parse compiled with dparser '1.3.1.9' but dparser '1.3.1.10' is loaded -Recompile rxode2parse with the this version of dparser -Execution halted -ERROR: lazy loading failed for package ‘nlmixr2rpt’ -* removing ‘/tmp/workdir/nlmixr2rpt/old/nlmixr2rpt.Rcheck/nlmixr2rpt’ - - -``` -# occCite - -
- -* Version: 0.5.6 -* GitHub: https://github.com/ropensci/occCite -* Source code: https://github.com/cran/occCite -* Date/Publication: 2022-08-05 11:40:02 UTC -* Number of recursive dependencies: 176 - -Run `revdepcheck::cloud_details(, "occCite")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/occCite/new/occCite.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘occCite/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘occCite’ version ‘0.5.6’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘BIEN’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/occCite/old/occCite.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘occCite/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘occCite’ version ‘0.5.6’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘BIEN’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# occUncertain - -
- -* Version: 0.1.0 -* GitHub: https://github.com/mlammens/occUncertain -* Source code: https://github.com/cran/occUncertain -* Date/Publication: 2023-01-20 10:10:06 UTC -* Number of recursive dependencies: 103 - -Run `revdepcheck::cloud_details(, "occUncertain")` for more info - -
- -## In both - -* checking whether package ‘occUncertain’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/occUncertain/new/occUncertain.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘occUncertain’ ... -** package ‘occUncertain’ 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 ‘ConR’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]): - there is no package called ‘sf’ -Execution halted -ERROR: lazy loading failed for package ‘occUncertain’ -* removing ‘/tmp/workdir/occUncertain/new/occUncertain.Rcheck/occUncertain’ - - -``` -### CRAN - -``` -* installing *source* package ‘occUncertain’ ... -** package ‘occUncertain’ 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 ‘ConR’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]): - there is no package called ‘sf’ -Execution halted -ERROR: lazy loading failed for package ‘occUncertain’ -* removing ‘/tmp/workdir/occUncertain/old/occUncertain.Rcheck/occUncertain’ - - -``` -# oceanexplorer - -
- -* Version: 0.0.2 -* GitHub: https://github.com/UtrechtUniversity/oceanexplorer -* Source code: https://github.com/cran/oceanexplorer -* Date/Publication: 2022-09-15 09:10:08 UTC -* Number of recursive dependencies: 158 - -Run `revdepcheck::cloud_details(, "oceanexplorer")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/oceanexplorer/new/oceanexplorer.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘oceanexplorer/DESCRIPTION’ ... OK -* this is package ‘oceanexplorer’ version ‘0.0.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/oceanexplorer/old/oceanexplorer.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘oceanexplorer/DESCRIPTION’ ... OK -* this is package ‘oceanexplorer’ version ‘0.0.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# oceanis - -
- -* Version: 1.8.5 -* GitHub: https://github.com/insee-psar-at/oceanis-package -* Source code: https://github.com/cran/oceanis -* Date/Publication: 2022-07-13 13:10:02 UTC -* Number of recursive dependencies: 117 - -Run `revdepcheck::cloud_details(, "oceanis")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/oceanis/new/oceanis.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘oceanis/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘oceanis’ version ‘1.8.5’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'sf', 'lwgeom' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/oceanis/old/oceanis.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘oceanis/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘oceanis’ version ‘1.8.5’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'sf', 'lwgeom' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# ohsome - -
- -* Version: 0.2.1 -* GitHub: https://github.com/GIScience/ohsome-r -* Source code: https://github.com/cran/ohsome -* Date/Publication: 2023-02-22 14:50:02 UTC -* Number of recursive dependencies: 150 - -Run `revdepcheck::cloud_details(, "ohsome")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/ohsome/new/ohsome.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘ohsome/DESCRIPTION’ ... OK -* this is package ‘ohsome’ version ‘0.2.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘tmaptools’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/ohsome/old/ohsome.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘ohsome/DESCRIPTION’ ... OK -* this is package ‘ohsome’ version ‘0.2.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘tmaptools’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# OpenLand - -
- -* Version: 1.0.2 -* GitHub: https://github.com/reginalexavier/OpenLand -* Source code: https://github.com/cran/OpenLand -* Date/Publication: 2021-11-02 07:20:02 UTC -* Number of recursive dependencies: 121 - -Run `revdepcheck::cloud_details(, "OpenLand")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/OpenLand/new/OpenLand.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘OpenLand/DESCRIPTION’ ... OK -* this is package ‘OpenLand’ version ‘1.0.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... -* 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 ... NONE - ‘openland_vignette.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/OpenLand/old/OpenLand.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘OpenLand/DESCRIPTION’ ... OK -* this is package ‘OpenLand’ version ‘1.0.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... -* 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 ... NONE - ‘openland_vignette.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - - - - - -``` -# ordbetareg - -
- -* Version: 0.7.1 -* GitHub: https://github.com/saudiwin/ordbetareg_pack -* Source code: https://github.com/cran/ordbetareg -* Date/Publication: 2023-03-15 18:10:02 UTC -* Number of recursive dependencies: 193 - -Run `revdepcheck::cloud_details(, "ordbetareg")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/ordbetareg/new/ordbetareg.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘ordbetareg/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘ordbetareg’ version ‘0.7.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘brms’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/ordbetareg/old/ordbetareg.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘ordbetareg/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘ordbetareg’ version ‘0.7.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘brms’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# palaeoSig - -
- -* Version: 2.1-3 -* GitHub: https://github.com/richardjtelford/palaeoSig -* Source code: https://github.com/cran/palaeoSig -* Date/Publication: 2023-03-10 09:30:02 UTC -* Number of recursive dependencies: 104 - -Run `revdepcheck::cloud_details(, "palaeoSig")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/palaeoSig/new/palaeoSig.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘palaeoSig/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘palaeoSig’ version ‘2.1-3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... ---- failed re-building ‘randomTF-spatial.Rmd’ - -SUMMARY: processing the following files failed: - ‘h-block-crossvalidation.Rmd’ ‘randomTF-spatial.Rmd’ - -Error: Vignette re-building failed. -Execution halted - -* DONE -Status: 2 ERRORs, 1 NOTE - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/palaeoSig/old/palaeoSig.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘palaeoSig/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘palaeoSig’ version ‘2.1-3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... ---- failed re-building ‘randomTF-spatial.Rmd’ - -SUMMARY: processing the following files failed: - ‘h-block-crossvalidation.Rmd’ ‘randomTF-spatial.Rmd’ - -Error: Vignette re-building failed. -Execution halted - -* DONE -Status: 2 ERRORs, 1 NOTE - - - - - -``` -# panelr - -
- -* Version: 0.7.7 -* GitHub: https://github.com/jacob-long/panelr -* Source code: https://github.com/cran/panelr -* Date/Publication: 2023-02-09 16:00:02 UTC -* Number of recursive dependencies: 169 - -Run `revdepcheck::cloud_details(, "panelr")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/panelr/new/panelr.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘panelr/DESCRIPTION’ ... OK -* this is package ‘panelr’ version ‘0.7.7’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... - 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 - ‘reshape.Rmd’ using ‘UTF-8’... OK - ‘wbm.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 ERROR, 2 NOTEs - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/panelr/old/panelr.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘panelr/DESCRIPTION’ ... OK -* this is package ‘panelr’ version ‘0.7.7’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... - 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 - ‘reshape.Rmd’ using ‘UTF-8’... OK - ‘wbm.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 ERROR, 2 NOTEs - - - - - -``` -# pct - -
- -* Version: 0.9.8 -* GitHub: https://github.com/ITSLeeds/pct -* Source code: https://github.com/cran/pct -* Date/Publication: 2023-02-16 00:30:02 UTC -* Number of recursive dependencies: 138 - -Run `revdepcheck::cloud_details(, "pct")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/pct/new/pct.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘pct/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘pct’ version ‘0.9.8’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘tmap’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/pct/old/pct.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘pct/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘pct’ version ‘0.9.8’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘tmap’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# photosynthesis - -
- -* Version: 2.1.1 -* GitHub: https://github.com/cdmuir/photosynthesis -* Source code: https://github.com/cran/photosynthesis -* Date/Publication: 2022-11-19 19:40:09 UTC -* Number of recursive dependencies: 135 - -Run `revdepcheck::cloud_details(, "photosynthesis")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/photosynthesis/new/photosynthesis.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘photosynthesis/DESCRIPTION’ ... OK -* this is package ‘photosynthesis’ version ‘2.1.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... - ‘mesophyll-conductance.Rmd’ using ‘UTF-8’... OK - ‘modeling-recommendations.Rmd’ using ‘UTF-8’... OK - ‘photosynthesis-introduction.Rmd’ using ‘UTF-8’... OK - ‘pressure-volume.Rmd’ using ‘UTF-8’... OK - ‘sensitivity-analysis.Rmd’ using ‘UTF-8’... OK - ‘stomatal-conductance.Rmd’ using ‘UTF-8’... OK - ‘temperature-response.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 4 NOTEs - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/photosynthesis/old/photosynthesis.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘photosynthesis/DESCRIPTION’ ... OK -* this is package ‘photosynthesis’ version ‘2.1.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... - ‘mesophyll-conductance.Rmd’ using ‘UTF-8’... OK - ‘modeling-recommendations.Rmd’ using ‘UTF-8’... OK - ‘photosynthesis-introduction.Rmd’ using ‘UTF-8’... OK - ‘pressure-volume.Rmd’ using ‘UTF-8’... OK - ‘sensitivity-analysis.Rmd’ using ‘UTF-8’... OK - ‘stomatal-conductance.Rmd’ using ‘UTF-8’... OK - ‘temperature-response.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 ERROR, 4 NOTEs - - - - - -``` -# Platypus - -
- -* Version: 3.4.1 -* GitHub: NA -* Source code: https://github.com/cran/Platypus -* Date/Publication: 2022-08-15 07:20:20 UTC -* Number of recursive dependencies: 356 - -Run `revdepcheck::cloud_details(, "Platypus")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/Platypus/new/Platypus.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘Platypus/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘Platypus’ version ‘3.4.1’ -* package encoding: UTF-8 -* checking package namespace information ... 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 ... NONE - ‘PlatypusV3_agedCNS.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/Platypus/old/Platypus.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘Platypus/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘Platypus’ version ‘3.4.1’ -* package encoding: UTF-8 -* checking package namespace information ... 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 ... NONE - ‘PlatypusV3_agedCNS.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - - - - - -``` -# PoolTestR - -
- -* Version: 0.1.3 -* GitHub: https://github.com/AngusMcLure/PoolTestR -* Source code: https://github.com/cran/PoolTestR -* Date/Publication: 2022-07-01 07:30:02 UTC -* Number of recursive dependencies: 132 - -Run `revdepcheck::cloud_details(, "PoolTestR")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/PoolTestR/new/PoolTestR.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘PoolTestR/DESCRIPTION’ ... OK -* this is package ‘PoolTestR’ version ‘0.1.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'rstan', 'brms' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/PoolTestR/old/PoolTestR.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘PoolTestR/DESCRIPTION’ ... OK -* this is package ‘PoolTestR’ version ‘0.1.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'rstan', 'brms' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# PopGenHelpR - -
- -* Version: 1.0.0 -* GitHub: https://github.com/kfarleigh/PopGenHelpR -* Source code: https://github.com/cran/PopGenHelpR -* Date/Publication: 2023-02-13 08:40:05 UTC -* Number of recursive dependencies: 187 - -Run `revdepcheck::cloud_details(, "PopGenHelpR")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/PopGenHelpR/new/PopGenHelpR.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘PopGenHelpR/DESCRIPTION’ ... OK -* this is package ‘PopGenHelpR’ version ‘1.0.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... 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 ... NONE - ‘PopGenHelpR_vignette.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: OK - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/PopGenHelpR/old/PopGenHelpR.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘PopGenHelpR/DESCRIPTION’ ... OK -* this is package ‘PopGenHelpR’ version ‘1.0.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... 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 ... NONE - ‘PopGenHelpR_vignette.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: OK - - - - - -``` -# ppcSpatial - -
- -* Version: 0.2.0 -* GitHub: https://github.com/MYaseen208/ppcSpatial -* Source code: https://github.com/cran/ppcSpatial -* Date/Publication: 2018-03-07 15:54:23 UTC -* Number of recursive dependencies: 118 - -Run `revdepcheck::cloud_details(, "ppcSpatial")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/ppcSpatial/new/ppcSpatial.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘ppcSpatial/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘ppcSpatial’ version ‘0.2.0’ -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘tmap’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/ppcSpatial/old/ppcSpatial.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘ppcSpatial/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘ppcSpatial’ version ‘0.2.0’ -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘tmap’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# prioriactions - -
- -* Version: 0.4.1 -* GitHub: https://github.com/prioriactions/prioriactions -* Source code: https://github.com/cran/prioriactions -* Date/Publication: 2022-08-16 13:30:02 UTC -* Number of recursive dependencies: 130 - -Run `revdepcheck::cloud_details(, "prioriactions")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/prioriactions/new/prioriactions.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘prioriactions/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘prioriactions’ version ‘0.4.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘objectives.Rmd’ using ‘UTF-8’... OK - ‘sensitivities.Rmd’ using ‘UTF-8’... OK - ‘MitchellRiver.Rmd’ using ‘UTF-8’... OK - ‘prioriactions.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 2 NOTEs - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/prioriactions/old/prioriactions.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘prioriactions/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘prioriactions’ version ‘0.4.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘objectives.Rmd’ using ‘UTF-8’... OK - ‘sensitivities.Rmd’ using ‘UTF-8’... OK - ‘MitchellRiver.Rmd’ using ‘UTF-8’... OK - ‘prioriactions.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 2 NOTEs - - - - - -``` -# promotionImpact - -
- -* Version: 0.1.5 -* GitHub: https://github.com/ncsoft/promotionImpact -* Source code: https://github.com/cran/promotionImpact -* Date/Publication: 2021-04-13 15:00:05 UTC -* Number of recursive dependencies: 122 - -Run `revdepcheck::cloud_details(, "promotionImpact")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/promotionImpact/new/promotionImpact.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘promotionImpact/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘promotionImpact’ version ‘0.1.5’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘prophet’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/promotionImpact/old/promotionImpact.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘promotionImpact/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘promotionImpact’ version ‘0.1.5’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘prophet’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# PSS.Health - -
- -* Version: 0.6.1 -* GitHub: NA -* Source code: https://github.com/cran/PSS.Health -* Date/Publication: 2023-02-01 17:50:11 UTC -* Number of recursive dependencies: 187 - -Run `revdepcheck::cloud_details(, "PSS.Health")` for more info - -
- -## In both - -* checking whether package ‘PSS.Health’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/PSS.Health/new/PSS.Health.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘PSS.Health’ ... -** package ‘PSS.Health’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** inst -** byte-compile and prepare package for lazy loading -Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘sf’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘PSS.Health’ -* removing ‘/tmp/workdir/PSS.Health/new/PSS.Health.Rcheck/PSS.Health’ - - -``` -### CRAN - -``` -* installing *source* package ‘PSS.Health’ ... -** package ‘PSS.Health’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** inst -** byte-compile and prepare package for lazy loading -Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘sf’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘PSS.Health’ -* removing ‘/tmp/workdir/PSS.Health/old/PSS.Health.Rcheck/PSS.Health’ - - -``` -# rangeModelMetadata - -
- -* Version: 0.1.4 -* GitHub: NA -* Source code: https://github.com/cran/rangeModelMetadata -* Date/Publication: 2021-06-11 08:40:02 UTC -* Number of recursive dependencies: 192 - -Run `revdepcheck::cloud_details(, "rangeModelMetadata")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/rangeModelMetadata/new/rangeModelMetadata.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘rangeModelMetadata/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘rangeModelMetadata’ version ‘0.1.4’ -* package encoding: UTF-8 -* checking package namespace information ... 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 - ‘rmm_Multispecies.Rmd’ using ‘UTF-8’... OK - ‘rmm_directory.Rmd’ using ‘UTF-8’... OK - ‘rmm_vignette.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 3 NOTEs - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/rangeModelMetadata/old/rangeModelMetadata.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘rangeModelMetadata/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘rangeModelMetadata’ version ‘0.1.4’ -* package encoding: UTF-8 -* checking package namespace information ... 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 - ‘rmm_Multispecies.Rmd’ using ‘UTF-8’... OK - ‘rmm_directory.Rmd’ using ‘UTF-8’... OK - ‘rmm_vignette.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 3 NOTEs - - - - - -``` -# rbenvo - -
- -* Version: 1.0.5 -* GitHub: https://github.com/apeterson91/rbenvo -* Source code: https://github.com/cran/rbenvo -* Date/Publication: 2020-11-18 10:40:02 UTC -* Number of recursive dependencies: 104 - -Run `revdepcheck::cloud_details(, "rbenvo")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/rbenvo/new/rbenvo.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘rbenvo/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘rbenvo’ version ‘1.0.5’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘lwgeom’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/rbenvo/old/rbenvo.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘rbenvo/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘rbenvo’ version ‘1.0.5’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘lwgeom’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# RBesT - -
- -* Version: 1.6-6 -* GitHub: https://github.com/Novartis/RBesT -* Source code: https://github.com/cran/RBesT -* Date/Publication: 2023-03-03 18:20:02 UTC -* Number of recursive dependencies: 131 - -Run `revdepcheck::cloud_details(, "RBesT")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/RBesT/new/RBesT.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘RBesT/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘RBesT’ version ‘1.6-6’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘rstan’ - -Package suggested but not available for checking: ‘rstanarm’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/RBesT/old/RBesT.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘RBesT/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘RBesT’ version ‘1.6-6’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘rstan’ - -Package suggested but not available for checking: ‘rstanarm’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# rcontroll - -
- -* Version: 0.1.0 -* GitHub: https://github.com/sylvainschmitt/rcontroll -* Source code: https://github.com/cran/rcontroll -* Date/Publication: 2023-02-11 15:20:02 UTC -* Number of recursive dependencies: 128 - -Run `revdepcheck::cloud_details(, "rcontroll")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/rcontroll/new/rcontroll.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘rcontroll/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘rcontroll’ version ‘0.1.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... -* checking if there is a namespace ... OK -* checking for executable files ... OK -* checking for hidden files and directories ... OK -* checking for portable file names ... OK -* checking for sufficient/correct file permissions ... OK -* checking whether package ‘rcontroll’ can be installed ... ERROR -Installation failed. -See ‘/tmp/workdir/rcontroll/new/rcontroll.Rcheck/00install.out’ for details. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/rcontroll/old/rcontroll.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘rcontroll/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘rcontroll’ version ‘0.1.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... -* checking if there is a namespace ... OK -* checking for executable files ... OK -* checking for hidden files and directories ... OK -* checking for portable file names ... OK -* checking for sufficient/correct file permissions ... OK -* checking whether package ‘rcontroll’ can be installed ... ERROR -Installation failed. -See ‘/tmp/workdir/rcontroll/old/rcontroll.Rcheck/00install.out’ for details. -* DONE -Status: 1 ERROR - - - - - -``` -# RCzechia - -
- -* Version: 1.11.1 -* GitHub: https://github.com/jlacko/RCzechia -* Source code: https://github.com/cran/RCzechia -* Date/Publication: 2023-03-05 06:40:07 UTC -* Number of recursive dependencies: 139 - -Run `revdepcheck::cloud_details(, "RCzechia")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/RCzechia/new/RCzechia.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘RCzechia/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘RCzechia’ version ‘1.11.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘lwgeom’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/RCzechia/old/RCzechia.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘RCzechia/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘RCzechia’ version ‘1.11.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘lwgeom’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# rdss - -
- -* Version: 1.0.0 -* GitHub: NA -* Source code: https://github.com/cran/rdss -* Date/Publication: 2023-01-17 17:40:02 UTC -* Number of recursive dependencies: 207 - -Run `revdepcheck::cloud_details(, "rdss")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/rdss/new/rdss.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘rdss/DESCRIPTION’ ... OK -* this is package ‘rdss’ version ‘1.0.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... -* checking contents of ‘data’ directory ... OK -* checking data for non-ASCII characters ... OK -* checking LazyData ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* DONE -Status: 1 NOTE - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/rdss/old/rdss.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘rdss/DESCRIPTION’ ... OK -* this is package ‘rdss’ version ‘1.0.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... -* checking contents of ‘data’ directory ... OK -* checking data for non-ASCII characters ... OK -* checking LazyData ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* DONE -Status: 1 NOTE - - - - - -``` -# redist - -
- -* Version: 4.0.1 -* GitHub: https://github.com/alarm-redist/redist -* Source code: https://github.com/cran/redist -* Date/Publication: 2022-06-16 06:20:07 UTC -* Number of recursive dependencies: 147 - -Run `revdepcheck::cloud_details(, "redist")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/redist/new/redist.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘redist/DESCRIPTION’ ... OK -* this is package ‘redist’ version ‘4.0.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘lwgeom’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/redist/old/redist.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘redist/DESCRIPTION’ ... OK -* this is package ‘redist’ version ‘4.0.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘lwgeom’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# remap - -
- -* Version: 0.3.0 -* GitHub: https://github.com/jadonwagstaff/remap -* Source code: https://github.com/cran/remap -* Date/Publication: 2022-08-12 23:10:02 UTC -* Number of recursive dependencies: 67 - -Run `revdepcheck::cloud_details(, "remap")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/remap/new/remap.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘remap/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘remap’ version ‘0.3.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘lwgeom’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/remap/old/remap.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘remap/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘remap’ version ‘0.3.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘lwgeom’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# report - -
- -* Version: 0.5.6 -* GitHub: https://github.com/easystats/report -* Source code: https://github.com/cran/report -* Date/Publication: 2023-02-05 20:42:31 UTC -* Number of recursive dependencies: 156 - -Run `revdepcheck::cloud_details(, "report")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/report/new/report.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘report/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘report’ version ‘0.5.6’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘cite_packages.Rmd’ using ‘UTF-8’... OK - ‘new_models.Rmd’ using ‘UTF-8’... OK - ‘report.Rmd’ using ‘UTF-8’... OK - ‘report_table.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/report/old/report.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘report/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘report’ version ‘0.5.6’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘cite_packages.Rmd’ using ‘UTF-8’... OK - ‘new_models.Rmd’ using ‘UTF-8’... OK - ‘report.Rmd’ using ‘UTF-8’... OK - ‘report_table.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - - - - - -``` -# rGhanaCensus - -
- -* Version: 0.1.0 -* GitHub: https://github.com/ktemadarko/rGhanaCensus -* Source code: https://github.com/cran/rGhanaCensus -* Date/Publication: 2022-01-13 20:02:43 UTC -* Number of recursive dependencies: 94 - -Run `revdepcheck::cloud_details(, "rGhanaCensus")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/rGhanaCensus/new/rGhanaCensus.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘rGhanaCensus/DESCRIPTION’ ... OK -* this is package ‘rGhanaCensus’ version ‘0.1.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... ---- failed re-building ‘Create_map_displaying_Ghana_2019_School_Attendance_Indicators.Rmd’ - -SUMMARY: processing the following file failed: - ‘Create_map_displaying_Ghana_2019_School_Attendance_Indicators.Rmd’ - -Error: Vignette re-building failed. -Execution halted - -* DONE -Status: 1 ERROR, 1 NOTE - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/rGhanaCensus/old/rGhanaCensus.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘rGhanaCensus/DESCRIPTION’ ... OK -* this is package ‘rGhanaCensus’ version ‘0.1.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... ---- failed re-building ‘Create_map_displaying_Ghana_2019_School_Attendance_Indicators.Rmd’ - -SUMMARY: processing the following file failed: - ‘Create_map_displaying_Ghana_2019_School_Attendance_Indicators.Rmd’ - -Error: Vignette re-building failed. -Execution halted - -* DONE -Status: 1 ERROR, 1 NOTE - - - - - -``` -# rnaturalearth - -
- -* Version: 0.3.2 -* GitHub: https://github.com/ropensci/rnaturalearth -* Source code: https://github.com/cran/rnaturalearth -* Date/Publication: 2023-01-23 07:50:02 UTC -* Number of recursive dependencies: 157 - -Run `revdepcheck::cloud_details(, "rnaturalearth")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/rnaturalearth/new/rnaturalearth.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘rnaturalearth/DESCRIPTION’ ... OK -* this is package ‘rnaturalearth’ version ‘0.3.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘tmap’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/rnaturalearth/old/rnaturalearth.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘rnaturalearth/DESCRIPTION’ ... OK -* this is package ‘rnaturalearth’ version ‘0.3.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘tmap’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# roads - -
- -* Version: 1.1.0 -* GitHub: https://github.com/LandSciTech/roads -* Source code: https://github.com/cran/roads -* Date/Publication: 2023-02-02 16:10:02 UTC -* Number of recursive dependencies: 111 - -Run `revdepcheck::cloud_details(, "roads")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/roads/new/roads.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘roads/DESCRIPTION’ ... OK -* this is package ‘roads’ version ‘1.1.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘tmap’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/roads/old/roads.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘roads/DESCRIPTION’ ... OK -* this is package ‘roads’ version ‘1.1.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘tmap’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# Robyn - -
- -* Version: 3.9.0 -* GitHub: https://github.com/facebookexperimental/Robyn -* Source code: https://github.com/cran/Robyn -* Date/Publication: 2023-02-08 08:12:37 UTC -* Number of recursive dependencies: 139 - -Run `revdepcheck::cloud_details(, "Robyn")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/Robyn/new/Robyn.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘Robyn/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘Robyn’ version ‘3.9.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘prophet’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/Robyn/old/Robyn.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘Robyn/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘Robyn’ version ‘3.9.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘prophet’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# Rsagacmd - -
- -* Version: 0.2.0 -* GitHub: https://github.com/stevenpawley/Rsagacmd -* Source code: https://github.com/cran/Rsagacmd -* Date/Publication: 2022-04-04 04:10:02 UTC -* Number of recursive dependencies: 70 - -Run `revdepcheck::cloud_details(, "Rsagacmd")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/Rsagacmd/new/Rsagacmd.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘Rsagacmd/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘Rsagacmd’ version ‘0.2.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/Rsagacmd/old/Rsagacmd.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘Rsagacmd/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘Rsagacmd’ version ‘0.2.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# rsinaica - -
- -* Version: 0.6.1 -* GitHub: https://github.com/diegovalle/rsinaica -* Source code: https://github.com/cran/rsinaica -* Date/Publication: 2019-02-04 21:10:03 UTC -* Number of recursive dependencies: 126 - -Run `revdepcheck::cloud_details(, "rsinaica")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/rsinaica/new/rsinaica.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘rsinaica/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘rsinaica’ version ‘0.6.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... -* checking data for non-ASCII characters ... NOTE - Note: found 467 marked UTF-8 strings -* checking LazyData ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* DONE -Status: 1 NOTE - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/rsinaica/old/rsinaica.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘rsinaica/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘rsinaica’ version ‘0.6.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... -* checking data for non-ASCII characters ... NOTE - Note: found 467 marked UTF-8 strings -* checking LazyData ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* DONE -Status: 1 NOTE - - - - - -``` -# rstac - -
- -* Version: 0.9.2-2 -* GitHub: https://github.com/brazil-data-cube/rstac -* Source code: https://github.com/cran/rstac -* Date/Publication: 2023-02-01 18:00:02 UTC -* Number of recursive dependencies: 115 - -Run `revdepcheck::cloud_details(, "rstac")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/rstac/new/rstac.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘rstac/DESCRIPTION’ ... OK -* this is package ‘rstac’ version ‘0.9.2-2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... ---- failed re-building ‘rstac-03-cql2-mpc.Rmd’ - -SUMMARY: processing the following file failed: - ‘rstac-03-cql2-mpc.Rmd’ - -Error: Vignette re-building failed. -Execution halted - +* 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 ... NONE + ‘openland_vignette.Rmd’ using ‘UTF-8’... OK +* checking re-building of vignette outputs ... OK * DONE -Status: 1 ERROR, 1 NOTE +Status: OK @@ -10122,260 +4590,44 @@ Status: 1 ERROR, 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/rstac/old/rstac.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/OpenLand/old/OpenLand.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘rstac/DESCRIPTION’ ... OK -* this is package ‘rstac’ version ‘0.9.2-2’ +* checking for file ‘OpenLand/DESCRIPTION’ ... OK +* this is package ‘OpenLand’ version ‘1.0.2’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... NOTE +* checking package dependencies ... OK ... ---- failed re-building ‘rstac-03-cql2-mpc.Rmd’ - -SUMMARY: processing the following file failed: - ‘rstac-03-cql2-mpc.Rmd’ - -Error: Vignette re-building failed. -Execution halted - +* 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 ... NONE + ‘openland_vignette.Rmd’ using ‘UTF-8’... OK +* checking re-building of vignette outputs ... OK * DONE -Status: 1 ERROR, 1 NOTE - - - - - -``` -# rxode2 - -
- -* Version: 2.0.11 -* GitHub: https://github.com/nlmixr2/rxode2 -* Source code: https://github.com/cran/rxode2 -* Date/Publication: 2022-11-01 21:45:04 UTC -* Number of recursive dependencies: 191 - -Run `revdepcheck::cloud_details(, "rxode2")` for more info - -
- -## In both - -* checking whether package ‘rxode2’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/rxode2/new/rxode2.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘rxode2’ ... -** package ‘rxode2’ successfully unpacked and MD5 sums checked -** using staged installation - -R version 4.2.1 (2022-06-23) -- "Funny-Looking Kid" -Copyright (C) 2022 The R Foundation for Statistical Computing -Platform: x86_64-pc-linux-gnu (64-bit) - -R is free software and comes with ABSOLUTELY NO WARRANTY. -You are welcome to redistribute it under certain conditions. -... -** demo -** inst -** byte-compile and prepare package for lazy loading -Error: .onLoad failed in loadNamespace() for 'rxode2parse', details: - call: NULL - error: rxode2parse compiled with dparser '1.3.1.9' but dparser '1.3.1.10' is loaded -Recompile rxode2parse with the this version of dparser -Execution halted -ERROR: lazy loading failed for package ‘rxode2’ -* removing ‘/tmp/workdir/rxode2/new/rxode2.Rcheck/rxode2’ - - -``` -### CRAN - -``` -* installing *source* package ‘rxode2’ ... -** package ‘rxode2’ successfully unpacked and MD5 sums checked -** using staged installation - -R version 4.2.1 (2022-06-23) -- "Funny-Looking Kid" -Copyright (C) 2022 The R Foundation for Statistical Computing -Platform: x86_64-pc-linux-gnu (64-bit) - -R is free software and comes with ABSOLUTELY NO WARRANTY. -You are welcome to redistribute it under certain conditions. -... -** demo -** inst -** byte-compile and prepare package for lazy loading -Error: .onLoad failed in loadNamespace() for 'rxode2parse', details: - call: NULL - error: rxode2parse compiled with dparser '1.3.1.9' but dparser '1.3.1.10' is loaded -Recompile rxode2parse with the this version of dparser -Execution halted -ERROR: lazy loading failed for package ‘rxode2’ -* removing ‘/tmp/workdir/rxode2/old/rxode2.Rcheck/rxode2’ - - -``` -# rxode2et - -
- -* Version: 2.0.9 -* GitHub: https://github.com/nlmixr2/rxode2et -* Source code: https://github.com/cran/rxode2et -* Date/Publication: 2022-10-13 17:20:02 UTC -* Number of recursive dependencies: 59 - -Run `revdepcheck::cloud_details(, "rxode2et")` for more info - -
- -## In both - -* checking whether package ‘rxode2et’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/rxode2et/new/rxode2et.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘rxode2et’ ... -** package ‘rxode2et’ successfully unpacked and MD5 sums checked -** using staged installation - -R version 4.2.1 (2022-06-23) -- "Funny-Looking Kid" -Copyright (C) 2022 The R Foundation for Statistical Computing -Platform: x86_64-pc-linux-gnu (64-bit) - -R is free software and comes with ABSOLUTELY NO WARRANTY. -You are welcome to redistribute it under certain conditions. -... -** R -** inst -** byte-compile and prepare package for lazy loading -Error: .onLoad failed in loadNamespace() for 'rxode2parse', details: - call: NULL - error: rxode2parse compiled with dparser '1.3.1.9' but dparser '1.3.1.10' is loaded -Recompile rxode2parse with the this version of dparser -Execution halted -ERROR: lazy loading failed for package ‘rxode2et’ -* removing ‘/tmp/workdir/rxode2et/new/rxode2et.Rcheck/rxode2et’ - - -``` -### CRAN - -``` -* installing *source* package ‘rxode2et’ ... -** package ‘rxode2et’ successfully unpacked and MD5 sums checked -** using staged installation - -R version 4.2.1 (2022-06-23) -- "Funny-Looking Kid" -Copyright (C) 2022 The R Foundation for Statistical Computing -Platform: x86_64-pc-linux-gnu (64-bit) - -R is free software and comes with ABSOLUTELY NO WARRANTY. -You are welcome to redistribute it under certain conditions. -... -** R -** inst -** byte-compile and prepare package for lazy loading -Error: .onLoad failed in loadNamespace() for 'rxode2parse', details: - call: NULL - error: rxode2parse compiled with dparser '1.3.1.9' but dparser '1.3.1.10' is loaded -Recompile rxode2parse with the this version of dparser -Execution halted -ERROR: lazy loading failed for package ‘rxode2et’ -* removing ‘/tmp/workdir/rxode2et/old/rxode2et.Rcheck/rxode2et’ - - -``` -# saeSim - -
- -* Version: 0.11.0 -* GitHub: https://github.com/wahani/saeSim -* Source code: https://github.com/cran/saeSim -* Date/Publication: 2022-02-07 16:40:02 UTC -* Number of recursive dependencies: 97 - -Run `revdepcheck::cloud_details(, "saeSim")` for more info - -
- -## In both - -* checking whether package ‘saeSim’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/saeSim/new/saeSim.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘saeSim’ ... -** package ‘saeSim’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** inst -** byte-compile and prepare package for lazy loading -Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘sf’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘saeSim’ -* removing ‘/tmp/workdir/saeSim/new/saeSim.Rcheck/saeSim’ +Status: OK -``` -### CRAN -``` -* installing *source* package ‘saeSim’ ... -** package ‘saeSim’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** inst -** byte-compile and prepare package for lazy loading -Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘sf’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘saeSim’ -* removing ‘/tmp/workdir/saeSim/old/saeSim.Rcheck/saeSim’ ``` -# SAMtool +# palaeoSig
-* Version: 1.5.1 -* GitHub: https://github.com/Blue-Matter/SAMtool -* Source code: https://github.com/cran/SAMtool -* Date/Publication: 2023-02-08 23:20:02 UTC -* Number of recursive dependencies: 178 +* Version: 2.1-3 +* GitHub: https://github.com/richardjtelford/palaeoSig +* Source code: https://github.com/cran/palaeoSig +* Date/Publication: 2023-03-10 09:30:02 UTC +* Number of recursive dependencies: 104 -Run `revdepcheck::cloud_details(, "SAMtool")` for more info +Run `revdepcheck::cloud_details(, "palaeoSig")` for more info
@@ -10384,98 +4636,27 @@ Run `revdepcheck::cloud_details(, "SAMtool")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/SAMtool/new/SAMtool.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘SAMtool/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘SAMtool’ version ‘1.5.1’ -* package encoding: UTF-8 -* checking package namespace information ... 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: 2 NOTEs - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/SAMtool/old/SAMtool.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/palaeoSig/new/palaeoSig.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘SAMtool/DESCRIPTION’ ... OK +* checking for file ‘palaeoSig/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘SAMtool’ version ‘1.5.1’ +* this is package ‘palaeoSig’ version ‘2.1-3’ * package encoding: UTF-8 * checking package namespace information ... 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: 2 NOTEs - - - - - -``` -# sandwichr - -
- -* Version: 1.0.3 -* GitHub: https://github.com/linyuehzzz/sandwich_spatial_interpolator -* Source code: https://github.com/cran/sandwichr -* Date/Publication: 2023-01-09 08:10:05 UTC -* Number of recursive dependencies: 143 - -Run `revdepcheck::cloud_details(, "sandwichr")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/sandwichr/new/sandwichr.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘sandwichr/DESCRIPTION’ ... OK -* this is package ‘sandwichr’ version ‘1.0.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'sf', 'lwgeom' +--- failed re-building ‘randomTF-spatial.Rmd’ + +SUMMARY: processing the following files failed: + ‘h-block-crossvalidation.Rmd’ ‘randomTF-spatial.Rmd’ + +Error: Vignette re-building failed. +Execution halted -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. * DONE -Status: 1 ERROR +Status: 1 ERROR, 1 WARNING, 1 NOTE @@ -10485,103 +4666,78 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/sandwichr/old/sandwichr.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/palaeoSig/old/palaeoSig.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘sandwichr/DESCRIPTION’ ... OK -* this is package ‘sandwichr’ version ‘1.0.3’ +* checking for file ‘palaeoSig/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘palaeoSig’ version ‘2.1-3’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'sf', 'lwgeom' +... +--- failed re-building ‘randomTF-spatial.Rmd’ + +SUMMARY: processing the following files failed: + ‘h-block-crossvalidation.Rmd’ ‘randomTF-spatial.Rmd’ + +Error: Vignette re-building failed. +Execution halted -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. * DONE -Status: 1 ERROR +Status: 1 ERROR, 1 WARNING, 1 NOTE ``` -# SDGdetector +# NA
-* Version: 2.7.1 +* Version: NA * GitHub: NA -* Source code: https://github.com/cran/SDGdetector -* Date/Publication: 2023-02-22 20:20:06 UTC -* Number of recursive dependencies: 74 +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "SDGdetector")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
-## In both - -* checking whether package ‘SDGdetector’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/SDGdetector/new/SDGdetector.Rcheck/00install.out’ for details. - ``` - -## Installation +## Error before installation ### Devel ``` -* installing *source* package ‘SDGdetector’ ... -** package ‘SDGdetector’ 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(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘sf’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘SDGdetector’ -* removing ‘/tmp/workdir/SDGdetector/new/SDGdetector.Rcheck/SDGdetector’ + + + + ``` ### CRAN ``` -* installing *source* package ‘SDGdetector’ ... -** package ‘SDGdetector’ 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(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘sf’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘SDGdetector’ -* removing ‘/tmp/workdir/SDGdetector/old/SDGdetector.Rcheck/SDGdetector’ + + + + ``` -# SDLfilter +# NA
-* Version: 2.3.1 -* GitHub: https://github.com/TakahiroShimada/SDLfilter -* Source code: https://github.com/cran/SDLfilter -* Date/Publication: 2023-01-16 08:00:06 UTC -* Number of recursive dependencies: 96 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "SDLfilter")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
@@ -10590,23 +4746,7 @@ Run `revdepcheck::cloud_details(, "SDLfilter")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/SDLfilter/new/SDLfilter.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘SDLfilter/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘SDLfilter’ version ‘2.3.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'sf', 'plotKML' -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR @@ -10616,40 +4756,24 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/SDLfilter/old/SDLfilter.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘SDLfilter/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘SDLfilter’ version ‘2.3.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'sf', 'plotKML' -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR ``` -# sdmApp +# PopGenHelpR
-* Version: 0.0.2 -* GitHub: https://github.com/Abson-dev/sdmApp -* Source code: https://github.com/cran/sdmApp -* Date/Publication: 2021-07-07 08:30:02 UTC -* Number of recursive dependencies: 169 +* Version: 1.0.0 +* GitHub: https://github.com/kfarleigh/PopGenHelpR +* Source code: https://github.com/cran/PopGenHelpR +* Date/Publication: 2023-02-13 08:40:05 UTC +* Number of recursive dependencies: 187 -Run `revdepcheck::cloud_details(, "sdmApp")` for more info +Run `revdepcheck::cloud_details(, "PopGenHelpR")` for more info
@@ -10658,16 +4782,16 @@ Run `revdepcheck::cloud_details(, "sdmApp")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/sdmApp/new/sdmApp.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/PopGenHelpR/new/PopGenHelpR.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘sdmApp/DESCRIPTION’ ... OK -* this is package ‘sdmApp’ version ‘0.0.2’ +* checking for file ‘PopGenHelpR/DESCRIPTION’ ... OK +* this is package ‘PopGenHelpR’ version ‘1.0.0’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... NOTE +* checking package dependencies ... OK ... * checking for unstated dependencies in ‘tests’ ... OK * checking tests ... OK @@ -10675,10 +4799,10 @@ Run `revdepcheck::cloud_details(, "sdmApp")` for more info * checking for unstated dependencies in vignettes ... OK * checking package vignettes in ‘inst/doc’ ... OK * checking running R code from vignettes ... NONE - ‘sdmApp.Rmd’ using ‘UTF-8’... OK + ‘PopGenHelpR_vignette.Rmd’ using ‘UTF-8’... OK * checking re-building of vignette outputs ... OK * DONE -Status: 2 NOTEs +Status: OK @@ -10688,16 +4812,16 @@ Status: 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/sdmApp/old/sdmApp.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/PopGenHelpR/old/PopGenHelpR.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘sdmApp/DESCRIPTION’ ... OK -* this is package ‘sdmApp’ version ‘0.0.2’ +* checking for file ‘PopGenHelpR/DESCRIPTION’ ... OK +* this is package ‘PopGenHelpR’ version ‘1.0.0’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... NOTE +* checking package dependencies ... OK ... * checking for unstated dependencies in ‘tests’ ... OK * checking tests ... OK @@ -10705,27 +4829,27 @@ Status: 2 NOTEs * checking for unstated dependencies in vignettes ... OK * checking package vignettes in ‘inst/doc’ ... OK * checking running R code from vignettes ... NONE - ‘sdmApp.Rmd’ using ‘UTF-8’... OK + ‘PopGenHelpR_vignette.Rmd’ using ‘UTF-8’... OK * checking re-building of vignette outputs ... OK * DONE -Status: 2 NOTEs +Status: OK ``` -# sf +# ppcSpatial
-* Version: 1.0-11 -* GitHub: https://github.com/r-spatial/sf -* Source code: https://github.com/cran/sf -* Date/Publication: 2023-03-15 12:10:08 UTC -* Number of recursive dependencies: 157 +* Version: 0.2.0 +* GitHub: https://github.com/MYaseen208/ppcSpatial +* Source code: https://github.com/cran/ppcSpatial +* Date/Publication: 2018-03-07 15:54:23 UTC +* Number of recursive dependencies: 118 -Run `revdepcheck::cloud_details(, "sf")` for more info +Run `revdepcheck::cloud_details(, "ppcSpatial")` for more info
@@ -10734,27 +4858,27 @@ Run `revdepcheck::cloud_details(, "sf")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/sf/new/sf.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/ppcSpatial/new/ppcSpatial.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘sf/DESCRIPTION’ ... OK -* this is package ‘sf’ version ‘1.0-11’ -* package encoding: UTF-8 +* checking for file ‘ppcSpatial/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘ppcSpatial’ version ‘0.2.0’ * checking package namespace information ... OK -* checking package dependencies ... NOTE +* checking package dependencies ... OK ... * checking if there is a namespace ... OK * checking for executable files ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking for sufficient/correct file permissions ... OK -* checking whether package ‘sf’ can be installed ... ERROR +* checking whether package ‘ppcSpatial’ can be installed ... ERROR Installation failed. -See ‘/tmp/workdir/sf/new/sf.Rcheck/00install.out’ for details. +See ‘/tmp/workdir/ppcSpatial/new/ppcSpatial.Rcheck/00install.out’ for details. * DONE -Status: 1 ERROR, 1 NOTE +Status: 1 ERROR @@ -10764,91 +4888,25 @@ Status: 1 ERROR, 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/sf/old/sf.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/ppcSpatial/old/ppcSpatial.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘sf/DESCRIPTION’ ... OK -* this is package ‘sf’ version ‘1.0-11’ -* package encoding: UTF-8 +* checking for file ‘ppcSpatial/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘ppcSpatial’ version ‘0.2.0’ * checking package namespace information ... OK -* checking package dependencies ... NOTE +* checking package dependencies ... OK ... * checking if there is a namespace ... OK * checking for executable files ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking for sufficient/correct file permissions ... OK -* checking whether package ‘sf’ can be installed ... ERROR +* checking whether package ‘ppcSpatial’ can be installed ... ERROR Installation failed. -See ‘/tmp/workdir/sf/old/sf.Rcheck/00install.out’ for details. -* DONE -Status: 1 ERROR, 1 NOTE - - - - - -``` -# sfdep - -
- -* Version: 0.2.3 -* GitHub: https://github.com/josiahparry/sfdep -* Source code: https://github.com/cran/sfdep -* Date/Publication: 2023-01-11 06:30:02 UTC -* Number of recursive dependencies: 99 - -Run `revdepcheck::cloud_details(, "sfdep")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/sfdep/new/sfdep.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘sfdep/DESCRIPTION’ ... OK -* this is package ‘sfdep’ version ‘0.2.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/sfdep/old/sfdep.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘sfdep/DESCRIPTION’ ... OK -* this is package ‘sfdep’ version ‘0.2.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. +See ‘/tmp/workdir/ppcSpatial/old/ppcSpatial.Rcheck/00install.out’ for details. * DONE Status: 1 ERROR @@ -10857,17 +4915,17 @@ Status: 1 ERROR ``` -# sfnetworks +# prioriactions
-* Version: 0.6.2 -* GitHub: https://github.com/luukvdmeer/sfnetworks -* Source code: https://github.com/cran/sfnetworks -* Date/Publication: 2023-02-26 19:00:02 UTC -* Number of recursive dependencies: 105 +* Version: 0.4.1 +* GitHub: https://github.com/prioriactions/prioriactions +* Source code: https://github.com/cran/prioriactions +* Date/Publication: 2022-08-16 13:30:02 UTC +* Number of recursive dependencies: 130 -Run `revdepcheck::cloud_details(, "sfnetworks")` for more info +Run `revdepcheck::cloud_details(, "prioriactions")` for more info
@@ -10876,22 +4934,27 @@ Run `revdepcheck::cloud_details(, "sfnetworks")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/sfnetworks/new/sfnetworks.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/prioriactions/new/prioriactions.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘sfnetworks/DESCRIPTION’ ... OK -* this is package ‘sfnetworks’ version ‘0.6.2’ +* checking for file ‘prioriactions/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘prioriactions’ version ‘0.4.1’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'lwgeom', 'sf' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. +... +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes in ‘inst/doc’ ... OK +* checking running R code from vignettes ... NONE + ‘objectives.Rmd’ using ‘UTF-8’... OK + ‘sensitivities.Rmd’ using ‘UTF-8’... OK + ‘MitchellRiver.Rmd’ using ‘UTF-8’... OK + ‘prioriactions.Rmd’ using ‘UTF-8’... OK +* checking re-building of vignette outputs ... OK * DONE -Status: 1 ERROR +Status: 2 NOTEs @@ -10901,107 +4964,104 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/sfnetworks/old/sfnetworks.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/prioriactions/old/prioriactions.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘sfnetworks/DESCRIPTION’ ... OK -* this is package ‘sfnetworks’ version ‘0.6.2’ +* checking for file ‘prioriactions/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘prioriactions’ version ‘0.4.1’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'lwgeom', 'sf' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. +... +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes in ‘inst/doc’ ... OK +* checking running R code from vignettes ... NONE + ‘objectives.Rmd’ using ‘UTF-8’... OK + ‘sensitivities.Rmd’ using ‘UTF-8’... OK + ‘MitchellRiver.Rmd’ using ‘UTF-8’... OK + ‘prioriactions.Rmd’ using ‘UTF-8’... OK +* checking re-building of vignette outputs ... OK * DONE -Status: 1 ERROR +Status: 2 NOTEs ``` -# sftime +# PSS.Health
-* Version: 0.2-0 +* Version: 0.6.1 * GitHub: NA -* Source code: https://github.com/cran/sftime -* Date/Publication: 2022-03-17 08:50:01 UTC -* Number of recursive dependencies: 79 +* Source code: https://github.com/cran/PSS.Health +* Date/Publication: 2023-02-01 17:50:11 UTC +* Number of recursive dependencies: 187 -Run `revdepcheck::cloud_details(, "sftime")` for more info +Run `revdepcheck::cloud_details(, "PSS.Health")` for more info
-## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/sftime/new/sftime.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘sftime/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘sftime’ version ‘0.2-0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ +## In both -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR +* checking whether package ‘PSS.Health’ can be installed ... ERROR + ``` + Installation failed. + See ‘/tmp/workdir/PSS.Health/new/PSS.Health.Rcheck/00install.out’ for details. + ``` +## Installation +### Devel +``` +* installing *source* package ‘PSS.Health’ ... +** package ‘PSS.Health’ successfully unpacked and MD5 sums checked +** using staged installation +** R +** inst +** byte-compile and prepare package for lazy loading +Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : + there is no package called ‘sf’ +Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: lazy loading failed for package ‘PSS.Health’ +* removing ‘/tmp/workdir/PSS.Health/new/PSS.Health.Rcheck/PSS.Health’ ``` ### CRAN ``` -* using log directory ‘/tmp/workdir/sftime/old/sftime.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘sftime/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘sftime’ version ‘0.2-0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - +* installing *source* package ‘PSS.Health’ ... +** package ‘PSS.Health’ successfully unpacked and MD5 sums checked +** using staged installation +** R +** inst +** byte-compile and prepare package for lazy loading +Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : + there is no package called ‘sf’ +Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: lazy loading failed for package ‘PSS.Health’ +* removing ‘/tmp/workdir/PSS.Health/old/PSS.Health.Rcheck/PSS.Health’ ``` -# ShellChron +# rangeModelMetadata
-* Version: 0.4.0 -* GitHub: https://github.com/nielsjdewinter/ShellChron -* Source code: https://github.com/cran/ShellChron -* Date/Publication: 2021-07-05 12:40:02 UTC -* Number of recursive dependencies: 118 +* Version: 0.1.4 +* GitHub: NA +* Source code: https://github.com/cran/rangeModelMetadata +* Date/Publication: 2021-06-11 08:40:02 UTC +* Number of recursive dependencies: 192 -Run `revdepcheck::cloud_details(, "ShellChron")` for more info +Run `revdepcheck::cloud_details(, "rangeModelMetadata")` for more info
@@ -11010,22 +5070,27 @@ Run `revdepcheck::cloud_details(, "ShellChron")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/ShellChron/new/ShellChron.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/rangeModelMetadata/new/rangeModelMetadata.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ShellChron/DESCRIPTION’ ... OK -* this is package ‘ShellChron’ version ‘0.4.0’ +* checking for file ‘rangeModelMetadata/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘rangeModelMetadata’ version ‘0.1.4’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘rtop’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. +... +* checking examples ... OK +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes in ‘inst/doc’ ... OK +* checking running R code from vignettes ... NONE + ‘rmm_Multispecies.Rmd’ using ‘UTF-8’... OK + ‘rmm_directory.Rmd’ using ‘UTF-8’... OK + ‘rmm_vignette.Rmd’ using ‘UTF-8’... OK +* checking re-building of vignette outputs ... OK * DONE -Status: 1 ERROR +Status: 3 NOTEs @@ -11035,39 +5100,44 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/ShellChron/old/ShellChron.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/rangeModelMetadata/old/rangeModelMetadata.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ShellChron/DESCRIPTION’ ... OK -* this is package ‘ShellChron’ version ‘0.4.0’ +* checking for file ‘rangeModelMetadata/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘rangeModelMetadata’ version ‘0.1.4’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘rtop’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. +... +* checking examples ... OK +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes in ‘inst/doc’ ... OK +* checking running R code from vignettes ... NONE + ‘rmm_Multispecies.Rmd’ using ‘UTF-8’... OK + ‘rmm_directory.Rmd’ using ‘UTF-8’... OK + ‘rmm_vignette.Rmd’ using ‘UTF-8’... OK +* checking re-building of vignette outputs ... OK * DONE -Status: 1 ERROR +Status: 3 NOTEs ``` -# simodels +# rbenvo
-* Version: 0.0.5 -* GitHub: https://github.com/robinlovelace/simodels -* Source code: https://github.com/cran/simodels -* Date/Publication: 2022-08-31 21:10:02 UTC -* Number of recursive dependencies: 97 +* Version: 1.0.5 +* GitHub: https://github.com/apeterson91/rbenvo +* Source code: https://github.com/cran/rbenvo +* Date/Publication: 2020-11-18 10:40:02 UTC +* Number of recursive dependencies: 104 -Run `revdepcheck::cloud_details(, "simodels")` for more info +Run `revdepcheck::cloud_details(, "rbenvo")` for more info
@@ -11076,19 +5146,20 @@ Run `revdepcheck::cloud_details(, "simodels")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/simodels/new/simodels.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/rbenvo/new/rbenvo.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘simodels/DESCRIPTION’ ... OK -* this is package ‘simodels’ version ‘0.0.5’ +* checking for file ‘rbenvo/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘rbenvo’ version ‘1.0.5’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR Package required but not available: ‘sf’ -Package suggested but not available for checking: ‘tmap’ +Package suggested but not available for checking: ‘lwgeom’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -11103,19 +5174,20 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/simodels/old/simodels.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/rbenvo/old/rbenvo.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘simodels/DESCRIPTION’ ... OK -* this is package ‘simodels’ version ‘0.0.5’ +* checking for file ‘rbenvo/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘rbenvo’ version ‘1.0.5’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR Package required but not available: ‘sf’ -Package suggested but not available for checking: ‘tmap’ +Package suggested but not available for checking: ‘lwgeom’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -11127,17 +5199,17 @@ Status: 1 ERROR ``` -# simplevis +# rcontroll
-* Version: 7.0.0 -* GitHub: https://github.com/StatisticsNZ/simplevis -* Source code: https://github.com/cran/simplevis -* Date/Publication: 2023-01-29 20:00:02 UTC -* Number of recursive dependencies: 122 +* Version: 0.1.0 +* GitHub: https://github.com/sylvainschmitt/rcontroll +* Source code: https://github.com/cran/rcontroll +* Date/Publication: 2023-02-11 15:20:02 UTC +* Number of recursive dependencies: 128 -Run `revdepcheck::cloud_details(, "simplevis")` for more info +Run `revdepcheck::cloud_details(, "rcontroll")` for more info
@@ -11146,21 +5218,25 @@ Run `revdepcheck::cloud_details(, "simplevis")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/simplevis/new/simplevis.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/rcontroll/new/rcontroll.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘simplevis/DESCRIPTION’ ... OK +* checking for file ‘rcontroll/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘simplevis’ version ‘7.0.0’ +* this is package ‘rcontroll’ version ‘0.1.0’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. +... +* checking if there is a namespace ... OK +* checking for executable files ... OK +* checking for hidden files and directories ... OK +* checking for portable file names ... OK +* checking for sufficient/correct file permissions ... OK +* checking whether package ‘rcontroll’ can be installed ... ERROR +Installation failed. +See ‘/tmp/workdir/rcontroll/new/rcontroll.Rcheck/00install.out’ for details. * DONE Status: 1 ERROR @@ -11172,21 +5248,25 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/simplevis/old/simplevis.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/rcontroll/old/rcontroll.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘simplevis/DESCRIPTION’ ... OK +* checking for file ‘rcontroll/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘simplevis’ version ‘7.0.0’ +* this is package ‘rcontroll’ version ‘0.1.0’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. +... +* checking if there is a namespace ... OK +* checking for executable files ... OK +* checking for hidden files and directories ... OK +* checking for portable file names ... OK +* checking for sufficient/correct file permissions ... OK +* checking whether package ‘rcontroll’ can be installed ... ERROR +Installation failed. +See ‘/tmp/workdir/rcontroll/old/rcontroll.Rcheck/00install.out’ for details. * DONE Status: 1 ERROR @@ -11195,47 +5275,26 @@ Status: 1 ERROR ``` -# sjPlot +# NA
-* Version: 2.8.13 -* GitHub: https://github.com/strengejacke/sjPlot -* Source code: https://github.com/cran/sjPlot -* Date/Publication: 2023-03-13 17:10:10 UTC -* Number of recursive dependencies: 186 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "sjPlot")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
-## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/sjPlot/new/sjPlot.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘sjPlot/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘sjPlot’ version ‘2.8.13’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... - ‘plot_model_estimates.Rmd’ using ‘UTF-8’... OK - ‘sjtitemanalysis.Rmd’ using ‘UTF-8’... OK - ‘tab_bayes.Rmd’ using ‘UTF-8’... OK - ‘tab_mixed.Rmd’ using ‘UTF-8’... OK - ‘tab_model_estimates.Rmd’ using ‘UTF-8’... OK - ‘tab_model_robust.Rmd’ using ‘UTF-8’... OK - ‘table_css.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - +## Error before installation + +### Devel + +``` + + @@ -11244,44 +5303,24 @@ Status: 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/sjPlot/old/sjPlot.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘sjPlot/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘sjPlot’ version ‘2.8.13’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... - ‘plot_model_estimates.Rmd’ using ‘UTF-8’... OK - ‘sjtitemanalysis.Rmd’ using ‘UTF-8’... OK - ‘tab_bayes.Rmd’ using ‘UTF-8’... OK - ‘tab_mixed.Rmd’ using ‘UTF-8’... OK - ‘tab_model_estimates.Rmd’ using ‘UTF-8’... OK - ‘tab_model_robust.Rmd’ using ‘UTF-8’... OK - ‘table_css.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE + ``` -# sjstats +# redist
-* Version: 0.18.2 -* GitHub: https://github.com/strengejacke/sjstats -* Source code: https://github.com/cran/sjstats -* Date/Publication: 2022-11-19 22:10:02 UTC -* Number of recursive dependencies: 166 +* Version: 4.0.1 +* GitHub: https://github.com/alarm-redist/redist +* Source code: https://github.com/cran/redist +* Date/Publication: 2022-06-16 06:20:07 UTC +* Number of recursive dependencies: 150 -Run `revdepcheck::cloud_details(, "sjstats")` for more info +Run `revdepcheck::cloud_details(, "redist")` for more info
@@ -11290,27 +5329,24 @@ Run `revdepcheck::cloud_details(, "sjstats")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/sjstats/new/sjstats.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/redist/new/redist.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘sjstats/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘sjstats’ version ‘0.18.2’ +* checking for file ‘redist/DESCRIPTION’ ... OK +* this is package ‘redist’ version ‘4.0.1’ * package encoding: UTF-8 * checking package namespace information ... OK -... -* checking for unstated dependencies in examples ... OK -* checking contents of ‘data’ directory ... OK -* checking data for non-ASCII characters ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +Package suggested but not available for checking: ‘lwgeom’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 NOTEs +Status: 1 ERROR @@ -11320,44 +5356,40 @@ Status: 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/sjstats/old/sjstats.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/redist/old/redist.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘sjstats/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘sjstats’ version ‘0.18.2’ +* checking for file ‘redist/DESCRIPTION’ ... OK +* this is package ‘redist’ version ‘4.0.1’ * package encoding: UTF-8 * checking package namespace information ... OK -... -* checking for unstated dependencies in examples ... OK -* checking contents of ‘data’ directory ... OK -* checking data for non-ASCII characters ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +Package suggested but not available for checking: ‘lwgeom’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 NOTEs +Status: 1 ERROR ``` -# sknifedatar +# NA
-* Version: 0.1.2 -* GitHub: https://github.com/rafzamb/sknifedatar -* Source code: https://github.com/cran/sknifedatar -* Date/Publication: 2021-06-01 08:00:02 UTC -* Number of recursive dependencies: 180 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "sknifedatar")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
@@ -11366,27 +5398,7 @@ Run `revdepcheck::cloud_details(, "sknifedatar")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/sknifedatar/new/sknifedatar.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘sknifedatar/DESCRIPTION’ ... OK -* this is package ‘sknifedatar’ version ‘0.1.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... OK -... -* checking contents of ‘data’ directory ... OK -* checking data for non-ASCII characters ... OK -* checking LazyData ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘spelling.R’ -* DONE -Status: OK + @@ -11396,44 +5408,24 @@ Status: OK ### CRAN ``` -* using log directory ‘/tmp/workdir/sknifedatar/old/sknifedatar.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘sknifedatar/DESCRIPTION’ ... OK -* this is package ‘sknifedatar’ version ‘0.1.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... OK -... -* checking contents of ‘data’ directory ... OK -* checking data for non-ASCII characters ... OK -* checking LazyData ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘spelling.R’ -* DONE -Status: OK + ``` -# slendr +# roads
-* Version: 0.5.1 -* GitHub: https://github.com/bodkan/slendr -* Source code: https://github.com/cran/slendr -* Date/Publication: 2023-03-09 19:40:02 UTC -* Number of recursive dependencies: 129 +* Version: 1.1.0 +* GitHub: https://github.com/LandSciTech/roads +* Source code: https://github.com/cran/roads +* Date/Publication: 2023-02-02 16:10:02 UTC +* Number of recursive dependencies: 111 -Run `revdepcheck::cloud_details(, "slendr")` for more info +Run `revdepcheck::cloud_details(, "roads")` for more info
@@ -11442,13 +5434,13 @@ Run `revdepcheck::cloud_details(, "slendr")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/slendr/new/slendr.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/roads/new/roads.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘slendr/DESCRIPTION’ ... OK -* this is package ‘slendr’ version ‘0.5.1’ +* checking for file ‘roads/DESCRIPTION’ ... OK +* this is package ‘roads’ version ‘1.1.0’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -11467,13 +5459,13 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/slendr/old/slendr.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/roads/old/roads.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘slendr/DESCRIPTION’ ... OK -* this is package ‘slendr’ version ‘0.5.1’ +* checking for file ‘roads/DESCRIPTION’ ... OK +* this is package ‘roads’ version ‘1.1.0’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -11489,144 +5481,85 @@ Status: 1 ERROR ``` -# sociome +# Rsagacmd
-* Version: 2.1.0 -* GitHub: https://github.com/NikKrieger/sociome -* Source code: https://github.com/cran/sociome -* Date/Publication: 2021-10-21 09:10:01 UTC -* Number of recursive dependencies: 97 +* Version: 0.2.0 +* GitHub: https://github.com/stevenpawley/Rsagacmd +* Source code: https://github.com/cran/Rsagacmd +* Date/Publication: 2022-04-04 04:10:02 UTC +* Number of recursive dependencies: 70 -Run `revdepcheck::cloud_details(, "sociome")` for more info +Run `revdepcheck::cloud_details(, "Rsagacmd")` for more info
-## In both - -* checking whether package ‘sociome’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/sociome/new/sociome.Rcheck/00install.out’ for details. - ``` - -* checking package dependencies ... NOTE - ``` - Package suggested but not available for checking: ‘sf’ - ``` - -## Installation +## Error before installation ### Devel ``` -* installing *source* package ‘sociome’ ... -** package ‘sociome’ 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(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘sf’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘sociome’ -* removing ‘/tmp/workdir/sociome/new/sociome.Rcheck/sociome’ - - -``` -### CRAN - -``` -* installing *source* package ‘sociome’ ... -** package ‘sociome’ 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(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘sf’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘sociome’ -* removing ‘/tmp/workdir/sociome/old/sociome.Rcheck/sociome’ - - -``` -# SOMEnv - -
- -* Version: 1.1.2 -* GitHub: https://github.com/SomEnv/somenv -* Source code: https://github.com/cran/SOMEnv -* Date/Publication: 2021-07-26 13:30:02 UTC -* Number of recursive dependencies: 100 +* using log directory ‘/tmp/workdir/Rsagacmd/new/Rsagacmd.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘Rsagacmd/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘Rsagacmd’ version ‘0.2.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ -Run `revdepcheck::cloud_details(, "SOMEnv")` for more info +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR -
-## In both -* checking whether package ‘SOMEnv’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/SOMEnv/new/SOMEnv.Rcheck/00install.out’ for details. - ``` -## Installation -### Devel +``` +### CRAN ``` -* installing *source* package ‘SOMEnv’ ... -** package ‘SOMEnv’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** inst -** byte-compile and prepare package for lazy loading -Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘tidyr’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘SOMEnv’ -* removing ‘/tmp/workdir/SOMEnv/new/SOMEnv.Rcheck/SOMEnv’ +* using log directory ‘/tmp/workdir/Rsagacmd/old/Rsagacmd.Rcheck’ +* using R version 4.1.1 (2021-08-10) +* using platform: x86_64-pc-linux-gnu (64-bit) +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘Rsagacmd/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘Rsagacmd’ version ‘0.2.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR -``` -### CRAN -``` -* installing *source* package ‘SOMEnv’ ... -** package ‘SOMEnv’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** inst -** byte-compile and prepare package for lazy loading -Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘tidyr’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘SOMEnv’ -* removing ‘/tmp/workdir/SOMEnv/old/SOMEnv.Rcheck/SOMEnv’ ``` -# SpaDES.tools +# rsinaica
-* Version: 1.0.1 -* GitHub: https://github.com/PredictiveEcology/SpaDES.tools -* Source code: https://github.com/cran/SpaDES.tools -* Date/Publication: 2023-01-05 15:20:19 UTC -* Number of recursive dependencies: 117 +* Version: 0.6.1 +* GitHub: https://github.com/diegovalle/rsinaica +* Source code: https://github.com/cran/rsinaica +* Date/Publication: 2019-02-04 21:10:03 UTC +* Number of recursive dependencies: 126 -Run `revdepcheck::cloud_details(, "SpaDES.tools")` for more info +Run `revdepcheck::cloud_details(, "rsinaica")` for more info
@@ -11635,25 +5568,25 @@ Run `revdepcheck::cloud_details(, "SpaDES.tools")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/SpaDES.tools/new/SpaDES.tools.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/rsinaica/new/rsinaica.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘SpaDES.tools/DESCRIPTION’ ... OK +* checking for file ‘rsinaica/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘SpaDES.tools’ version ‘1.0.1’ +* this is package ‘rsinaica’ version ‘0.6.1’ * package encoding: UTF-8 * checking package namespace information ... OK ... -* checking Rd contents ... OK -* checking for unstated dependencies in examples ... OK -* checking line endings in C/C++/Fortran sources/headers ... OK -* checking compiled code ... OK +* checking data for non-ASCII characters ... NOTE + Note: found 467 marked UTF-8 strings +* checking LazyData ... OK +* checking data for ASCII and uncompressed saves ... OK * checking examples ... OK * checking for unstated dependencies in ‘tests’ ... OK * checking tests ... OK - Running ‘test-all.R’ + Running ‘testthat.R’ * DONE Status: 1 NOTE @@ -11665,25 +5598,25 @@ Status: 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/SpaDES.tools/old/SpaDES.tools.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/rsinaica/old/rsinaica.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘SpaDES.tools/DESCRIPTION’ ... OK +* checking for file ‘rsinaica/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘SpaDES.tools’ version ‘1.0.1’ +* this is package ‘rsinaica’ version ‘0.6.1’ * package encoding: UTF-8 * checking package namespace information ... OK ... -* checking Rd contents ... OK -* checking for unstated dependencies in examples ... OK -* checking line endings in C/C++/Fortran sources/headers ... OK -* checking compiled code ... OK +* checking data for non-ASCII characters ... NOTE + Note: found 467 marked UTF-8 strings +* checking LazyData ... OK +* checking data for ASCII and uncompressed saves ... OK * checking examples ... OK * checking for unstated dependencies in ‘tests’ ... OK * checking tests ... OK - Running ‘test-all.R’ + Running ‘testthat.R’ * DONE Status: 1 NOTE @@ -11692,26 +5625,26 @@ Status: 1 NOTE ``` -# SPARTAAS +# saeSim
-* Version: 1.1.0 -* GitHub: NA -* Source code: https://github.com/cran/SPARTAAS -* Date/Publication: 2021-10-22 14:30:02 UTC -* Number of recursive dependencies: 184 +* Version: 0.11.0 +* GitHub: https://github.com/wahani/saeSim +* Source code: https://github.com/cran/saeSim +* Date/Publication: 2022-02-07 16:40:02 UTC +* Number of recursive dependencies: 97 -Run `revdepcheck::cloud_details(, "SPARTAAS")` for more info +Run `revdepcheck::cloud_details(, "saeSim")` for more info
## In both -* checking whether package ‘SPARTAAS’ can be installed ... ERROR +* checking whether package ‘saeSim’ can be installed ... ERROR ``` Installation failed. - See ‘/tmp/workdir/SPARTAAS/new/SPARTAAS.Rcheck/00install.out’ for details. + See ‘/tmp/workdir/saeSim/new/saeSim.Rcheck/00install.out’ for details. ``` ## Installation @@ -11719,54 +5652,50 @@ Run `revdepcheck::cloud_details(, "SPARTAAS")` for more info ### Devel ``` -* installing *source* package ‘SPARTAAS’ ... -** package ‘SPARTAAS’ successfully unpacked and MD5 sums checked +* installing *source* package ‘saeSim’ ... +** package ‘saeSim’ 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(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : there is no package called ‘sf’ Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart Execution halted -ERROR: lazy loading failed for package ‘SPARTAAS’ -* removing ‘/tmp/workdir/SPARTAAS/new/SPARTAAS.Rcheck/SPARTAAS’ +ERROR: lazy loading failed for package ‘saeSim’ +* removing ‘/tmp/workdir/saeSim/new/saeSim.Rcheck/saeSim’ ``` ### CRAN ``` -* installing *source* package ‘SPARTAAS’ ... -** package ‘SPARTAAS’ successfully unpacked and MD5 sums checked +* installing *source* package ‘saeSim’ ... +** package ‘saeSim’ 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(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : there is no package called ‘sf’ Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart Execution halted -ERROR: lazy loading failed for package ‘SPARTAAS’ -* removing ‘/tmp/workdir/SPARTAAS/old/SPARTAAS.Rcheck/SPARTAAS’ +ERROR: lazy loading failed for package ‘saeSim’ +* removing ‘/tmp/workdir/saeSim/old/saeSim.Rcheck/saeSim’ ``` -# spatgeom +# sandwichr
-* Version: 0.2.0 -* GitHub: https://github.com/maikol-solis/spatgeom -* Source code: https://github.com/cran/spatgeom -* Date/Publication: 2023-02-14 19:00:02 UTC -* Number of recursive dependencies: 81 +* Version: 1.0.3 +* GitHub: https://github.com/linyuehzzz/sandwich_spatial_interpolator +* Source code: https://github.com/cran/sandwichr +* Date/Publication: 2023-01-09 08:10:05 UTC +* Number of recursive dependencies: 143 -Run `revdepcheck::cloud_details(, "spatgeom")` for more info +Run `revdepcheck::cloud_details(, "sandwichr")` for more info
@@ -11775,14 +5704,13 @@ Run `revdepcheck::cloud_details(, "spatgeom")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/spatgeom/new/spatgeom.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/sandwichr/new/sandwichr.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘spatgeom/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘spatgeom’ version ‘0.2.0’ +* checking for file ‘sandwichr/DESCRIPTION’ ... OK +* this is package ‘sandwichr’ version ‘1.0.3’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -11801,14 +5729,13 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/spatgeom/old/spatgeom.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/sandwichr/old/sandwichr.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘spatgeom/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘spatgeom’ version ‘0.2.0’ +* checking for file ‘sandwichr/DESCRIPTION’ ... OK +* this is package ‘sandwichr’ version ‘1.0.3’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -11824,26 +5751,61 @@ Status: 1 ERROR ``` -# SpatialEpi +# NA
-* Version: 1.2.8 -* GitHub: https://github.com/rudeboybert/SpatialEpi -* Source code: https://github.com/cran/SpatialEpi -* Date/Publication: 2023-02-22 00:50:04 UTC -* Number of recursive dependencies: 86 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 + +Run `revdepcheck::cloud_details(, "NA")` for more info + +
+ +## Error before installation + +### Devel + +``` + + + + + + +``` +### CRAN + +``` + + + + + + +``` +# SDGdetector + +
+ +* Version: 2.7.1 +* GitHub: NA +* Source code: https://github.com/cran/SDGdetector +* Date/Publication: 2023-02-22 20:20:06 UTC +* Number of recursive dependencies: 74 -Run `revdepcheck::cloud_details(, "SpatialEpi")` for more info +Run `revdepcheck::cloud_details(, "SDGdetector")` for more info
## In both -* checking whether package ‘SpatialEpi’ can be installed ... ERROR +* checking whether package ‘SDGdetector’ can be installed ... ERROR ``` Installation failed. - See ‘/tmp/workdir/SpatialEpi/new/SpatialEpi.Rcheck/00install.out’ for details. + See ‘/tmp/workdir/SDGdetector/new/SDGdetector.Rcheck/00install.out’ for details. ``` ## Installation @@ -11851,64 +5813,54 @@ Run `revdepcheck::cloud_details(, "SpatialEpi")` for more info ### Devel ``` -* installing *source* package ‘SpatialEpi’ ... -** package ‘SpatialEpi’ successfully unpacked and MD5 sums checked +* installing *source* package ‘SDGdetector’ ... +** package ‘SDGdetector’ successfully unpacked and MD5 sums checked ** using staged installation -** libs -g++ -std=gnu++14 -I"/opt/R/4.2.1/lib/R/include" -DNDEBUG -I'/opt/R/4.2.1/lib/R/site-library/Rcpp/include' -I'/opt/R/4.2.1/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o -g++ -std=gnu++14 -I"/opt/R/4.2.1/lib/R/include" -DNDEBUG -I'/opt/R/4.2.1/lib/R/site-library/Rcpp/include' -I'/opt/R/4.2.1/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c bayes_cluster.cpp -o bayes_cluster.o -g++ -std=gnu++14 -I"/opt/R/4.2.1/lib/R/include" -DNDEBUG -I'/opt/R/4.2.1/lib/R/site-library/Rcpp/include' -I'/opt/R/4.2.1/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c cluster_detection.cpp -o cluster_detection.o -g++ -std=gnu++14 -shared -L/opt/R/4.2.1/lib/R/lib -L/usr/local/lib -o SpatialEpi.so RcppExports.o bayes_cluster.o cluster_detection.o -L/opt/R/4.2.1/lib/R/lib -lR -installing to /tmp/workdir/SpatialEpi/new/SpatialEpi.Rcheck/00LOCK-SpatialEpi/00new/SpatialEpi/libs ** R ** data *** moving datasets to lazyload DB +** inst ** byte-compile and prepare package for lazy loading Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : there is no package called ‘sf’ Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart Execution halted -ERROR: lazy loading failed for package ‘SpatialEpi’ -* removing ‘/tmp/workdir/SpatialEpi/new/SpatialEpi.Rcheck/SpatialEpi’ +ERROR: lazy loading failed for package ‘SDGdetector’ +* removing ‘/tmp/workdir/SDGdetector/new/SDGdetector.Rcheck/SDGdetector’ ``` ### CRAN ``` -* installing *source* package ‘SpatialEpi’ ... -** package ‘SpatialEpi’ successfully unpacked and MD5 sums checked +* installing *source* package ‘SDGdetector’ ... +** package ‘SDGdetector’ successfully unpacked and MD5 sums checked ** using staged installation -** libs -g++ -std=gnu++14 -I"/opt/R/4.2.1/lib/R/include" -DNDEBUG -I'/opt/R/4.2.1/lib/R/site-library/Rcpp/include' -I'/opt/R/4.2.1/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o -g++ -std=gnu++14 -I"/opt/R/4.2.1/lib/R/include" -DNDEBUG -I'/opt/R/4.2.1/lib/R/site-library/Rcpp/include' -I'/opt/R/4.2.1/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c bayes_cluster.cpp -o bayes_cluster.o -g++ -std=gnu++14 -I"/opt/R/4.2.1/lib/R/include" -DNDEBUG -I'/opt/R/4.2.1/lib/R/site-library/Rcpp/include' -I'/opt/R/4.2.1/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c cluster_detection.cpp -o cluster_detection.o -g++ -std=gnu++14 -shared -L/opt/R/4.2.1/lib/R/lib -L/usr/local/lib -o SpatialEpi.so RcppExports.o bayes_cluster.o cluster_detection.o -L/opt/R/4.2.1/lib/R/lib -lR -installing to /tmp/workdir/SpatialEpi/old/SpatialEpi.Rcheck/00LOCK-SpatialEpi/00new/SpatialEpi/libs ** R ** data *** moving datasets to lazyload DB +** inst ** byte-compile and prepare package for lazy loading Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : there is no package called ‘sf’ Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart Execution halted -ERROR: lazy loading failed for package ‘SpatialEpi’ -* removing ‘/tmp/workdir/SpatialEpi/old/SpatialEpi.Rcheck/SpatialEpi’ +ERROR: lazy loading failed for package ‘SDGdetector’ +* removing ‘/tmp/workdir/SDGdetector/old/SDGdetector.Rcheck/SDGdetector’ ``` -# SpatialKDE +# SDLfilter
-* Version: 0.8.2 -* GitHub: https://github.com/JanCaha/SpatialKDE -* Source code: https://github.com/cran/SpatialKDE -* Date/Publication: 2023-02-18 15:10:02 UTC -* Number of recursive dependencies: 112 +* Version: 2.3.1 +* GitHub: https://github.com/TakahiroShimada/SDLfilter +* Source code: https://github.com/cran/SDLfilter +* Date/Publication: 2023-01-16 08:00:06 UTC +* Number of recursive dependencies: 96 -Run `revdepcheck::cloud_details(, "SpatialKDE")` for more info +Run `revdepcheck::cloud_details(, "SDLfilter")` for more info
@@ -11917,21 +5869,19 @@ Run `revdepcheck::cloud_details(, "SpatialKDE")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/SpatialKDE/new/SpatialKDE.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/SDLfilter/new/SDLfilter.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘SpatialKDE/DESCRIPTION’ ... OK +* checking for file ‘SDLfilter/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘SpatialKDE’ version ‘0.8.2’ +* this is package ‘SDLfilter’ version ‘2.3.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR Package required but not available: ‘sf’ -Package suggested but not available for checking: ‘tmap’ - See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. * DONE @@ -11945,89 +5895,19 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/SpatialKDE/old/SpatialKDE.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/SDLfilter/old/SDLfilter.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘SpatialKDE/DESCRIPTION’ ... OK +* checking for file ‘SDLfilter/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘SpatialKDE’ version ‘0.8.2’ +* this is package ‘SDLfilter’ version ‘2.3.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR Package required but not available: ‘sf’ -Package suggested but not available for checking: ‘tmap’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# spatialrisk - -
- -* Version: 0.7.0 -* GitHub: https://github.com/mharinga/spatialrisk -* Source code: https://github.com/cran/spatialrisk -* Date/Publication: 2021-11-10 15:30:02 UTC -* Number of recursive dependencies: 134 - -Run `revdepcheck::cloud_details(, "spatialrisk")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/spatialrisk/new/spatialrisk.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘spatialrisk/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘spatialrisk’ version ‘0.7.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'sf', 'tmap' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/spatialrisk/old/spatialrisk.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘spatialrisk/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘spatialrisk’ version ‘0.7.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'sf', 'tmap' - See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. * DONE @@ -12038,17 +5918,17 @@ Status: 1 ERROR ``` -# spatialsample +# sfnetworks
-* Version: 0.3.0 -* GitHub: https://github.com/tidymodels/spatialsample -* Source code: https://github.com/cran/spatialsample -* Date/Publication: 2023-01-17 16:10:02 UTC -* Number of recursive dependencies: 106 +* Version: 0.6.2 +* GitHub: https://github.com/luukvdmeer/sfnetworks +* Source code: https://github.com/cran/sfnetworks +* Date/Publication: 2023-02-26 19:00:02 UTC +* Number of recursive dependencies: 105 -Run `revdepcheck::cloud_details(, "spatialsample")` for more info +Run `revdepcheck::cloud_details(, "sfnetworks")` for more info
@@ -12057,19 +5937,17 @@ Run `revdepcheck::cloud_details(, "spatialsample")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/spatialsample/new/spatialsample.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/sfnetworks/new/sfnetworks.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘spatialsample/DESCRIPTION’ ... OK -* this is package ‘spatialsample’ version ‘0.3.0’ +* checking for file ‘sfnetworks/DESCRIPTION’ ... OK +* this is package ‘sfnetworks’ version ‘0.6.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘lwgeom’ +Packages required but not available: 'lwgeom', 'sf' See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -12084,19 +5962,17 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/spatialsample/old/spatialsample.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/sfnetworks/old/sfnetworks.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘spatialsample/DESCRIPTION’ ... OK -* this is package ‘spatialsample’ version ‘0.3.0’ +* checking for file ‘sfnetworks/DESCRIPTION’ ... OK +* this is package ‘sfnetworks’ version ‘0.6.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘lwgeom’ +Packages required but not available: 'lwgeom', 'sf' See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -12108,17 +5984,17 @@ Status: 1 ERROR ``` -# spDates +# ShellChron
-* Version: 1.1 -* GitHub: NA -* Source code: https://github.com/cran/spDates -* Date/Publication: 2022-10-09 10:30:02 UTC -* Number of recursive dependencies: 82 +* Version: 0.4.0 +* GitHub: https://github.com/nielsjdewinter/ShellChron +* Source code: https://github.com/cran/ShellChron +* Date/Publication: 2021-07-05 12:40:02 UTC +* Number of recursive dependencies: 118 -Run `revdepcheck::cloud_details(, "spDates")` for more info +Run `revdepcheck::cloud_details(, "ShellChron")` for more info
@@ -12127,25 +6003,20 @@ Run `revdepcheck::cloud_details(, "spDates")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/spDates/new/spDates.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/ShellChron/new/ShellChron.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘spDates/DESCRIPTION’ ... OK -* this is package ‘spDates’ version ‘1.1’ +* checking for file ‘ShellChron/DESCRIPTION’ ... OK +* this is package ‘ShellChron’ version ‘0.4.0’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... OK -... -* checking if there is a namespace ... OK -* checking for executable files ... OK -* checking for hidden files and directories ... OK -* checking for portable file names ... OK -* checking for sufficient/correct file permissions ... OK -* checking whether package ‘spDates’ can be installed ... ERROR -Installation failed. -See ‘/tmp/workdir/spDates/new/spDates.Rcheck/00install.out’ for details. +* checking package dependencies ... ERROR +Package required but not available: ‘rtop’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE Status: 1 ERROR @@ -12157,25 +6028,20 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/spDates/old/spDates.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/ShellChron/old/ShellChron.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘spDates/DESCRIPTION’ ... OK -* this is package ‘spDates’ version ‘1.1’ +* checking for file ‘ShellChron/DESCRIPTION’ ... OK +* this is package ‘ShellChron’ version ‘0.4.0’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... OK -... -* checking if there is a namespace ... OK -* checking for executable files ... OK -* checking for hidden files and directories ... OK -* checking for portable file names ... OK -* checking for sufficient/correct file permissions ... OK -* checking whether package ‘spDates’ can be installed ... ERROR -Installation failed. -See ‘/tmp/workdir/spDates/old/spDates.Rcheck/00install.out’ for details. +* checking package dependencies ... ERROR +Package required but not available: ‘rtop’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE Status: 1 ERROR @@ -12184,81 +6050,52 @@ Status: 1 ERROR ``` -# spectacles +# NA
-* Version: 0.5-3 -* GitHub: https://github.com/pierreroudier/spectacles -* Source code: https://github.com/cran/spectacles -* Date/Publication: 2021-01-11 08:00:02 UTC -* Number of recursive dependencies: 140 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "spectacles")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
-## In both - -* checking whether package ‘spectacles’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/spectacles/new/spectacles.Rcheck/00install.out’ for details. - ``` - -## Installation +## Error before installation ### Devel ``` -* installing *source* package ‘spectacles’ ... -** package ‘spectacles’ 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(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘sf’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘spectacles’ -* removing ‘/tmp/workdir/spectacles/new/spectacles.Rcheck/spectacles’ + + + + ``` ### CRAN ``` -* installing *source* package ‘spectacles’ ... -** package ‘spectacles’ 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(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘sf’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘spectacles’ -* removing ‘/tmp/workdir/spectacles/old/spectacles.Rcheck/spectacles’ + + + + ``` -# spnaf +# simodels
-* Version: 0.2.1 -* GitHub: NA -* Source code: https://github.com/cran/spnaf -* Date/Publication: 2022-08-25 08:20:02 UTC -* Number of recursive dependencies: 100 +* Version: 0.0.5 +* GitHub: https://github.com/robinlovelace/simodels +* Source code: https://github.com/cran/simodels +* Date/Publication: 2022-08-31 21:10:02 UTC +* Number of recursive dependencies: 97 -Run `revdepcheck::cloud_details(, "spnaf")` for more info +Run `revdepcheck::cloud_details(, "simodels")` for more info
@@ -12267,21 +6104,18 @@ Run `revdepcheck::cloud_details(, "spnaf")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/spnaf/new/spnaf.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/simodels/new/simodels.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘spnaf/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘spnaf’ version ‘0.2.1’ +* checking for file ‘simodels/DESCRIPTION’ ... OK +* this is package ‘simodels’ version ‘0.0.5’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR Package required but not available: ‘sf’ -Package suggested but not available for checking: ‘tmap’ - See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. * DONE @@ -12295,21 +6129,18 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/spnaf/old/spnaf.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/simodels/old/simodels.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘spnaf/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘spnaf’ version ‘0.2.1’ +* checking for file ‘simodels/DESCRIPTION’ ... OK +* this is package ‘simodels’ version ‘0.0.5’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR Package required but not available: ‘sf’ -Package suggested but not available for checking: ‘tmap’ - See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. * DONE @@ -12320,17 +6151,17 @@ Status: 1 ERROR ``` -# spNetwork +# simplevis
-* Version: 0.4.3.6 -* GitHub: https://github.com/JeremyGelb/spNetwork -* Source code: https://github.com/cran/spNetwork -* Date/Publication: 2022-11-11 08:10:02 UTC -* Number of recursive dependencies: 149 +* Version: 7.0.0 +* GitHub: https://github.com/StatisticsNZ/simplevis +* Source code: https://github.com/cran/simplevis +* Date/Publication: 2023-01-29 20:00:02 UTC +* Number of recursive dependencies: 122 -Run `revdepcheck::cloud_details(, "spNetwork")` for more info +Run `revdepcheck::cloud_details(, "simplevis")` for more info
@@ -12339,21 +6170,19 @@ Run `revdepcheck::cloud_details(, "spNetwork")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/spNetwork/new/spNetwork.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/simplevis/new/simplevis.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘spNetwork/DESCRIPTION’ ... OK +* checking for file ‘simplevis/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘spNetwork’ version ‘0.4.3.6’ +* this is package ‘simplevis’ version ‘7.0.0’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR Package required but not available: ‘sf’ -Package suggested but not available for checking: ‘tmap’ - See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. * DONE @@ -12367,21 +6196,19 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/spNetwork/old/spNetwork.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/simplevis/old/simplevis.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘spNetwork/DESCRIPTION’ ... OK +* checking for file ‘simplevis/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘spNetwork’ version ‘0.4.3.6’ +* this is package ‘simplevis’ version ‘7.0.0’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR Package required but not available: ‘sf’ -Package suggested but not available for checking: ‘tmap’ - See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. * DONE @@ -12392,17 +6219,17 @@ Status: 1 ERROR ``` -# spqdep +# slendr
-* Version: 0.1.2 -* GitHub: NA -* Source code: https://github.com/cran/spqdep -* Date/Publication: 2022-03-28 16:20:02 UTC -* Number of recursive dependencies: 102 +* Version: 0.5.1 +* GitHub: https://github.com/bodkan/slendr +* Source code: https://github.com/cran/slendr +* Date/Publication: 2023-03-09 19:40:02 UTC +* Number of recursive dependencies: 129 -Run `revdepcheck::cloud_details(, "spqdep")` for more info +Run `revdepcheck::cloud_details(, "slendr")` for more info
@@ -12411,18 +6238,17 @@ Run `revdepcheck::cloud_details(, "spqdep")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/spqdep/new/spqdep.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/slendr/new/slendr.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘spqdep/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘spqdep’ version ‘0.1.2’ +* checking for file ‘slendr/DESCRIPTION’ ... OK +* this is package ‘slendr’ version ‘0.5.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'sf', 'lwgeom' +Package required but not available: ‘sf’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -12437,18 +6263,17 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/spqdep/old/spqdep.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/slendr/old/slendr.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘spqdep/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘spqdep’ version ‘0.1.2’ +* checking for file ‘slendr/DESCRIPTION’ ... OK +* this is package ‘slendr’ version ‘0.5.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'sf', 'lwgeom' +Package required but not available: ‘sf’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -12460,31 +6285,93 @@ Status: 1 ERROR ``` -# spsur +# sociome
-* Version: 1.0.2.5 -* GitHub: https://github.com/rominsal/spsur -* Source code: https://github.com/cran/spsur -* Date/Publication: 2022-10-29 21:52:23 UTC -* Number of recursive dependencies: 70 +* Version: 2.1.0 +* GitHub: https://github.com/NikKrieger/sociome +* Source code: https://github.com/cran/sociome +* Date/Publication: 2021-10-21 09:10:01 UTC +* Number of recursive dependencies: 97 -Run `revdepcheck::cloud_details(, "spsur")` for more info +Run `revdepcheck::cloud_details(, "sociome")` for more info
## In both -* checking whether package ‘spsur’ can be installed ... ERROR +* checking whether package ‘sociome’ can be installed ... ERROR ``` Installation failed. - See ‘/tmp/workdir/spsur/new/spsur.Rcheck/00install.out’ for details. + See ‘/tmp/workdir/sociome/new/sociome.Rcheck/00install.out’ for details. ``` * checking package dependencies ... NOTE ``` - Package suggested but not available for checking: ‘sf’ + Package suggested but not available for checking: ‘sf’ + ``` + +## Installation + +### Devel + +``` +* installing *source* package ‘sociome’ ... +** package ‘sociome’ 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(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : + there is no package called ‘sf’ +Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: lazy loading failed for package ‘sociome’ +* removing ‘/tmp/workdir/sociome/new/sociome.Rcheck/sociome’ + + +``` +### CRAN + +``` +* installing *source* package ‘sociome’ ... +** package ‘sociome’ 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(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : + there is no package called ‘sf’ +Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: lazy loading failed for package ‘sociome’ +* removing ‘/tmp/workdir/sociome/old/sociome.Rcheck/sociome’ + + +``` +# SPARTAAS + +
+ +* Version: 1.1.0 +* GitHub: NA +* Source code: https://github.com/cran/SPARTAAS +* Date/Publication: 2021-10-22 14:30:02 UTC +* Number of recursive dependencies: 184 + +Run `revdepcheck::cloud_details(, "SPARTAAS")` for more info + +
+ +## In both + +* checking whether package ‘SPARTAAS’ can be installed ... ERROR + ``` + Installation failed. + See ‘/tmp/workdir/SPARTAAS/new/SPARTAAS.Rcheck/00install.out’ for details. ``` ## Installation @@ -12492,56 +6379,54 @@ Run `revdepcheck::cloud_details(, "spsur")` for more info ### Devel ``` -* installing *source* package ‘spsur’ ... -** package ‘spsur’ successfully unpacked and MD5 sums checked +* installing *source* package ‘SPARTAAS’ ... +** package ‘SPARTAAS’ successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** 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]]) : - there is no package called ‘rbibutils’ +Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : + there is no package called ‘sf’ Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart Execution halted -ERROR: lazy loading failed for package ‘spsur’ -* removing ‘/tmp/workdir/spsur/new/spsur.Rcheck/spsur’ +ERROR: lazy loading failed for package ‘SPARTAAS’ +* removing ‘/tmp/workdir/SPARTAAS/new/SPARTAAS.Rcheck/SPARTAAS’ ``` ### CRAN ``` -* installing *source* package ‘spsur’ ... -** package ‘spsur’ successfully unpacked and MD5 sums checked +* installing *source* package ‘SPARTAAS’ ... +** package ‘SPARTAAS’ successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** 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]]) : - there is no package called ‘rbibutils’ +Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : + there is no package called ‘sf’ Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart Execution halted -ERROR: lazy loading failed for package ‘spsur’ -* removing ‘/tmp/workdir/spsur/old/spsur.Rcheck/spsur’ +ERROR: lazy loading failed for package ‘SPARTAAS’ +* removing ‘/tmp/workdir/SPARTAAS/old/SPARTAAS.Rcheck/SPARTAAS’ ``` -# spup +# spatgeom
-* Version: 1.3-2 -* GitHub: NA -* Source code: https://github.com/cran/spup -* Date/Publication: 2020-04-30 22:20:06 UTC -* Number of recursive dependencies: 99 +* Version: 0.2.0 +* GitHub: https://github.com/maikol-solis/spatgeom +* Source code: https://github.com/cran/spatgeom +* Date/Publication: 2023-02-14 19:00:02 UTC +* Number of recursive dependencies: 81 -Run `revdepcheck::cloud_details(, "spup")` for more info +Run `revdepcheck::cloud_details(, "spatgeom")` for more info
@@ -12550,89 +6435,14 @@ Run `revdepcheck::cloud_details(, "spup")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/spup/new/spup.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘spup/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘spup’ version ‘1.3-2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘CN_v2.Rmd’ using ‘UTF-8’... OK - ‘DEM_v3.Rmd’ using ‘UTF-8’... OK - ‘ExternalModel_v2.Rmd’ using ‘UTF-8’... OK - ‘Rotterdam.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/spup/old/spup.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/spatgeom/new/spatgeom.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘spup/DESCRIPTION’ ... OK +* checking for file ‘spatgeom/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘spup’ version ‘1.3-2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘CN_v2.Rmd’ using ‘UTF-8’... OK - ‘DEM_v3.Rmd’ using ‘UTF-8’... OK - ‘ExternalModel_v2.Rmd’ using ‘UTF-8’... OK - ‘Rotterdam.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - - - - - -``` -# stars - -
- -* Version: 0.6-0 -* GitHub: https://github.com/r-spatial/stars -* Source code: https://github.com/cran/stars -* Date/Publication: 2022-11-21 13:10:02 UTC -* Number of recursive dependencies: 153 - -Run `revdepcheck::cloud_details(, "stars")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/stars/new/stars.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘stars/DESCRIPTION’ ... OK -* this is package ‘stars’ version ‘0.6-0’ +* this is package ‘spatgeom’ version ‘0.2.0’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -12651,13 +6461,14 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/stars/old/stars.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/spatgeom/old/spatgeom.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘stars/DESCRIPTION’ ... OK -* this is package ‘stars’ version ‘0.6-0’ +* checking for file ‘spatgeom/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘spatgeom’ version ‘0.2.0’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -12673,17 +6484,17 @@ Status: 1 ERROR ``` -# starsTileServer +# SpatialKDE
-* Version: 0.1.1 -* GitHub: NA -* Source code: https://github.com/cran/starsTileServer -* Date/Publication: 2022-08-22 21:50:02 UTC -* Number of recursive dependencies: 126 +* Version: 0.8.2 +* GitHub: https://github.com/JanCaha/SpatialKDE +* Source code: https://github.com/cran/SpatialKDE +* Date/Publication: 2023-02-18 15:10:02 UTC +* Number of recursive dependencies: 112 -Run `revdepcheck::cloud_details(, "starsTileServer")` for more info +Run `revdepcheck::cloud_details(, "SpatialKDE")` for more info
@@ -12692,13 +6503,14 @@ Run `revdepcheck::cloud_details(, "starsTileServer")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/starsTileServer/new/starsTileServer.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/SpatialKDE/new/SpatialKDE.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘starsTileServer/DESCRIPTION’ ... OK -* this is package ‘starsTileServer’ version ‘0.1.1’ +* checking for file ‘SpatialKDE/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘SpatialKDE’ version ‘0.8.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -12717,13 +6529,14 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/starsTileServer/old/starsTileServer.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/SpatialKDE/old/SpatialKDE.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘starsTileServer/DESCRIPTION’ ... OK -* this is package ‘starsTileServer’ version ‘0.1.1’ +* checking for file ‘SpatialKDE/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘SpatialKDE’ version ‘0.8.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -12739,17 +6552,17 @@ Status: 1 ERROR ``` -# stats19 +# spatialrisk
-* Version: 2.0.1 -* GitHub: https://github.com/ropensci/stats19 -* Source code: https://github.com/cran/stats19 -* Date/Publication: 2022-11-17 12:00:06 UTC -* Number of recursive dependencies: 164 +* Version: 0.7.0 +* GitHub: https://github.com/mharinga/spatialrisk +* Source code: https://github.com/cran/spatialrisk +* Date/Publication: 2021-11-10 15:30:02 UTC +* Number of recursive dependencies: 134 -Run `revdepcheck::cloud_details(, "stats19")` for more info +Run `revdepcheck::cloud_details(, "spatialrisk")` for more info
@@ -12758,20 +6571,19 @@ Run `revdepcheck::cloud_details(, "stats19")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/stats19/new/stats19.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/spatialrisk/new/spatialrisk.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘stats19/DESCRIPTION’ ... OK -* this is package ‘stats19’ version ‘2.0.1’ +* checking for file ‘spatialrisk/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘spatialrisk’ version ‘0.7.0’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR Package required but not available: ‘sf’ -Package suggested but not available for checking: ‘tmap’ - See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. * DONE @@ -12785,20 +6597,19 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/stats19/old/stats19.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/spatialrisk/old/spatialrisk.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘stats19/DESCRIPTION’ ... OK -* this is package ‘stats19’ version ‘2.0.1’ +* checking for file ‘spatialrisk/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘spatialrisk’ version ‘0.7.0’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR Package required but not available: ‘sf’ -Package suggested but not available for checking: ‘tmap’ - See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. * DONE @@ -12809,17 +6620,17 @@ Status: 1 ERROR ``` -# statsExpressions +# spDates
-* Version: 1.5.0 -* GitHub: https://github.com/IndrajeetPatil/statsExpressions -* Source code: https://github.com/cran/statsExpressions -* Date/Publication: 2023-02-19 14:30:02 UTC -* Number of recursive dependencies: 152 +* Version: 1.1 +* GitHub: NA +* Source code: https://github.com/cran/spDates +* Date/Publication: 2022-10-09 10:30:02 UTC +* Number of recursive dependencies: 82 -Run `revdepcheck::cloud_details(, "statsExpressions")` for more info +Run `revdepcheck::cloud_details(, "spDates")` for more info
@@ -12828,99 +6639,25 @@ Run `revdepcheck::cloud_details(, "statsExpressions")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/statsExpressions/new/statsExpressions.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘statsExpressions/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘statsExpressions’ version ‘1.5.0’ -* package encoding: UTF-8 -* checking package namespace information ... 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 ... NONE - ‘statsExpressions.Rmd’ using ‘UTF-8’... OK - ‘stats_details.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/statsExpressions/old/statsExpressions.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/spDates/new/spDates.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘statsExpressions/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘statsExpressions’ version ‘1.5.0’ +* checking for file ‘spDates/DESCRIPTION’ ... OK +* this is package ‘spDates’ version ‘1.1’ * package encoding: UTF-8 * checking package namespace information ... OK +* checking package dependencies ... 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 ... NONE - ‘statsExpressions.Rmd’ using ‘UTF-8’... OK - ‘stats_details.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - - - - - -``` -# stplanr - -
- -* Version: 1.0.2 -* GitHub: https://github.com/ropensci/stplanr -* Source code: https://github.com/cran/stplanr -* Date/Publication: 2022-11-08 12:40:02 UTC -* Number of recursive dependencies: 166 - -Run `revdepcheck::cloud_details(, "stplanr")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/stplanr/new/stplanr.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘stplanr/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘stplanr’ version ‘1.0.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'lwgeom', 'sf' - -Package suggested but not available for checking: ‘tmap’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. +* checking if there is a namespace ... OK +* checking for executable files ... OK +* checking for hidden files and directories ... OK +* checking for portable file names ... OK +* checking for sufficient/correct file permissions ... OK +* checking whether package ‘spDates’ can be installed ... ERROR +Installation failed. +See ‘/tmp/workdir/spDates/new/spDates.Rcheck/00install.out’ for details. * DONE Status: 1 ERROR @@ -12932,23 +6669,25 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/stplanr/old/stplanr.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/spDates/old/spDates.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘stplanr/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘stplanr’ version ‘1.0.2’ +* checking for file ‘spDates/DESCRIPTION’ ... OK +* this is package ‘spDates’ version ‘1.1’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'lwgeom', 'sf' - -Package suggested but not available for checking: ‘tmap’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. +* checking package dependencies ... OK +... +* checking if there is a namespace ... OK +* checking for executable files ... OK +* checking for hidden files and directories ... OK +* checking for portable file names ... OK +* checking for sufficient/correct file permissions ... OK +* checking whether package ‘spDates’ can be installed ... ERROR +Installation failed. +See ‘/tmp/workdir/spDates/old/spDates.Rcheck/00install.out’ for details. * DONE Status: 1 ERROR @@ -12957,17 +6696,17 @@ Status: 1 ERROR ``` -# stppSim +# spnaf
-* Version: 1.2.7 -* GitHub: https://github.com/Manalytics/stppSim -* Source code: https://github.com/cran/stppSim -* Date/Publication: 2022-08-11 10:30:02 UTC -* Number of recursive dependencies: 128 +* Version: 0.2.1 +* GitHub: NA +* Source code: https://github.com/cran/spnaf +* Date/Publication: 2022-08-25 08:20:02 UTC +* Number of recursive dependencies: 100 -Run `revdepcheck::cloud_details(, "stppSim")` for more info +Run `revdepcheck::cloud_details(, "spnaf")` for more info
@@ -12976,14 +6715,14 @@ Run `revdepcheck::cloud_details(, "stppSim")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/stppSim/new/stppSim.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/spnaf/new/spnaf.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘stppSim/DESCRIPTION’ ... OK +* checking for file ‘spnaf/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘stppSim’ version ‘1.2.7’ +* this is package ‘spnaf’ version ‘0.2.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -13002,14 +6741,14 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/stppSim/old/stppSim.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/spnaf/old/spnaf.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘stppSim/DESCRIPTION’ ... OK +* checking for file ‘spnaf/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘stppSim’ version ‘1.2.7’ +* this is package ‘spnaf’ version ‘0.2.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -13025,17 +6764,17 @@ Status: 1 ERROR ``` -# stxplore +# spNetwork
-* Version: 0.1.0 -* GitHub: NA -* Source code: https://github.com/cran/stxplore -* Date/Publication: 2023-02-03 10:10:02 UTC -* Number of recursive dependencies: 102 +* Version: 0.4.3.6 +* GitHub: https://github.com/JeremyGelb/spNetwork +* Source code: https://github.com/cran/spNetwork +* Date/Publication: 2022-11-11 08:10:02 UTC +* Number of recursive dependencies: 149 -Run `revdepcheck::cloud_details(, "stxplore")` for more info +Run `revdepcheck::cloud_details(, "spNetwork")` for more info
@@ -13044,25 +6783,21 @@ Run `revdepcheck::cloud_details(, "stxplore")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/stxplore/new/stxplore.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/spNetwork/new/spNetwork.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘stxplore/DESCRIPTION’ ... OK +* checking for file ‘spNetwork/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘stxplore’ version ‘0.1.0’ +* this is package ‘spNetwork’ version ‘0.4.3.6’ * package encoding: UTF-8 * checking package namespace information ... OK -... -* checking if there is a namespace ... OK -* checking for executable files ... OK -* checking for hidden files and directories ... OK -* checking for portable file names ... OK -* checking for sufficient/correct file permissions ... OK -* checking whether package ‘stxplore’ can be installed ... ERROR -Installation failed. -See ‘/tmp/workdir/stxplore/new/stxplore.Rcheck/00install.out’ for details. +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE Status: 1 ERROR @@ -13074,25 +6809,21 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/stxplore/old/stxplore.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/spNetwork/old/spNetwork.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘stxplore/DESCRIPTION’ ... OK +* checking for file ‘spNetwork/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘stxplore’ version ‘0.1.0’ +* this is package ‘spNetwork’ version ‘0.4.3.6’ * package encoding: UTF-8 * checking package namespace information ... OK -... -* checking if there is a namespace ... OK -* checking for executable files ... OK -* checking for hidden files and directories ... OK -* checking for portable file names ... OK -* checking for sufficient/correct file permissions ... OK -* checking whether package ‘stxplore’ can be installed ... ERROR -Installation failed. -See ‘/tmp/workdir/stxplore/old/stxplore.Rcheck/00install.out’ for details. +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE Status: 1 ERROR @@ -13101,17 +6832,17 @@ Status: 1 ERROR ``` -# SUNGEO +# spqdep
-* Version: 0.2.292 +* Version: 0.1.2 * GitHub: NA -* Source code: https://github.com/cran/SUNGEO -* Date/Publication: 2022-08-18 14:20:02 UTC -* Number of recursive dependencies: 109 +* Source code: https://github.com/cran/spqdep +* Date/Publication: 2022-03-28 16:20:02 UTC +* Number of recursive dependencies: 102 -Run `revdepcheck::cloud_details(, "SUNGEO")` for more info +Run `revdepcheck::cloud_details(, "spqdep")` for more info
@@ -13120,18 +6851,18 @@ Run `revdepcheck::cloud_details(, "SUNGEO")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/SUNGEO/new/SUNGEO.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/spqdep/new/spqdep.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘SUNGEO/DESCRIPTION’ ... OK +* checking for file ‘spqdep/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘SUNGEO’ version ‘0.2.292’ +* this is package ‘spqdep’ version ‘0.1.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘sf’ +Packages required but not available: 'sf', 'lwgeom' See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -13146,18 +6877,18 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/SUNGEO/old/SUNGEO.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/spqdep/old/spqdep.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘SUNGEO/DESCRIPTION’ ... OK +* checking for file ‘spqdep/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘SUNGEO’ version ‘0.2.292’ +* this is package ‘spqdep’ version ‘0.1.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘sf’ +Packages required but not available: 'sf', 'lwgeom' See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -13169,77 +6900,52 @@ Status: 1 ERROR ``` -# swfscAirDAS +# NA
-* Version: 0.2.3 -* GitHub: https://github.com/smwoodman/swfscAirDAS -* Source code: https://github.com/cran/swfscAirDAS -* Date/Publication: 2022-06-02 03:00:02 UTC -* Number of recursive dependencies: 105 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "swfscAirDAS")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
-## In both - -* checking whether package ‘swfscAirDAS’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/swfscAirDAS/new/swfscAirDAS.Rcheck/00install.out’ for details. - ``` - -## Installation +## Error before installation ### Devel ``` -* installing *source* package ‘swfscAirDAS’ ... -** package ‘swfscAirDAS’ 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]]) : - there is no package called ‘sf’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘swfscAirDAS’ -* removing ‘/tmp/workdir/swfscAirDAS/new/swfscAirDAS.Rcheck/swfscAirDAS’ + + + + ``` ### CRAN ``` -* installing *source* package ‘swfscAirDAS’ ... -** package ‘swfscAirDAS’ 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]]) : - there is no package called ‘sf’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘swfscAirDAS’ -* removing ‘/tmp/workdir/swfscAirDAS/old/swfscAirDAS.Rcheck/swfscAirDAS’ + + + + ``` -# SWTools +# stplanr
-* Version: 0.2.4 -* GitHub: https://github.com/matt-s-gibbs/swtools -* Source code: https://github.com/cran/SWTools -* Date/Publication: 2022-07-04 06:20:02 UTC -* Number of recursive dependencies: 110 +* Version: 1.0.2 +* GitHub: https://github.com/ropensci/stplanr +* Source code: https://github.com/cran/stplanr +* Date/Publication: 2022-11-08 12:40:02 UTC +* Number of recursive dependencies: 166 -Run `revdepcheck::cloud_details(, "SWTools")` for more info +Run `revdepcheck::cloud_details(, "stplanr")` for more info
@@ -13248,18 +6954,18 @@ Run `revdepcheck::cloud_details(, "SWTools")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/SWTools/new/SWTools.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/stplanr/new/stplanr.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘SWTools/DESCRIPTION’ ... OK +* checking for file ‘stplanr/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘SWTools’ version ‘0.2.4’ +* this is package ‘stplanr’ version ‘1.0.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘sf’ +Packages required but not available: 'lwgeom', 'sf' See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -13274,18 +6980,18 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/SWTools/old/SWTools.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/stplanr/old/stplanr.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘SWTools/DESCRIPTION’ ... OK +* checking for file ‘stplanr/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘SWTools’ version ‘0.2.4’ +* this is package ‘stplanr’ version ‘1.0.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘sf’ +Packages required but not available: 'lwgeom', 'sf' See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -13297,17 +7003,17 @@ Status: 1 ERROR ``` -# telemac +# stppSim
-* Version: 0.1.1 -* GitHub: https://github.com/tpilz/telemac -* Source code: https://github.com/cran/telemac -* Date/Publication: 2022-02-07 15:50:02 UTC -* Number of recursive dependencies: 147 +* Version: 1.2.7 +* GitHub: https://github.com/Manalytics/stppSim +* Source code: https://github.com/cran/stppSim +* Date/Publication: 2022-08-11 10:30:02 UTC +* Number of recursive dependencies: 128 -Run `revdepcheck::cloud_details(, "telemac")` for more info +Run `revdepcheck::cloud_details(, "stppSim")` for more info
@@ -13316,14 +7022,14 @@ Run `revdepcheck::cloud_details(, "telemac")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/telemac/new/telemac.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/stppSim/new/stppSim.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘telemac/DESCRIPTION’ ... OK +* checking for file ‘stppSim/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘telemac’ version ‘0.1.1’ +* this is package ‘stppSim’ version ‘1.2.7’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -13342,14 +7048,14 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/telemac/old/telemac.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/stppSim/old/stppSim.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘telemac/DESCRIPTION’ ... OK +* checking for file ‘stppSim/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘telemac’ version ‘0.1.1’ +* this is package ‘stppSim’ version ‘1.2.7’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -13365,17 +7071,52 @@ Status: 1 ERROR ``` -# tidybayes +# NA + +
+ +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 + +Run `revdepcheck::cloud_details(, "NA")` for more info + +
+ +## Error before installation + +### Devel + +``` + + + + + + +``` +### CRAN + +``` + + + + + + +``` +# stxplore
-* Version: 3.0.4 -* GitHub: https://github.com/mjskay/tidybayes -* Source code: https://github.com/cran/tidybayes -* Date/Publication: 2023-03-14 04:30:02 UTC -* Number of recursive dependencies: 200 +* Version: 0.1.0 +* GitHub: NA +* Source code: https://github.com/cran/stxplore +* Date/Publication: 2023-02-03 10:10:02 UTC +* Number of recursive dependencies: 102 -Run `revdepcheck::cloud_details(, "tidybayes")` for more info +Run `revdepcheck::cloud_details(, "stxplore")` for more info
@@ -13384,27 +7125,27 @@ Run `revdepcheck::cloud_details(, "tidybayes")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/tidybayes/new/tidybayes.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/stxplore/new/stxplore.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘tidybayes/DESCRIPTION’ ... OK -* this is package ‘tidybayes’ version ‘3.0.4’ +* checking for file ‘stxplore/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘stxplore’ version ‘0.1.0’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... NOTE ... -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘tidy-brms.Rmd’ using ‘UTF-8’... OK - ‘tidy-posterior.Rmd’ using ‘UTF-8’... OK - ‘tidy-rstanarm.Rmd’ using ‘UTF-8’... OK - ‘tidybayes-residuals.Rmd’ using ‘UTF-8’... OK - ‘tidybayes.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking if there is a namespace ... OK +* checking for executable files ... OK +* checking for hidden files and directories ... OK +* checking for portable file names ... OK +* checking for sufficient/correct file permissions ... OK +* checking whether package ‘stxplore’ can be installed ... ERROR +Installation failed. +See ‘/tmp/workdir/stxplore/new/stxplore.Rcheck/00install.out’ for details. * DONE -Status: 2 NOTEs +Status: 1 ERROR @@ -13414,44 +7155,44 @@ Status: 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/tidybayes/old/tidybayes.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/stxplore/old/stxplore.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘tidybayes/DESCRIPTION’ ... OK -* this is package ‘tidybayes’ version ‘3.0.4’ +* checking for file ‘stxplore/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘stxplore’ version ‘0.1.0’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... NOTE ... -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘tidy-brms.Rmd’ using ‘UTF-8’... OK - ‘tidy-posterior.Rmd’ using ‘UTF-8’... OK - ‘tidy-rstanarm.Rmd’ using ‘UTF-8’... OK - ‘tidybayes-residuals.Rmd’ using ‘UTF-8’... OK - ‘tidybayes.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking if there is a namespace ... OK +* checking for executable files ... OK +* checking for hidden files and directories ... OK +* checking for portable file names ... OK +* checking for sufficient/correct file permissions ... OK +* checking whether package ‘stxplore’ can be installed ... ERROR +Installation failed. +See ‘/tmp/workdir/stxplore/old/stxplore.Rcheck/00install.out’ for details. * DONE -Status: 2 NOTEs +Status: 1 ERROR ``` -# tidyposterior +# SUNGEO
-* Version: 1.0.0 -* GitHub: https://github.com/tidymodels/tidyposterior -* Source code: https://github.com/cran/tidyposterior -* Date/Publication: 2022-06-23 20:20:02 UTC -* Number of recursive dependencies: 170 +* Version: 0.2.292 +* GitHub: NA +* Source code: https://github.com/cran/SUNGEO +* Date/Publication: 2022-08-18 14:20:02 UTC +* Number of recursive dependencies: 109 -Run `revdepcheck::cloud_details(, "tidyposterior")` for more info +Run `revdepcheck::cloud_details(, "SUNGEO")` for more info
@@ -13460,17 +7201,18 @@ Run `revdepcheck::cloud_details(, "tidyposterior")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/tidyposterior/new/tidyposterior.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/SUNGEO/new/SUNGEO.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘tidyposterior/DESCRIPTION’ ... OK -* this is package ‘tidyposterior’ version ‘1.0.0’ +* checking for file ‘SUNGEO/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘SUNGEO’ version ‘0.2.292’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘rstanarm’ +Package required but not available: ‘sf’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -13485,17 +7227,18 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/tidyposterior/old/tidyposterior.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/SUNGEO/old/SUNGEO.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘tidyposterior/DESCRIPTION’ ... OK -* this is package ‘tidyposterior’ version ‘1.0.0’ +* checking for file ‘SUNGEO/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘SUNGEO’ version ‘0.2.292’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘rstanarm’ +Package required but not available: ‘sf’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -13507,85 +7250,77 @@ Status: 1 ERROR ``` -# tidySEM +# swfscAirDAS
* Version: 0.2.3 -* GitHub: https://github.com/cjvanlissa/tidySEM -* Source code: https://github.com/cran/tidySEM -* Date/Publication: 2022-04-14 17:50:02 UTC -* Number of recursive dependencies: 171 +* GitHub: https://github.com/smwoodman/swfscAirDAS +* Source code: https://github.com/cran/swfscAirDAS +* Date/Publication: 2022-06-02 03:00:02 UTC +* Number of recursive dependencies: 105 -Run `revdepcheck::cloud_details(, "tidySEM")` for more info +Run `revdepcheck::cloud_details(, "swfscAirDAS")` for more info
-## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/tidySEM/new/tidySEM.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘tidySEM/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘tidySEM’ version ‘0.2.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘blavaan’ +## In both -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR +* checking whether package ‘swfscAirDAS’ can be installed ... ERROR + ``` + Installation failed. + See ‘/tmp/workdir/swfscAirDAS/new/swfscAirDAS.Rcheck/00install.out’ for details. + ``` +## Installation +### Devel +``` +* installing *source* package ‘swfscAirDAS’ ... +** package ‘swfscAirDAS’ 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]]) : + there is no package called ‘sf’ +Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: lazy loading failed for package ‘swfscAirDAS’ +* removing ‘/tmp/workdir/swfscAirDAS/new/swfscAirDAS.Rcheck/swfscAirDAS’ ``` ### CRAN ``` -* using log directory ‘/tmp/workdir/tidySEM/old/tidySEM.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘tidySEM/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘tidySEM’ version ‘0.2.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘blavaan’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - +* installing *source* package ‘swfscAirDAS’ ... +** package ‘swfscAirDAS’ 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]]) : + there is no package called ‘sf’ +Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: lazy loading failed for package ‘swfscAirDAS’ +* removing ‘/tmp/workdir/swfscAirDAS/old/swfscAirDAS.Rcheck/swfscAirDAS’ ``` -# tilemaps +# SWTools
-* Version: 0.2.0 -* GitHub: https://github.com/kaerosen/tilemaps -* Source code: https://github.com/cran/tilemaps -* Date/Publication: 2020-07-10 04:20:02 UTC -* Number of recursive dependencies: 73 +* Version: 0.2.4 +* GitHub: https://github.com/matt-s-gibbs/swtools +* Source code: https://github.com/cran/SWTools +* Date/Publication: 2022-07-04 06:20:02 UTC +* Number of recursive dependencies: 110 -Run `revdepcheck::cloud_details(, "tilemaps")` for more info +Run `revdepcheck::cloud_details(, "SWTools")` for more info
@@ -13594,17 +7329,18 @@ Run `revdepcheck::cloud_details(, "tilemaps")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/tilemaps/new/tilemaps.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/SWTools/new/SWTools.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘tilemaps/DESCRIPTION’ ... OK -* this is package ‘tilemaps’ version ‘0.2.0’ +* checking for file ‘SWTools/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘SWTools’ version ‘0.2.4’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'lwgeom', 'sf' +Package required but not available: ‘sf’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -13619,17 +7355,18 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/tilemaps/old/tilemaps.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/SWTools/old/SWTools.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘tilemaps/DESCRIPTION’ ... OK -* this is package ‘tilemaps’ version ‘0.2.0’ +* checking for file ‘SWTools/DESCRIPTION’ ... OK +* checking extension type ... Package +* this is package ‘SWTools’ version ‘0.2.4’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'lwgeom', 'sf' +Package required but not available: ‘sf’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -13641,17 +7378,16 @@ Status: 1 ERROR ``` -# timetk +# NA
-* Version: 2.8.2 -* GitHub: https://github.com/business-science/timetk -* Source code: https://github.com/cran/timetk -* Date/Publication: 2022-11-17 19:30:02 UTC -* Number of recursive dependencies: 226 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "timetk")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
@@ -13660,27 +7396,7 @@ Run `revdepcheck::cloud_details(, "timetk")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/timetk/new/timetk.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘timetk/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘timetk’ version ‘2.8.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... - Error in library(robets) : there is no package called 'robets' - Execution halted -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘TK04_Plotting_Time_Series.Rmd’ using ‘UTF-8’... OK - ‘TK07_Time_Series_Data_Wrangling.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 ERROR, 2 NOTEs + @@ -13690,44 +7406,24 @@ Status: 1 ERROR, 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/timetk/old/timetk.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘timetk/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘timetk’ version ‘2.8.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -... - Error in library(robets) : there is no package called 'robets' - Execution halted -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes in ‘inst/doc’ ... OK -* checking running R code from vignettes ... NONE - ‘TK04_Plotting_Time_Series.Rmd’ using ‘UTF-8’... OK - ‘TK07_Time_Series_Data_Wrangling.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 ERROR, 2 NOTEs + ``` -# tipmap +# telemac
-* Version: 0.3.9 -* GitHub: NA -* Source code: https://github.com/cran/tipmap -* Date/Publication: 2022-12-07 21:50:02 UTC -* Number of recursive dependencies: 96 +* Version: 0.1.1 +* GitHub: https://github.com/tpilz/telemac +* Source code: https://github.com/cran/telemac +* Date/Publication: 2022-02-07 15:50:02 UTC +* Number of recursive dependencies: 147 -Run `revdepcheck::cloud_details(, "tipmap")` for more info +Run `revdepcheck::cloud_details(, "telemac")` for more info
@@ -13736,18 +7432,18 @@ Run `revdepcheck::cloud_details(, "tipmap")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/tipmap/new/tipmap.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/telemac/new/telemac.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘tipmap/DESCRIPTION’ ... OK +* checking for file ‘telemac/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘tipmap’ version ‘0.3.9’ +* this is package ‘telemac’ version ‘0.1.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘RBesT’ +Package required but not available: ‘sf’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -13762,18 +7458,18 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/tipmap/old/tipmap.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using log directory ‘/tmp/workdir/telemac/old/telemac.Rcheck’ +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘tipmap/DESCRIPTION’ ... OK +* checking for file ‘telemac/DESCRIPTION’ ... OK * checking extension type ... Package -* this is package ‘tipmap’ version ‘0.3.9’ +* this is package ‘telemac’ version ‘0.1.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘RBesT’ +Package required but not available: ‘sf’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -13785,17 +7481,16 @@ Status: 1 ERROR ``` -# tmap +# NA
-* Version: 3.3-3 -* GitHub: https://github.com/r-tmap/tmap -* Source code: https://github.com/cran/tmap -* Date/Publication: 2022-03-02 08:50:02 UTC -* Number of recursive dependencies: 158 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -Run `revdepcheck::cloud_details(, "tmap")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
@@ -13804,23 +7499,7 @@ Run `revdepcheck::cloud_details(, "tmap")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/tmap/new/tmap.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘tmap/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘tmap’ version ‘3.3-3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'tmaptools', 'sf' -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR @@ -13830,23 +7509,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/tmap/old/tmap.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘tmap/DESCRIPTION’ ... OK -* checking extension type ... Package -* this is package ‘tmap’ version ‘3.3-3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'tmaptools', 'sf' -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR @@ -13873,7 +7536,7 @@ Run `revdepcheck::cloud_details(, "trackdf")` for more info ``` * using log directory ‘/tmp/workdir/trackdf/new/trackdf.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ @@ -13901,7 +7564,7 @@ Status: 1 ERROR ``` * using log directory ‘/tmp/workdir/trackdf/old/trackdf.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ @@ -13910,91 +7573,15 @@ Status: 1 ERROR * this is package ‘trackdf’ version ‘0.3.1’ * package encoding: UTF-8 * checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Package suggested but not available for checking: ‘moveVis’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# trending - -
- -* Version: 0.0.3 -* GitHub: https://github.com/reconhub/trending -* Source code: https://github.com/cran/trending -* Date/Publication: 2021-04-19 09:10:02 UTC -* Number of recursive dependencies: 142 - -Run `revdepcheck::cloud_details(, "trending")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/trending/new/trending.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘trending/DESCRIPTION’ ... OK -* this is package ‘trending’ version ‘0.0.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... -* 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 ... NONE - ‘Introduction.Rmd’ using ‘UTF-8’... OK - ‘prediction_intervals.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 2 NOTEs - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/trending/old/trending.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘trending/DESCRIPTION’ ... OK -* this is package ‘trending’ version ‘0.0.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... -* 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 ... NONE - ‘Introduction.Rmd’ using ‘UTF-8’... OK - ‘prediction_intervals.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sf’ + +Package suggested but not available for checking: ‘moveVis’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 NOTEs +Status: 1 ERROR @@ -14021,7 +7608,7 @@ Run `revdepcheck::cloud_details(, "TUFLOWR")` for more info ``` * using log directory ‘/tmp/workdir/TUFLOWR/new/TUFLOWR.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ @@ -14051,7 +7638,7 @@ Status: OK ``` * using log directory ‘/tmp/workdir/TUFLOWR/old/TUFLOWR.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ @@ -14097,7 +7684,7 @@ Run `revdepcheck::cloud_details(, "VancouvR")` for more info ``` * using log directory ‘/tmp/workdir/VancouvR/new/VancouvR.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ @@ -14125,7 +7712,7 @@ Status: 1 ERROR ``` * using log directory ‘/tmp/workdir/VancouvR/old/VancouvR.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ @@ -14148,82 +7735,6 @@ Status: 1 ERROR -``` -# vivid - -
- -* Version: 0.2.5 -* GitHub: NA -* Source code: https://github.com/cran/vivid -* Date/Publication: 2023-02-13 16:40:02 UTC -* Number of recursive dependencies: 206 - -Run `revdepcheck::cloud_details(, "vivid")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/vivid/new/vivid.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘vivid/DESCRIPTION’ ... OK -* this is package ‘vivid’ version ‘0.2.5’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... -* 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 ... NONE - ‘vivid.Rmd’ using ‘UTF-8’... OK - ‘vividQStart.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/vivid/old/vivid.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘vivid/DESCRIPTION’ ... OK -* this is package ‘vivid’ version ‘0.2.5’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... NOTE -... -* 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 ... NONE - ‘vivid.Rmd’ using ‘UTF-8’... OK - ‘vividQStart.Rmd’ using ‘UTF-8’... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 NOTE - - - - - ``` # wallace @@ -14245,7 +7756,7 @@ Run `revdepcheck::cloud_details(, "wallace")` for more info ``` * using log directory ‘/tmp/workdir/wallace/new/wallace.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ @@ -14275,7 +7786,7 @@ Status: 1 NOTE ``` * using log directory ‘/tmp/workdir/wallace/old/wallace.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ @@ -14321,7 +7832,7 @@ Run `revdepcheck::cloud_details(, "waterquality")` for more info ``` * using log directory ‘/tmp/workdir/waterquality/new/waterquality.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ @@ -14340,7 +7851,7 @@ Error: Vignette re-building failed. Execution halted * DONE -Status: 1 ERROR, 2 NOTEs +Status: 1 WARNING, 2 NOTEs @@ -14351,7 +7862,7 @@ Status: 1 ERROR, 2 NOTEs ``` * using log directory ‘/tmp/workdir/waterquality/old/waterquality.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ @@ -14370,7 +7881,42 @@ Error: Vignette re-building failed. Execution halted * DONE -Status: 1 ERROR, 2 NOTEs +Status: 1 WARNING, 2 NOTEs + + + + + +``` +# NA + +
+ +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 + +Run `revdepcheck::cloud_details(, "NA")` for more info + +
+ +## Error before installation + +### Devel + +``` + + + + + + +``` +### CRAN + +``` + @@ -14461,7 +8007,7 @@ Run `revdepcheck::cloud_details(, "wdpar")` for more info ``` * using log directory ‘/tmp/workdir/wdpar/new/wdpar.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ @@ -14489,7 +8035,7 @@ Status: 1 ERROR ``` * using log directory ‘/tmp/workdir/wdpar/old/wdpar.Rcheck’ -* using R version 4.2.1 (2022-06-23) +* using R version 4.1.1 (2021-08-10) * using platform: x86_64-pc-linux-gnu (64-bit) * using session charset: UTF-8 * using option ‘--no-manual’ @@ -14513,79 +8059,16 @@ Status: 1 ERROR ``` -# wearables +# NA
-* Version: 0.8.1 +* Version: NA * GitHub: NA -* Source code: https://github.com/cran/wearables -* Date/Publication: 2021-12-20 15:20:02 UTC -* Number of recursive dependencies: 122 - -Run `revdepcheck::cloud_details(, "wearables")` for more info - -
- -## In both - -* checking whether package ‘wearables’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/wearables/new/wearables.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘wearables’ ... -** package ‘wearables’ 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(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘rstan’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘wearables’ -* removing ‘/tmp/workdir/wearables/new/wearables.Rcheck/wearables’ - - -``` -### CRAN - -``` -* installing *source* package ‘wearables’ ... -** package ‘wearables’ 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(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘rstan’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘wearables’ -* removing ‘/tmp/workdir/wearables/old/wearables.Rcheck/wearables’ - - -``` -# webSDM +* Source code: https://github.com/cran/NA +* Number of recursive dependencies: 0 -
- -* Version: 1.1-3 -* GitHub: https://github.com/giopogg/webSDM -* Source code: https://github.com/cran/webSDM -* Date/Publication: 2023-03-14 13:50:02 UTC -* Number of recursive dependencies: 190 - -Run `revdepcheck::cloud_details(, "webSDM")` for more info +Run `revdepcheck::cloud_details(, "NA")` for more info
@@ -14594,22 +8077,7 @@ Run `revdepcheck::cloud_details(, "webSDM")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/webSDM/new/webSDM.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘webSDM/DESCRIPTION’ ... OK -* this is package ‘webSDM’ version ‘1.1-3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'brms', 'rstanarm' -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR @@ -14619,85 +8087,10 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/webSDM/old/webSDM.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘webSDM/DESCRIPTION’ ... OK -* this is package ‘webSDM’ version ‘1.1-3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'brms', 'rstanarm' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# xpose.nlmixr2 - -
- -* Version: 0.4.0 -* GitHub: NA -* Source code: https://github.com/cran/xpose.nlmixr2 -* Date/Publication: 2022-06-08 09:10:02 UTC -* Number of recursive dependencies: 158 -Run `revdepcheck::cloud_details(, "xpose.nlmixr2")` for more info - -
- -## In both - -* checking whether package ‘xpose.nlmixr2’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/xpose.nlmixr2/new/xpose.nlmixr2.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘xpose.nlmixr2’ ... -** package ‘xpose.nlmixr2’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** byte-compile and prepare package for lazy loading -Error: .onLoad failed in loadNamespace() for 'rxode2parse', details: - call: NULL - error: rxode2parse compiled with dparser '1.3.1.9' but dparser '1.3.1.10' is loaded -Recompile rxode2parse with the this version of dparser -Execution halted -ERROR: lazy loading failed for package ‘xpose.nlmixr2’ -* removing ‘/tmp/workdir/xpose.nlmixr2/new/xpose.nlmixr2.Rcheck/xpose.nlmixr2’ -``` -### CRAN -``` -* installing *source* package ‘xpose.nlmixr2’ ... -** package ‘xpose.nlmixr2’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** byte-compile and prepare package for lazy loading -Error: .onLoad failed in loadNamespace() for 'rxode2parse', details: - call: NULL - error: rxode2parse compiled with dparser '1.3.1.9' but dparser '1.3.1.10' is loaded -Recompile rxode2parse with the this version of dparser -Execution halted -ERROR: lazy loading failed for package ‘xpose.nlmixr2’ -* removing ‘/tmp/workdir/xpose.nlmixr2/old/xpose.nlmixr2.Rcheck/xpose.nlmixr2’ ``` @@ -14764,76 +8157,4 @@ ERROR: lazy loading failed for package ‘zipcodeR’ * removing ‘/tmp/workdir/zipcodeR/old/zipcodeR.Rcheck/zipcodeR’ -``` -# zonebuilder - -
- -* Version: 0.0.2 -* GitHub: https://github.com/zonebuilders/zonebuilder -* Source code: https://github.com/cran/zonebuilder -* Date/Publication: 2021-07-12 22:30:02 UTC -* Number of recursive dependencies: 126 - -Run `revdepcheck::cloud_details(, "zonebuilder")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/zonebuilder/new/zonebuilder.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘zonebuilder/DESCRIPTION’ ... OK -* this is package ‘zonebuilder’ version ‘0.0.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Packages suggested but not available for checking: - 'tmap', 'tmaptools', 'lwgeom' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/zonebuilder/old/zonebuilder.Rcheck’ -* using R version 4.2.1 (2022-06-23) -* using platform: x86_64-pc-linux-gnu (64-bit) -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘zonebuilder/DESCRIPTION’ ... OK -* this is package ‘zonebuilder’ version ‘0.0.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sf’ - -Packages suggested but not available for checking: - 'tmap', 'tmaptools', 'lwgeom' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - ``` diff --git a/revdep/problems.md b/revdep/problems.md index b16ed1ddd0..8e6ab98755 100644 --- a/revdep/problems.md +++ b/revdep/problems.md @@ -1,41 +1,3 @@ -# dm - -
- -* Version: 1.0.4 -* GitHub: https://github.com/cynkra/dm -* Source code: https://github.com/cran/dm -* Date/Publication: 2023-02-11 19:30:02 UTC -* Number of recursive dependencies: 157 - -Run `revdepcheck::cloud_details(, "dm")` for more info - -
- -## Newly broken - -* checking tests ... ERROR - ``` - Running ‘testthat.R’ - Running the tests in ‘tests/testthat.R’ failed. - Last 13 lines of output: - • only works on `postgres`, `mssql`, `sqlite` (1) - • only works on `postgres`, `sqlite`, `mssql`, `maria` (1) - • only works on `sqlite` (1) - - ══ Failed tests ════════════════════════════════════════════════════════════════ - ── Failure ('test-flatten.R:315:5'): tests with 'bad_dm' work ────────────────── - `expect_equivalent_tbl(...)` did not throw the expected warning. - ── Failure ('test-flatten.R:372:5'): tests with 'bad_dm' work (2) ────────────── - `expect_equivalent_tbl(...)` did not throw the expected warning. - ── Failure ('test-flatten.R:419:5'): tests with 'bad_dm' work (3) ────────────── - `expect_equivalent_tbl(...)` did not throw the expected warning. - - [ FAIL 3 | WARN 222 | SKIP 210 | PASS 1336 ] - Error: Test failures - Execution halted - ``` - # exuber
@@ -84,79 +46,36 @@ Run `revdepcheck::cloud_details(, "exuber")` for more info libs 4.3Mb ``` -# missCompare +# modelplotr
-* Version: 1.0.3 -* GitHub: https://github.com/Tirgit/missCompare -* Source code: https://github.com/cran/missCompare -* Date/Publication: 2020-12-01 08:50:03 UTC -* Number of recursive dependencies: 193 +* Version: 1.1.0 +* GitHub: https://github.com/jurrr/modelplotr +* Source code: https://github.com/cran/modelplotr +* Date/Publication: 2020-10-13 04:20:05 UTC +* Number of recursive dependencies: 150 -Run `revdepcheck::cloud_details(, "missCompare")` for more info +Run `revdepcheck::cloud_details(, "modelplotr")` for more info
## Newly broken -* checking tests ... ERROR +* checking re-building of vignette outputs ... WARNING ``` - Running ‘testthat.R’ - Running the tests in ‘tests/testthat.R’ failed. - Last 13 lines of output: - 8. └─missCompare::impute_simulated(...) - 9. ├─base::as.data.frame(test_aregImpute(sim$Simulated_matrix, list = res)) - 10. └─missCompare::test_aregImpute(sim$Simulated_matrix, list = res) - 11. ├─utils::capture.output(results <- lapply(list, aregImpute_imp)) - 12. │ └─base::withVisible(...elt(i)) - 13. └─base::lapply(list, aregImpute_imp) - 14. └─missCompare (local) FUN(X[[i]], ...) - 15. └─Hmisc::aregImpute(...) - 16. └─Hmisc::areg(...) - 17. └─Hmisc::aregTran(x[, i], xtype[i], nk) - 18. └─Hmisc::rcspline.eval(z, knots = parms, nk = nk, inclx = TRUE) - - [ FAIL 1 | WARN 1 | SKIP 0 | PASS 35 ] - Error: Test failures - Execution halted - ``` - -# rapbase - -
- -* Version: 1.24.0 -* GitHub: https://github.com/Rapporteket/rapbase -* Source code: https://github.com/cran/rapbase -* Date/Publication: 2023-02-27 10:22:31 UTC -* Number of recursive dependencies: 110 - -Run `revdepcheck::cloud_details(, "rapbase")` for more info - -
- -## Newly broken - -* checking tests ... ERROR - ``` - Running ‘testthat.R’ - Running the tests in ‘tests/testthat.R’ failed. - Last 13 lines of output: - ══ Failed tests ════════════════════════════════════════════════════════════════ - ── Failure ('test-github.R:6:3'): contributors are provided ──────────────────── - class(getGithub("contributors", "rapbase")) not equal to "character". - 1/1 mismatches - x[1]: "NULL" - y[1]: "character" - ── Failure ('test-github.R:10:3'): key can be provided ───────────────────────── - grepl("ssh-rsa", getGithub("keys", "areedv")) is not TRUE - - `actual`: - `expected`: TRUE - - [ FAIL 2 | WARN 0 | SKIP 37 | PASS 246 ] - Error: Test failures - Execution halted + Error(s) in re-building vignettes: + ... + --- re-building ‘modelplotr.Rmd’ using rmarkdown + Quitting from lines 198-216 (modelplotr.Rmd) + Error: processing vignette 'modelplotr.Rmd' failed with diagnostics: + replacement has length zero + --- failed re-building ‘modelplotr.Rmd’ + + SUMMARY: processing the following file failed: + ‘modelplotr.Rmd’ + + Error: Vignette re-building failed. + Execution halted ``` diff --git a/tests/testthat/_snaps/deprec-lazyeval.md b/tests/testthat/_snaps/deprec-lazyeval.md new file mode 100644 index 0000000000..f734b93fbb --- /dev/null +++ b/tests/testthat/_snaps/deprec-lazyeval.md @@ -0,0 +1,58 @@ +# mutate_each() and mutate_each_() are deprecated (#6869) + + Code + mutate_each(df, list(~ .x + 1L)) + Condition + Warning: + `mutate_each()` was deprecated in dplyr 0.7.0. + i Please use `across()` instead. + Output + # A tibble: 2 x 2 + x y + + 1 2 4 + 2 3 5 + +--- + + Code + mutate_each_(df, list(~ .x + 1L), c("x", "y")) + Condition + Warning: + `mutate_each_()` was deprecated in dplyr 0.7.0. + i Please use `across()` instead. + Output + # A tibble: 2 x 2 + x y + + 1 2 4 + 2 3 5 + +# summarise_each() and summarise_each_() are deprecated (#6869) + + Code + summarise_each(df, list(mean)) + Condition + Warning: + `summarise_each()` was deprecated in dplyr 0.7.0. + i Please use `across()` instead. + Output + # A tibble: 1 x 2 + x y + + 1 1.5 3.5 + +--- + + Code + summarise_each_(df, list(mean), c("x", "y")) + Condition + Warning: + `summarise_each_()` was deprecated in dplyr 0.7.0. + i Please use `across()` instead. + Output + # A tibble: 1 x 2 + x y + + 1 1.5 3.5 + diff --git a/tests/testthat/_snaps/sets.md b/tests/testthat/_snaps/sets.md index f2ec025a22..7a21345007 100644 --- a/tests/testthat/_snaps/sets.md +++ b/tests/testthat/_snaps/sets.md @@ -96,13 +96,33 @@ Output Incompatible types for column `x`: double vs character. +# setequal tibbles must have same rows and columns + + Code + setequal(tibble(x = 1:2), tibble(y = 1:2)) + Condition + Error in `setequal()`: + ! `x` and `y` are not compatible. + x Cols in `y` but not `x`: `y`. + x Cols in `x` but not `y`: `x`. + +--- + + Code + setequal(tibble(x = 1:2), tibble(x = c("a", "b"))) + Condition + Error in `setequal()`: + ! `x` and `y` are not compatible. + x Incompatible types for column `x`: integer vs character. + # setequal checks y is a data frame Code setequal(mtcars, 1) Condition Error in `setequal()`: - ! `y` must be a data frame. + ! `x` and `y` are not compatible. + `y` must be a data frame. # setequal checks for extra arguments diff --git a/tests/testthat/test-count-tally.R b/tests/testthat/test-count-tally.R index 5527628d7b..bf7ea0e6b3 100644 --- a/tests/testthat/test-count-tally.R +++ b/tests/testthat/test-count-tally.R @@ -1,5 +1,25 @@ # count ------------------------------------------------------------------- +test_that("count sorts output by keys by default", { + # Due to usage of `summarise()` internally + df <- tibble(x = c(2, 1, 1, 2, 1)) + out <- count(df, x) + expect_equal(out, tibble(x = c(1, 2), n = c(3, 2))) +}) + +test_that("count can sort output by `n`", { + df <- tibble(x = c(1, 1, 2, 2, 2)) + out <- count(df, x, sort = TRUE) + expect_equal(out, tibble(x = c(2, 1), n = c(3, 2))) +}) + +test_that("count can rename grouping columns", { + # But should it really allow this? + df <- tibble(x = c(2, 1, 1, 2, 1)) + out <- count(df, y = x) + expect_equal(out, tibble(y = c(1, 2), n = c(3, 2))) +}) + test_that("informs if n column already present, unless overridden", { df1 <- tibble(n = c(1, 1, 2, 2, 2)) expect_message(out <- count(df1, n), "already present") @@ -35,7 +55,7 @@ test_that("output includes empty levels with .drop = FALSE", { expect_equal(out$n, c(0, 1, 0)) }) -test_that("output preserves grouping", { +test_that("count preserves grouping", { df <- tibble(g = c(1, 2, 2, 2)) exp <- tibble(g = c(1, 2), n = c(1, 3)) @@ -143,7 +163,7 @@ test_that("tally() owns errors (#6139)", { # add_count --------------------------------------------------------------- -test_that("output preserves grouping", { +test_that("add_count preserves grouping", { df <- tibble(g = c(1, 2, 2, 2)) exp <- tibble(g = c(1, 2, 2, 2), n = c(1, 3, 3, 3)) diff --git a/tests/testthat/test-deprec-lazyeval.R b/tests/testthat/test-deprec-lazyeval.R index 62444e7e20..51a83f1048 100644 --- a/tests/testthat/test-deprec-lazyeval.R +++ b/tests/testthat/test-deprec-lazyeval.R @@ -28,6 +28,28 @@ test_that("mutate_each_() and summarise_each_() handle lazydots", { expect_equal(cyl_mean, mean(mtcars$cyl)) }) +test_that("mutate_each() and mutate_each_() are deprecated (#6869)", { + df <- tibble(x = 1:2, y = 3:4) + + expect_snapshot({ + mutate_each(df, list(~ .x + 1L)) + }) + expect_snapshot({ + mutate_each_(df, list(~ .x + 1L), c("x", "y")) + }) +}) + +test_that("summarise_each() and summarise_each_() are deprecated (#6869)", { + df <- tibble(x = 1:2, y = 3:4) + + expect_snapshot({ + summarise_each(df, list(mean)) + }) + expect_snapshot({ + summarise_each_(df, list(mean), c("x", "y")) + }) +}) + test_that("select_vars_() handles lazydots", { withr::local_options(lifecycle_verbosity = "quiet") diff --git a/tests/testthat/test-join.R b/tests/testthat/test-join.R index 657d19305b..04c75d1ec9 100644 --- a/tests/testthat/test-join.R +++ b/tests/testthat/test-join.R @@ -43,11 +43,18 @@ test_that("filtering joins preserve row and column order of x (#2964)", { }) test_that("keys are coerced to symmetric type", { + foo <- tibble(id = 1:2, var1 = "foo") + bar <- tibble(id = as.numeric(1:2), var2 = "bar") + expect_type(inner_join(foo, bar, by = "id")$id, "double") + expect_type(inner_join(bar, foo, by = "id")$id, "double") + foo <- tibble(id = factor(c("a", "b")), var1 = "foo") bar <- tibble(id = c("a", "b"), var2 = "bar") expect_type(inner_join(foo, bar, by = "id")$id, "character") expect_type(inner_join(bar, foo, by = "id")$id, "character") +}) +test_that("factor keys are coerced to the union factor type", { df1 <- tibble(x = 1, y = factor("a")) df2 <- tibble(x = 2, y = factor("b")) out <- full_join(df1, df2, by = c("x", "y")) @@ -193,6 +200,90 @@ test_that("joins don't match NA when na_matches = 'never' (#2033)", { ) }) +test_that("`left_join(by = join_by(closest(...)))` works as expected", { + df1 <- tibble(x = 1:5) + df2 <- tibble(y = c(1, 2, 4)) + + out <- left_join(df1, df2, by = join_by(closest(x <= y))) + expect_identical(out$x, 1:5) + expect_identical(out$y, c(1, 2, 4, 4, NA)) + + out <- left_join(df1, df2, by = join_by(closest(x < y))) + expect_identical(out$x, 1:5) + expect_identical(out$y, c(2, 4, 4, NA, NA)) + + out <- left_join(df1, df2, by = join_by(closest(x >= y))) + expect_identical(out$x, 1:5) + expect_identical(out$y, c(1, 2, 2, 4, 4)) + + out <- left_join(df1, df2, by = join_by(closest(x > y))) + expect_identical(out$x, 1:5) + expect_identical(out$y, c(NA, 1, 2, 2, 4)) +}) + +test_that("`full_join(by = join_by(closest(...)))` works as expected", { + df1 <- tibble(x = 1:5) + df2 <- tibble(y = c(1, 2, 4)) + + out <- full_join(df1, df2, by = join_by(closest(x <= y))) + expect_identical(out$x, 1:5) + expect_identical(out$y, c(1, 2, 4, 4, NA)) + + out <- full_join(df1, df2, by = join_by(closest(x < y))) + expect_identical(out$x, c(1:5, NA)) + expect_identical(out$y, c(2, 4, 4, NA, NA, 1)) + + out <- full_join(df1, df2, by = join_by(closest(x >= y))) + expect_identical(out$x, 1:5) + expect_identical(out$y, c(1, 2, 2, 4, 4)) + + out <- full_join(df1, df2, by = join_by(closest(x > y))) + expect_identical(out$x, 1:5) + expect_identical(out$y, c(NA, 1, 2, 2, 4)) +}) + +test_that("`right_join(by = join_by(closest(...)))` works as expected", { + df1 <- tibble(x = 1:5) + df2 <- tibble(y = c(1, 2, 4)) + + out <- right_join(df1, df2, by = join_by(closest(x <= y))) + expect_identical(out$x, 1:4) + expect_identical(out$y, c(1, 2, 4, 4)) + + out <- right_join(df1, df2, by = join_by(closest(x < y))) + expect_identical(out$x, c(1:3, NA)) + expect_identical(out$y, c(2, 4, 4, 1)) + + out <- right_join(df1, df2, by = join_by(closest(x >= y))) + expect_identical(out$x, 1:5) + expect_identical(out$y, c(1, 2, 2, 4, 4)) + + out <- right_join(df1, df2, by = join_by(closest(x > y))) + expect_identical(out$x, 2:5) + expect_identical(out$y, c(1, 2, 2, 4)) +}) + +test_that("`inner_join(by = join_by(closest(...)))` works as expected", { + df1 <- tibble(x = 1:5) + df2 <- tibble(y = c(1, 2, 4)) + + out <- inner_join(df1, df2, by = join_by(closest(x <= y))) + expect_identical(out$x, 1:4) + expect_identical(out$y, c(1, 2, 4, 4)) + + out <- inner_join(df1, df2, by = join_by(closest(x < y))) + expect_identical(out$x, 1:3) + expect_identical(out$y, c(2, 4, 4)) + + out <- inner_join(df1, df2, by = join_by(closest(x >= y))) + expect_identical(out$x, 1:5) + expect_identical(out$y, c(1, 2, 2, 4, 4)) + + out <- inner_join(df1, df2, by = join_by(closest(x > y))) + expect_identical(out$x, 2:5) + expect_identical(out$y, c(1, 2, 2, 4)) +}) + test_that("joins using `between(bounds =)` work as expected (#6488)", { df1 <- tibble(x = 1:5) df2 <- tibble(lower = 2, upper = 4) diff --git a/tests/testthat/test-sets.R b/tests/testthat/test-sets.R index 708168c0a0..6fc1c596db 100644 --- a/tests/testthat/test-sets.R +++ b/tests/testthat/test-sets.R @@ -116,9 +116,16 @@ test_that("setequal uses coercion rules (#6114)", { }) test_that("setequal tibbles must have same rows and columns", { - expect_false(setequal(tibble(x = 1:2), tibble(y = 1:2))) + # Different rows are the definition of not equal expect_false(setequal(tibble(x = 1:2), tibble(x = 2:3))) - expect_false(setequal(tibble(x = 1:2), tibble(x = c("a", "b")))) + + # Different or incompatible columns are an error, like the other set ops (#6786) + expect_snapshot(error = TRUE, { + setequal(tibble(x = 1:2), tibble(y = 1:2)) + }) + expect_snapshot(error = TRUE, { + setequal(tibble(x = 1:2), tibble(x = c("a", "b"))) + }) }) test_that("setequal checks y is a data frame", { diff --git a/tests/testthat/test-summarise.R b/tests/testthat/test-summarise.R index 64d2dd4a79..eec046542a 100644 --- a/tests/testthat/test-summarise.R +++ b/tests/testthat/test-summarise.R @@ -187,8 +187,8 @@ test_that("assigning with `<-` doesn't affect the mask (#6666)", { }) test_that("summarise() correctly auto-names expressions (#6741)", { - df <- tibble(a = 1L) - expect_identical(summarise(df, sum(-a)), tibble("sum(-a)" = -1L)) + df <- tibble(a = 1:3) + expect_identical(summarise(df, min(-a)), tibble("min(-a)" = -3L)) }) # grouping ---------------------------------------------------------------- @@ -293,7 +293,7 @@ test_that("named tibbles are packed (#2326)", { expect_equal(out$df, tibble(y = 4, z = 3)) }) -test_that("summarise(.groups=)", { +test_that("summarise(.groups=) in global environment", { expect_message(eval_bare( expr(data.frame(x = 1, y = 2) %>% group_by(x, y) %>% summarise()), env(global_env()) @@ -302,7 +302,9 @@ test_that("summarise(.groups=)", { expr(data.frame(x = 1, y = 2) %>% rowwise(x, y) %>% summarise()), env(global_env()) )) +}) +test_that("summarise(.groups=)", { df <- data.frame(x = 1, y = 2) expect_equal(df %>% summarise(z = 3, .groups= "rowwise"), rowwise(data.frame(z = 3)))