diff --git a/DESCRIPTION b/DESCRIPTION index 4eff6fae96..91bc6db965 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: ggplot2 Title: Create Elegant Data Visualisations Using the Grammar of Graphics -Version: 4.0.2.9000 +Version: 4.0.3.9000 Authors@R: c( person("Hadley", "Wickham", , "hadley@posit.co", role = "aut", comment = c(ORCID = "0000-0003-4757-117X")), diff --git a/NEWS.md b/NEWS.md index 64e6d62125..41f1ad4e4b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,9 +1,5 @@ # ggplot2 (development version) - -* `geom_boxplot()`/`stat_boxplot()` gain a `quantile.type` parameter (default `7`) - to control the percentile definition used for hinges and median; set `quantile.type = 2` - to match SAS's default `PCTLDEF = 5`, enabling parity with SAS boxplots out-of-the-box. - (@munoztd0, #6819) + * `make_constructor()` no longer captures `rlang::list2()` at build time. * The `arrow` and `arrow.fill` arguments are now available in `geom_linerange()` and `geom_pointrange()` layers (@teunbrand, #6481). @@ -36,11 +32,27 @@ * `theme(strip.placement.x)` and `theme(strip.placement.y)` can be used for more granular control of strip placement when facetting. These have existed for some time but were not previously documented (@arcresu, #6827). + +# ggplot2 4.0.3 + +This is a hotfix release fixing a test, a bug and introducing a feature. + +* Adapt to changes in `rlang::warn_dots_used()` (@lionel-, #6830). +* Fixed bug where `guide_axis_theta()` didn't anticipate old-style text elements (#6803). +* `geom_boxplot()`/`stat_boxplot()` gain a `quantile.type` parameter (default `7`) + to control the percentile definition used for hinges and median; set `quantile.type = 2` + to match SAS's default `PCTLDEF = 5`, enabling parity with SAS boxplots out-of-the-box. + (@munoztd0, #6819) # ggplot2 4.0.2 This hotfix release makes ggplot2 more interoperable between rlang versions. +* `make_constructor()` no longer captures `rlang::list2()` at build time. + +# ggplot2 4.0.1 + +This is a smaller patch release focussed on fixing regressions from 4.0.0 and # ggplot2 4.0.1 This is a smaller patch release focussed on fixing regressions from 4.0.0 and @@ -48,23 +60,25 @@ polishing the recent features. ## Bug fixes +* Fixed regression where `geom_area()` didn't draw panels with single groups * Fixed regression where `geom_area()` didn't draw panels with single groups when `stat = "align"` (@teunbrand, #6680) * Fixed regression where `position_stack(vjust)` was ignored when there are only single groups (#6692) * Fixed bug where `NA` handling in `geom_path()` was ignoring panels (@teunbrand, #6533) * Fixed bug where `stat_bin(boundary)` was ignored (#6682). -* `geom_text()` and `geom_label()` accept expressions as the `label` aesthetic +* `geom_text()` and `geom_label()` accept expressions as the `label` aesthetic (@teunbrand, #6638) -* Fixed regression where `draw_key_rect()` stopped using `fill` colours +* Fixed regression where `draw_key_rect()` stopped using `fill` colours (@mitchelloharawild, #6609). * Fixed regression where `scale_{x,y}_*()` threw an error when an expression object is set to `labels` argument (@yutannihilation, #6617). +* Fixed regression where the first (unnamed) argument to colour/fill scales was * Fixed regression where the first (unnamed) argument to colour/fill scales was not passed as the `name` argument (@teunbrand, #6623) -* Fixed issue where vectorised `arrow()`s caused errors in drawing the +* Fixed issue where vectorised `arrow()`s caused errors in drawing the legend glyphs (@teunbrand, #6594) -* Fixed regression where `NULL`-aesthetics contributed to plot labels too +* Fixed regression where `NULL`-aesthetics contributed to plot labels too insistently. Now they contribute only as fallback labels (@teunbrand, #6616) * Fixed regression where empty arguments to colour/fill scale caused errors (@jmbarbone, #6710) @@ -84,6 +98,20 @@ polishing the recent features. * Out-of-bounds datapoints used as padding by `stat_align()` now get removed silently rather than verbosely (@teunbrand, #6667) +## Improvements + +* Improved palette fallback mechanism in scales (@teunbrand, #6669). +* Allow `stat` in `geom_hline`, `geom_vline`, and `geom_abline`. (@sierrajohnson, #6559) +* `stat_boxplot()` treats `width` as an optional aesthetic (@Yunuuuu, #6575) +* The `theme(panel.widths, panel.heights)` setting attempts to preserve the + plot's aspect ratio when only one of the two settings is given, and the plot + has a single panel (@teunbrand, #6701). +* Logical values for the linetype aesthetic will be interpreted numerically, + so that `linetype = FALSE` becomes 0/'blank' and `linetype = TRUE` becomes + 1/'solid' (@teunbrand, #6641) +* Out-of-bounds datapoints used as padding by `stat_align()` now get removed + silently rather than verbosely (@teunbrand, #6667) + # ggplot2 4.0.0 ## User facing @@ -101,15 +129,15 @@ polishing the recent features. * The `element_geom()` function can be used to populate that argument. * The `from_theme()` function allows access to the theme default fields from inside the `aes()` function. -* Moved the following packages in the description. If your package depended on - ggplot2 to install these dependencies, you may need to list these in your +* Moved the following packages in the description. If your package depended on + ggplot2 to install these dependencies, you may need to list these in your own DESCRIPTION file now (#5986). * Moved mgcv from Imports to Suggests * Moved tibble from Imports to Suggests * Removed glue dependency -* Default labels are derived in `build_ggplot()` (previously `ggplot_build()`) - rather than in the layer method of `update_ggplot()` - (previously `ggplot_add.Layer()`). This may affect code that accessed the +* Default labels are derived in `build_ggplot()` (previously `ggplot_build()`) + rather than in the layer method of `update_ggplot()` + (previously `ggplot_add.Layer()`). This may affect code that accessed the `plot$labels` property (@teunbrand, #5894). * In binning stats, the default `boundary` is now chosen to better adhere to the `nbin` argument. This may affect plots that use default binning @@ -121,7 +149,7 @@ polishing the recent features. of warnings. * Functions and arguments that were soft-deprecated up to ggplot2 3.4.0 now throw warnings. -* `annotation_borders()` replaces the now-deprecated `borders()` +* `annotation_borders()` replaces the now-deprecated `borders()` (@teunbrand, #6392) * Turned off fallback for `size` to `linewidth` translation in `geom_bar()`/`geom_col()` (#4848). @@ -147,28 +175,28 @@ polishing the recent features. | `get_layer_data()` | `layer_data()` | | `get_layer_grob()` | `layer_grob()` | | `get_panel_scales()` | `layer_scales()` | - + * `facet_wrap()` has new options for the `dir` argument for additional control - over panel directions. They absorb interactions with the now-deprecated + over panel directions. They absorb interactions with the now-deprecated `as.table` argument. Internally `dir = "h"` or `dir = "v"` is deprecated (@teunbrand, #5212). * `coord_trans()` was renamed to `coord_transform()` (@nmercadeb, #5825). - + ### Improvements #### Themes * The `theme()` function offers new arguments: * `geom` to set defaults for layer aesthetics (#2239). - * `spacing`/`margins` as root elements that are inherited by all other + * `spacing`/`margins` as root elements that are inherited by all other spacings and (non-text) margins (@teunbrand, #5622). * `palette.{aes}.discrete` and `palette.{aes}.continuous` which determine the palettes used when scales have `palette = NULL`. This is the new - default for generic scales like `scale_colour_discrete()` or + default for generic scales like `scale_colour_discrete()` or `scale_fill_continuous()`, see also the 'Scales' section (#4696). * `panel.widths` and `panel.heights` to control the (absolute) size of the panels (#5338, @teunbrand). - * `legend.key.justification` to control the alignment of legend keys + * `legend.key.justification` to control the alignment of legend keys (@teunbrand, #3669) * Built-in `theme_*()` functions have new arguments: * `ink`/`paper`/`accent` to control foreground, background and highlight @@ -196,24 +224,24 @@ polishing the recent features. * Axis line ends are now `"square"`. * The panel grid is now blank at the `panel.grid` hierarchy level instead of the `panel.grid.major` and `panel.grid.minor` levels. -* The `theme(legend.spacing.{x/y})` setting now accepts `null`-units +* The `theme(legend.spacing.{x/y})` setting now accepts `null`-units (@teunbrand, #6417). #### Scales -* The default colour and fill scales have a new `palette` argument. The default, +* The default colour and fill scales have a new `palette` argument. The default, `palette = NULL` will retrieve palettes from the theme (see the Themes section). - This replaces the old options-based `type` system, with some limited backward + This replaces the old options-based `type` system, with some limited backward compatibility (@teunbrand, #6064). * All scales now expose the `aesthetics` parameter (@teunbrand, #5841) * All position scales now use the same definition of `x` and `y` aesthetics. This lets uncommon aesthetics like `xintercept` expand scales as usual. (#3342, #4966, @teunbrand) -* In continuous scales, when `breaks` is a function and `n.breaks` is set, the - `n.breaks` will be passed to the `breaks` function. Previously, `n.breaks` +* In continuous scales, when `breaks` is a function and `n.breaks` is set, the + `n.breaks` will be passed to the `breaks` function. Previously, `n.breaks` only applied to the default break calculation (@teunbrand, #5972). * Changes in discrete scales: - * Added `palette` argument, which can be used to customise spacings between + * Added `palette` argument, which can be used to customise spacings between levels (@teunbrand, #5770) * Added `continuous.limits` argument to control the display range (@teunbrand, #4174, #6259). @@ -221,14 +249,14 @@ polishing the recent features. where it affects the placement of minor ticks and minor gridlines (#5434). * Added `sec.axis` argument. Discrete scales don't support transformations so it is recommended to use `dup_axis()` to set custom breaks or labels. - Secondary discrete axes work with the continuous analogues of discrete + Secondary discrete axes work with the continuous analogues of discrete breaks (@teunbrand, #3171) * When `breaks` yields a named vector, the names will be used as `labels` by default (@teunbrand, #6147). * Changes in date/time scales: - * is silently cast to in date scales. Vice versa, + * is silently cast to in date scales. Vice versa, is cast to in datetime scales (@laurabrianna, #3533) - * Bare numeric provided to date or datetime scales get inversely transformed + * Bare numeric provided to date or datetime scales get inversely transformed (i.e. cast to /) with a warning (@teunbrand) * The `date_breaks`, `date_minor_breaks` and `date_labels` arguments have been copied over to `scale_{x/y}_time()` (@teunbrand, #4335). @@ -244,8 +272,8 @@ polishing the recent features. argument (#4021, @teunbrand). * `coord_*(expand)` can now take a logical vector to control expansion at any side of the panel (top, right, bottom, left) (@teunbrand, #6020) -* New `coord_cartesian(ratio)` argument that absorbs the aspect ratio - functionality from `coord_equal()` and `coord_fixed()`, which are now +* New `coord_cartesian(ratio)` argument that absorbs the aspect ratio + functionality from `coord_equal()` and `coord_fixed()`, which are now wrappers for `coord_cartesian()`. * In non-orthogonal coordinate systems (`coord_sf()`, `coord_polar()` and `coord_radial()`), using 'AsIs' variables escape transformation when @@ -357,7 +385,7 @@ polishing the recent features. instead of just rendering the axis line (@teunbrand, #5816). * Better handling of the `guide_axis_logticks(negative.small)` parameter when scale limits have small maximum (@teunbrand, #6121). -* Fixed regression in `guide_bins(reverse = TRUE)` (@teunbrand, #6183). +* Fixed regression in `guide_bins(reverse = TRUE)` (@teunbrand, #6183). * Binned guides now accept expressions as labels (@teunbrand, #6005) * Fixed bug where binned scales wouldn't simultaneously accept transformations and function-limits (@teunbrand, #6144). @@ -371,12 +399,12 @@ polishing the recent features. * Secondary axes respect `n.breaks` setting in continuous scales (@teunbrand, #4483). * The size of the `draw_key_polygon()` glyph now reflects the `linewidth` aesthetic which internally defaults to 0 (#4852). -* `draw_key_rect()` replaces a `NA` fill by the `colour` aesthetic +* `draw_key_rect()` replaces a `NA` fill by the `colour` aesthetic (@teunbrand, #5385, #5756). * Fixed bug where `na.value` was incorrectly mapped to non-`NA` values (@teunbrand, #5756). * Missing values from discrete palettes are no longer inappropriately translated - (@teunbrand, #5929). + (@teunbrand, #5929). * Fixed bug where empty discrete scales weren't recognised as such (@teunbrand, #5945). * Fixed regression with incorrectly drawn gridlines when using `coord_flip()` @@ -429,7 +457,7 @@ polishing the recent features. (@teunbrand, #1864). * Prevented `facet_wrap(..., drop = FALSE)` from throwing spurious errors when a character facetting variable contained `NA`s (@teunbrand, #5485). - + ## Developer facing ### Utilities @@ -453,7 +481,7 @@ polishing the recent features. * New function `get_strip_labels()` to retrieve facet labels (@teunbrand, #4979) * The ViewScale class has a `make_fixed_copy()` method to permit copying trained position scales (#3441). - + ### Internal changes * Facet gains a new method `setup_panel_params` to interact with the @@ -464,15 +492,15 @@ polishing the recent features. * Using `after_scale()` in the `Geom*$default_aes` field is now evaluated in the context of data (@teunbrand, #6135) * Improvements to `pal_qualitative()` (@teunbrand, #5013) -* Panel clipping responsibility moved from Facet class to Coord class through +* Panel clipping responsibility moved from Facet class to Coord class through new `Coord$draw_panel()` method. * Rearranged the code of `Facet$draw_panels()` method (@teunbrand). * Added `gg` class to `labs()` (@phispu, #5553). -* The plot's layout now has a coord parameter that is used to prevent setting +* The plot's layout now has a coord parameter that is used to prevent setting up identical panel parameters more than once (#5427) -* Applying defaults in `geom_sf()` has moved from the internal `sf_grob()` to +* Applying defaults in `geom_sf()` has moved from the internal `sf_grob()` to `GeomSf$use_defaults()` (@teunbrand). -* New `Facet$draw_panel_content()` method for delegating panel +* New `Facet$draw_panel_content()` method for delegating panel assembly (@Yunuuuu, #6406). * Layer data can be attenuated with parameter attributes (@teunbrand, #3175). * When facets coerce the faceting variables to factors, the 'ordered' class @@ -481,7 +509,7 @@ polishing the recent features. alignment is not necessary (#5788). * `position_stack()` skips computation when all `x` values are unique and therefore stacking is not necessary (#5788). -* The summary function of `stat_summary()` and `stat_summary_bin()` is setup +* The summary function of `stat_summary()` and `stat_summary_bin()` is setup once in total instead of once per group (@teunbrand, #5971) * Removed barriers for using 2D structures as aesthetics (@teunbrand, #4189). * Stricter check on `register_theme_elements(element_tree)` (@teunbrand, #6162) @@ -489,7 +517,7 @@ polishing the recent features. longer precomputed before guides are drawn (@teunbrand, #6339) * When `validate_subclass()` fails to find a class directly, it tries to retrieve the class via constructor functions (@teunbrand). - + # ggplot2 3.5.2 This is a small release focusing on providing infrastructure for other packages diff --git a/R/guide-.R b/R/guide-.R index 8b0cee001f..70e9d4a41a 100644 --- a/R/guide-.R +++ b/R/guide-.R @@ -284,7 +284,7 @@ Guide <- ggproto( if (is.numeric(breaks)) { range <- scale$continuous_range %||% scale$get_limits() - key <- vec_slice(key, is.finite(oob_censor_any(breaks, range))) + key <- key[is.finite(oob_censor_any(breaks, range)), , drop = FALSE] } else { key } diff --git a/R/guide-axis-theta.R b/R/guide-axis-theta.R index 796b406f96..069a18a570 100644 --- a/R/guide-axis-theta.R +++ b/R/guide-axis-theta.R @@ -198,7 +198,11 @@ GuideAxisTheta <- ggproto( # Resolve text angle if (is_waiver(params$angle) || is.null(params$angle)) { - angle <- elements$text@angle + angle <- if (S7::S7_inherits(elements$text)) { + elements$text@angle + } else { + elements$text$angle + } } else { angle <- flip_text_angle(params$angle - rad2deg(key$theta)) } diff --git a/R/guide-bins.R b/R/guide-bins.R index d62d7af67b..386552eeb1 100644 --- a/R/guide-bins.R +++ b/R/guide-bins.R @@ -181,7 +181,7 @@ GuideBins <- ggproto( } key$.label <- labels - key <- vec_slice(key, !is.na(oob_censor_any(key$.value))) + key <- key[!is.na(oob_censor_any(key$.value)), , drop = FALSE] return(key) }, diff --git a/cran-comments.md b/cran-comments.md index bc106e31c5..d2201972d3 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,2 +1,22 @@ -This is a patch release that resolves a built-time that might have occurred among different rlang versions. -The change is so minimal that we expect no reverse dependencies to be affected. +This is a patch release that resolves a failing test and supports some minimal +bug fixes and a small uninvasive feature. We detected a single failure +(ggdibbler) where a package needs to redocument. They have been notified. A +second failure (simRestore) seems unrelated to ggplot2 + +## revdepcheck results + +We checked 6300 reverse dependencies (6276 from CRAN + 24 from Bioconductor), comparing R CMD check results across CRAN and dev versions of this package. + + * We saw 2 new problems + * We failed to check 160 packages + +Issues with CRAN packages are summarised below. + +### New problems +(This reports the first line of each new failure) + +* ggdibbler + checking for code/documentation mismatches ... WARNING + +* simRestore + checking tests ... ERROR diff --git a/revdep/README.md b/revdep/README.md index a364e8d7d0..9c0419a94d 100644 --- a/revdep/README.md +++ b/revdep/README.md @@ -1,188 +1,198 @@ # Revdeps -## Failed to check (144) +## Failed to check (184) -|package |version |error |warning |note | -|:---------------------|:--------|:------|:-------|:----| -|apsimx |? | | | | -|asremlPlus |4.4.55 |1 | |1 | -|autovi |? | | | | -|AVGAS |? | | | | -|bayesdfa |1.3.4 |1 | | | -|BGGM |? | | | | -|boinet |1.5.0 |1 | | | -|brms |? | | | | -|BSL |3.2.5 |1 | | | -|bullseye |? | | | | -|cases |0.2.0 |1 | | | -|cassowaryr |? | | | | -|cdcatR |? | | | | -|cdmTools |? | | | | -|cheem |? | | | | -|ChillModels |? | | | | -|chouca |? | | | | -|cinaR |? | | | | -|ClustAssess |? | | | | -|ClusterGVis |? | | | | -|clusterMI |1.5 |1 | | | -|coFAST |? | | | | -|colleyRstats |? | | | | -|CompAREdesign |2.4.0 |1 | | | -|copulaSim |? | | | | -|correlation |? | | | | -|cry |? | | | | -|ctsem |3.10.5 |1 | |1 | -|cylcop |0.2.1 |1 | | | -|dbrobust |? | | | | -|decisionSupport |? | | | | -|deepSTRAPP |? | | | | -|degradr |? | | | | -|DFD |? | | | | -|dimRed |? | | | | -|dMrs |1.0.0 |1 | | | -|DstarM |? | | | | -|dymo |? | | | | -|easybgm |? | | | | -|eda4treeR |1.1.0 |1 | | | -|EFDR |1.3 |1 | | | -|EGAnet |? | | | | -|[eks](failures.md#eks)|1.1.2 |__+1__ | | | -|ER |1.1.2 |1 | | | -|FAfA |? | | | | -|fastei |0.0.0.12 |1 | | | -|FCPS |? | | | | -|fddm |? | | | | -|ferrn |? | | | | -|fio |0.1.6 |1 | | | -|GDINA |? | | | | -|gemR |1.2.2 |1 | | | -|genekitr |? | | | | -|GeneralizedUmatrixGPU |0.1.10 |1 | | | -|[ggChernoff](failures.md#ggchernoff)|0.3.0 |__+1__ | | | -|ggpicrust2 |? | | | | -|ggsem |? | | | | -|GJRM |0.2-6.8 |1 | |1 | -|grandR |? | | | | -|GRIDCOPULA |1.1.0 |1 | | | -|groupedHyperframe |? | | | | -|hbsaems |? | | | | -|IndGenErrors |0.1.6 |1 | | | -|jmv |? | | | | -|latentFactoR |? | | | | -|lcsm |? | | | | -|[lemon](failures.md#lemon)|0.5.2 |__+1__ | | | -|linkspotter |? | | | | -|lionfish |? | | | | -|LongDecompHE |0.1.0 |1 | | | -|manymome |? | | | | -|metrica |? | | | | -|mgc |? | | | | -|micemd |1.10.1 |1 | | | -|MiscMetabar |? | | | | -|MixedIndTests |1.2.0 |1 | | | -|modelbased |? | | | | -|ModStatR |? | | | | -|mulgar |? | | | | -|MVN |? | | | | -|neatStats |? | | | | -|negligible |? | | | | -|numbat |? | | | | -|OlinkAnalyze |? | | | | -|OpenMx |? | | | | -|opGMMassessment |0.4 |1 | | | -|outstandR |1.0.0 |1 | | | -|pandemonium |? | | | | -|parameters |? | | | | -|paths |? | | | | -|pctax |? | | | | -|pcutils |? | | | | -|phylosem |? | | | | -|plot3logit |? | | | | -|polarisR |? | | | | -|predictionInterval |? | | | | -|projectLSA |? | | | | -|psychonetrics |? | | | | -|pubh |? | | | | -|qad |1.0.6 |1 | | | -|QuadratiK |? | | | | -|quollr |? | | | | -|rattle |? | | | | -|RCTrep |1.2.0 |1 | | | -|ReporterScore |? | | | | -|Revticulate |? | | | | -|RGENERATEPREC |1.3.2 |1 | | | -|ridgetorus |? | | | | -|RMOPI |? | | | | -|rmsb |1.1-2 |1 | | | -|rSDR |? | | | | -|rshift |3.1.2 |1 | | | -|RSP |? | | | | -|rstanarm |2.32.2 |1 | | | -|RulesTools |? | | | | -|SCpubr |? | | | | -|semtree |? | | | | -|Signac |? | | | | -|spareg |? | | | | -|spinebil |? | | | | -|spinifex |? | | | | -|sprtt |? | | | | -|SRscore |? | | | | -|StatTeacherAssistant |? | | | | -|stelfi |? | | | | -|streamDAG |? | | | | -|SurprisalAnalysis |? | | | | -|Surrogate |? | | | | -|svars |1.3.12 |1 | | | -|TCIU |1.2.8 |1 | | | -|TDAkit |? | | | | -|TELP |? | | | | -|TestAnaAPP |? | | | | -|tidycomm |? | | | | -|tidySEM |? | | | | -|tinyarray |? | | | | -|tourr |? | | | | -|TransProR |? | | | | -|TriDimRegression |1.0.3 |1 | | | -|ufs |? | | | | -|woylier |? | | | | -|WQM |? | | | | -|xxdi |? | | | | -|XYomics |? | | | | +|package |version |error |warning |note | +|:---------------------|:--------|:-----|:-------|:----| +|apsimx |? | | | | +|aridagri |? | | | | +|autovi |? | | | | +|AVGAS |? | | | | +|bayesdfa |1.3.4 |1 | | | +|BayesVolcano |? | | | | +|benthos |? | | | | +|BGGM |? | | | | +|BGmisc |? | | | | +|bmm |? | | | | +|boinet |? | | | | +|brms |? | | | | +|BSL |? | | | | +|bullseye |? | | | | +|cases |? | | | | +|cassowaryr |? | | | | +|cdcatR |? | | | | +|cheem |? | | | | +|ChillModels |? | | | | +|chouca |? | | | | +|cinaR |? | | | | +|ClustAssess |? | | | | +|ClusterGVis |? | | | | +|clusterMI |? | | | | +|ClustImpute |? | | | | +|colleyRstats |? | | | | +|CompAREdesign |? | | | | +|copulaSim |? | | | | +|correlation |? | | | | +|cry |? | | | | +|ctsem |3.10.6 |1 | |1 | +|cylcop |? | | | | +|daltoolbox |? | | | | +|dbrobust |? | | | | +|decisionSupport |? | | | | +|deepSTRAPP |? | | | | +|degradr |? | | | | +|DFD |? | | | | +|dimRed |? | | | | +|dMrs |? | | | | +|DstarM |? | | | | +|dymo |? | | | | +|easybgm |? | | | | +|ecorisk |? | | | | +|eda4treeR |1.1.0 |1 | | | +|EFDR |? | | | | +|EGAnet |? | | | | +|ER |? | | | | +|FAfA |? | | | | +|fastei |0.0.0.12 |1 | | | +|fastqrs |? | | | | +|FCPS |? | | | | +|fddm |? | | | | +|FeatureImpCluster |? | | | | +|ferrn |? | | | | +|ffp |? | | | | +|fio |1.0.0 |1 | | | +|gasmodel |? | | | | +|GDINA |? | | | | +|gemR |? | | | | +|genekitr |? | | | | +|GeneralizedUmatrixGPU |0.1.14 |1 | | | +|ggpicrust2 |? | | | | +|ggrefine |? | | | | +|ggsem |? | | | | +|GJRM |? | | | | +|gMOIP |? | | | | +|grandR |? | | | | +|gratia |? | | | | +|GRIDCOPULA |1.1.0 |1 | | | +|harbinger |? | | | | +|hbsaems |? | | | | +|heimdall |? | | | | +|hpa |? | | | | +|IndGenErrors |? | | | | +|ivolcano |? | | | | +|jmv |? | | | | +|latentFactoR |? | | | | +|lcsm |? | | | | +|linkspotter |? | | | | +|lionfish |? | | | | +|LMMstar |? | | | | +|LongDecompHE |? | | | | +|manymome |? | | | | +|MBAnalysis |? | | | | +|MD2sample |? | | | | +|MDgof |? | | | | +|measureR |? | | | | +|metrica |? | | | | +|mgc |? | | | | +|micemd |? | | | | +|MiscMetabar |? | | | | +|MixedIndTests |? | | | | +|MixMashNet |? | | | | +|modelbased |? | | | | +|ModStatR |? | | | | +|morepls |? | | | | +|mulgar |? | | | | +|MultANOVA |? | | | | +|multinma |? | | | | +|MultiResponseR |? | | | | +|MVN |? | | | | +|negligible |? | | | | +|numbat |? | | | | +|OlinkAnalyze |? | | | | +|OpenMx |2.22.11 |1 | | | +|ordPanel |? | | | | +|outstandR |? | | | | +|pandemonium |? | | | | +|parameters |? | | | | +|paths |? | | | | +|pctax |? | | | | +|pcutils |? | | | | +|phylosem |? | | | | +|plot3logit |? | | | | +|polarisR |? | | | | +|predictionInterval |? | | | | +|prefviz |? | | | | +|projectLSA |? | | | | +|psychonetrics |? | | | | +|pubh |? | | | | +|pvars |? | | | | +|qad |? | | | | +|qmd |? | | | | +|QuadratiK |? | | | | +|quollr |? | | | | +|rattle |? | | | | +|RCTrep |? | | | | +|ReporterScore |? | | | | +|Revticulate |? | | | | +|RGENERATEPREC |? | | | | +|ridgetorus |? | | | | +|rmedsem |? | | | | +|RMOPI |? | | | | +|rmsb |1.1-2 |1 | | | +|rSDR |? | | | | +|rshift |3.1.2 |1 | | | +|RSP |? | | | | +|rstanarm |2.32.2 |1 | | | +|RulesTools |? | | | | +|SCpubr |? | | | | +|semtree |? | | | | +|Signac |? | | | | +|simcausal |? | | | | +|SimDesign |? | | | | +|spareg |? | | | | +|sparsevar |? | | | | +|spinebil |? | | | | +|spinifex |? | | | | +|Spower |? | | | | +|sprtt |? | | | | +|SRscore |? | | | | +|SSVS |? | | | | +|StatTeacherAssistant |? | | | | +|STCCGEV |? | | | | +|STCYP |? | | | | +|stelfi |? | | | | +|streamDAG |? | | | | +|SurprisalAnalysis |? | | | | +|Surrogate |? | | | | +|svars |? | | | | +|TCIU |1.2.8 |1 | | | +|TDAkit |? | | | | +|TELP |? | | | | +|tepr |? | | | | +|TestAnaAPP |? | | | | +|tidybins |? | | | | +|tidycomm |? | | | | +|tidylearn |? | | | | +|tidySEM |? | | | | +|tinyarray |? | | | | +|tourr |? | | | | +|TransProR |? | | | | +|TriDimRegression |1.0.3 |1 | | | +|ufs |? | | | | +|VecDep |? | | | | +|VizModules |? | | | | +|WINS |? | | | | +|wmwAUC |? | | | | +|woylier |? | | | | +|WQM |? | | | | +|xxdi |? | | | | +|XYomics |? | | | | +|zenplots |? | | | | -## New problems (32) +## New problems (2) -|package |version |error |warning |note | -|:---------------|:-------|:------|:-------|:------| -|[bfw](problems.md#bfw)|0.4.2 | |__+1__ | | -|[crayons](problems.md#crayons)|0.0.4 | |__+1__ | | -|[cycleTrendR](problems.md#cycletrendr)|0.3.0 |__+1__ | | | -|[flexoki](problems.md#flexoki)|0.0.2 | |__+1__ | | -|[geomtextpath](problems.md#geomtextpath)|0.2.0 |__+1__ | | | -|[ggalluvial](problems.md#ggalluvial)|0.12.5 | |__+1__ | | -|[GGally](problems.md#ggally)|2.4.0 |__+1__ | | | -|[ggarchery](problems.md#ggarchery)|0.4.4 | |__+1__ | | -|[ggdibbler](problems.md#ggdibbler)|0.6.1 | |__+1__ |2 | -|[ggdist](problems.md#ggdist)|3.3.3 | |__+1__ |1 | -|[ggfields](problems.md#ggfields)|0.0.7 | |__+1__ | | -|[ggformula](problems.md#ggformula)|1.0.1 |__+1__ | |1 | -|[ggfortify](problems.md#ggfortify)|0.4.19 |__+1__ | | | -|[gggda](problems.md#gggda)|0.1.1 | |__+1__ | | -|[gghexsize](problems.md#gghexsize)|0.1.0 | |__+1__ | | -|[ggiraph](problems.md#ggiraph)|0.9.3 |__+1__ | |1 | -|[ggpattern](problems.md#ggpattern)|1.2.1 | |__+1__ | | -|[ggpmisc](problems.md#ggpmisc)|0.6.3 | |__+1__ | | -|[ggpp](problems.md#ggpp)|0.6.0 | |__+1__ | | -|[ggraph](problems.md#ggraph)|2.2.2 |__+2__ | |1 | -|[ggsankeyfier](problems.md#ggsankeyfier)|0.1.8 | |__+1__ | | -|[ggspectra](problems.md#ggspectra)|0.3.17 | |__+1__ | | -|[ggtricks](problems.md#ggtricks)|0.1.0 | |__+1__ | | -|[ggvfields](problems.md#ggvfields)|1.0.0 | |__+1__ | | -|[NHSRplotthedots](problems.md#nhsrplotthedots)|0.2.2 |__+1__ | | | -|[NMF](problems.md#nmf)|0.28 | |1 |__+1__ | -|[ordr](problems.md#ordr)|0.2.0 | |__+1__ |1 | -|[rticulate](problems.md#rticulate)|2.2.0 |__+1__ | | | -|[simaerep](problems.md#simaerep)|1.0.0 |__+1__ | | | -|[statgenGxE](problems.md#statgengxe)|1.0.11 |__+1__ | |1 | -|[unusualprofile](problems.md#unusualprofile)|0.1.4 |__+1__ | | | -|[wacolors](problems.md#wacolors)|0.3.1 | |__+1__ | | +|package |version |error |warning |note | +|:----------|:-------|:------|:-------|:----| +|[ggdibbler](problems.md#ggdibbler)|0.6.1 | |__+1__ |2 | +|[simRestore](problems.md#simrestore)|1.1.5 |__+1__ | | | diff --git a/revdep/cran.md b/revdep/cran.md index 5aa0f1784d..6a73fd765d 100644 --- a/revdep/cran.md +++ b/revdep/cran.md @@ -1,120 +1,31 @@ ## revdepcheck results -We checked 6069 reverse dependencies (6057 from CRAN + 12 from Bioconductor), comparing R CMD check results across CRAN and dev versions of this package. +We checked 6300 reverse dependencies (6276 from CRAN + 24 from Bioconductor), comparing R CMD check results across CRAN and dev versions of this package. - * We saw 32 new problems - * We failed to check 132 packages + * We saw 2 new problems + * We failed to check 160 packages Issues with CRAN packages are summarised below. ### New problems (This reports the first line of each new failure) -* bfw - checking Rd cross-references ... WARNING - -* crayons - checking Rd cross-references ... WARNING - -* cycleTrendR - checking tests ... ERROR - -* flexoki - checking Rd cross-references ... WARNING - -* geomtextpath - checking tests ... ERROR - -* ggalluvial - checking Rd cross-references ... WARNING - -* GGally - checking tests ... ERROR - -* ggarchery - checking Rd cross-references ... WARNING - * ggdibbler checking for code/documentation mismatches ... WARNING -* ggdist - checking Rd cross-references ... WARNING - -* ggfields - checking Rd cross-references ... WARNING - -* ggformula - checking examples ... ERROR - -* ggfortify +* simRestore checking tests ... ERROR -* gggda - checking Rd cross-references ... WARNING - -* gghexsize - checking Rd cross-references ... WARNING - -* ggiraph - checking examples ... ERROR - -* ggpattern - checking Rd cross-references ... WARNING - -* ggpmisc - checking Rd cross-references ... WARNING - -* ggpp - checking Rd cross-references ... WARNING - -* ggraph - checking examples ... ERROR - checking re-building of vignette outputs ... ERROR - -* ggsankeyfier - checking Rd cross-references ... WARNING - -* ggspectra - checking Rd cross-references ... WARNING - -* ggtricks - checking Rd cross-references ... WARNING - -* ggvfields - checking Rd cross-references ... WARNING - -* NHSRplotthedots - checking tests ... ERROR - -* NMF - checking installed package size ... NOTE - -* ordr - checking Rd cross-references ... WARNING - -* rticulate - checking re-building of vignette outputs ... ERROR - -* simaerep - checking tests ... ERROR - -* statgenGxE - checking tests ... ERROR - -* unusualprofile - checking tests ... ERROR - -* wacolors - checking Rd cross-references ... WARNING - ### Failed to check * apsimx (NA) -* asremlPlus (NA) +* aridagri (NA) * autovi (NA) * AVGAS (NA) * bayesdfa (NA) * BGGM (NA) +* BGmisc (NA) +* bmm (NA) * boinet (NA) * brms (NA) * BSL (NA) @@ -122,7 +33,6 @@ Issues with CRAN packages are summarised below. * cases (NA) * cassowaryr (NA) * cdcatR (NA) -* cdmTools (NA) * cheem (NA) * ChillModels (NA) * chouca (NA) @@ -130,12 +40,13 @@ Issues with CRAN packages are summarised below. * ClustAssess (NA) * ClusterGVis (NA) * clusterMI (NA) -* coFAST (NA) +* ClustImpute (NA) * CompAREdesign (NA) * copulaSim (NA) * correlation (NA) * ctsem (NA) * cylcop (NA) +* daltoolbox (NA) * decisionSupport (NA) * deepSTRAPP (NA) * DFD (NA) @@ -146,49 +57,59 @@ Issues with CRAN packages are summarised below. * eda4treeR (NA) * EFDR (NA) * EGAnet (NA) -* eks (NA) * ER (NA) * FAfA (NA) * fastei (NA) +* fastqrs (NA) * FCPS (NA) * fddm (NA) +* FeatureImpCluster (NA) * ferrn (NA) +* ffp (NA) * fio (NA) +* gasmodel (NA) * GDINA (NA) * gemR (NA) * genekitr (NA) * GeneralizedUmatrixGPU (NA) -* ggChernoff (NA) * ggpicrust2 (NA) * ggsem (NA) * GJRM (NA) * grandR (NA) +* gratia (NA) * GRIDCOPULA (NA) +* harbinger (NA) * hbsaems (NA) +* heimdall (NA) * IndGenErrors (NA) +* ivolcano (NA) * jmv (NA) * latentFactoR (NA) * lcsm (NA) -* lemon (NA) * linkspotter (NA) * lionfish (NA) +* LMMstar (NA) * LongDecompHE (NA) * manymome (NA) +* MD2sample (NA) +* MDgof (NA) +* measureR (NA) * metrica (NA) * mgc (NA) * micemd (NA) * MiscMetabar (NA) * MixedIndTests (NA) +* MixMashNet (NA) * modelbased (NA) * ModStatR (NA) +* morepls (NA) * mulgar (NA) +* multinma (NA) * MVN (NA) -* neatStats (NA) * negligible (NA) * numbat (NA) * OlinkAnalyze (NA) * OpenMx (NA) -* opGMMassessment (NA) * outstandR (NA) * pandemonium (NA) * parameters (NA) @@ -197,9 +118,12 @@ Issues with CRAN packages are summarised below. * phylosem (NA) * polarisR (NA) * predictionInterval (NA) +* prefviz (NA) * projectLSA (NA) * psychonetrics (NA) +* pvars (NA) * qad (NA) +* qmd (NA) * QuadratiK (NA) * quollr (NA) * rattle (NA) @@ -208,6 +132,7 @@ Issues with CRAN packages are summarised below. * Revticulate (NA) * RGENERATEPREC (NA) * ridgetorus (NA) +* rmedsem (NA) * RMOPI (NA) * rmsb (NA) * rSDR (NA) @@ -218,11 +143,16 @@ Issues with CRAN packages are summarised below. * SCpubr (NA) * semtree (NA) * Signac (NA) +* simcausal (NA) +* SimDesign (NA) * spareg (NA) * spinebil (NA) * spinifex (NA) +* Spower (NA) * sprtt (NA) * SRscore (NA) +* STCCGEV (NA) +* STCYP (NA) * streamDAG (NA) * SurprisalAnalysis (NA) * Surrogate (NA) @@ -230,14 +160,21 @@ Issues with CRAN packages are summarised below. * TCIU (NA) * TDAkit (NA) * TELP (NA) +* tepr (NA) * TestAnaAPP (NA) +* tidybins (NA) * tidycomm (NA) +* tidylearn (NA) * tidySEM (NA) * tinyarray (NA) * tourr (NA) * TransProR (NA) * TriDimRegression (NA) * ufs (NA) +* VecDep (NA) +* WINS (NA) +* wmwAUC (NA) * woylier (NA) * WQM (NA) * XYomics (NA) +* zenplots (NA) diff --git a/revdep/failures.md b/revdep/failures.md index 0b0ccbd805..732ae52dfe 100644 --- a/revdep/failures.md +++ b/revdep/failures.md @@ -6,7 +6,7 @@ * GitHub: https://github.com/femiguez/apsimx * Source code: https://github.com/cran/apsimx * Date/Publication: 2025-03-10 05:40:02 UTC -* Number of recursive dependencies: 185 +* Number of recursive dependencies: 182 Run `revdepcheck::cloud_details(, "apsimx")` for more info @@ -37,7 +37,7 @@ Run `revdepcheck::cloud_details(, "apsimx")` for more info * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * DONE -Status: 1 NOTE +Status: 2 NOTEs @@ -67,79 +67,86 @@ Status: 1 NOTE * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * DONE -Status: 1 NOTE +Status: 2 NOTEs ``` -# asremlPlus +# aridagri
-* Version: 4.4.55 -* GitHub: https://github.com/briencj/asremlPlus -* Source code: https://github.com/cran/asremlPlus -* Date/Publication: 2025-11-07 15:50:08 UTC -* Number of recursive dependencies: 189 +* Version: 2.0.3 +* GitHub: https://github.com/lalitrolaniya/aridagri +* Source code: https://github.com/cran/aridagri +* Date/Publication: 2026-02-24 19:20:08 UTC +* Number of recursive dependencies: 180 -Run `revdepcheck::cloud_details(, "asremlPlus")` for more info +Run `revdepcheck::cloud_details(, "aridagri")` for more info
-## In both +## Error before installation -* checking whether package ‘asremlPlus’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/asremlPlus/new/asremlPlus.Rcheck/00install.out’ for details. - ``` +### Devel -* checking package dependencies ... NOTE - ``` - Package which this enhances but not available for checking: ‘asreml’ - ``` +``` +* using log directory ‘/tmp/workdir/aridagri/new/aridagri.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘aridagri/DESCRIPTION’ ... OK +... +* checking Rd metadata ... OK +* checking Rd cross-references ... OK +* checking for missing documentation entries ... 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 +* DONE +Status: 1 NOTE -## Installation -### Devel -``` -* installing *source* package ‘asremlPlus’ ... -** package ‘asremlPlus’ 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 ‘magrittr’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘asremlPlus’ -* removing ‘/tmp/workdir/asremlPlus/new/asremlPlus.Rcheck/asremlPlus’ ``` ### CRAN ``` -* installing *source* package ‘asremlPlus’ ... -** package ‘asremlPlus’ 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 ‘magrittr’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘asremlPlus’ -* removing ‘/tmp/workdir/asremlPlus/old/asremlPlus.Rcheck/asremlPlus’ +* using log directory ‘/tmp/workdir/aridagri/old/aridagri.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘aridagri/DESCRIPTION’ ... OK +... +* checking Rd metadata ... OK +* checking Rd cross-references ... OK +* checking for missing documentation entries ... 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 +* DONE +Status: 1 NOTE + + + ``` @@ -151,7 +158,7 @@ ERROR: lazy loading failed for package ‘asremlPlus’ * GitHub: https://github.com/TengMCing/autovi * Source code: https://github.com/cran/autovi * Date/Publication: 2024-11-18 04:40:12 UTC -* Number of recursive dependencies: 99 +* Number of recursive dependencies: 98 Run `revdepcheck::cloud_details(, "autovi")` for more info @@ -346,6 +353,76 @@ ERROR: configuration failed for package ‘bayesdfa’ * removing ‘/tmp/workdir/bayesdfa/old/bayesdfa.Rcheck/bayesdfa’ +``` +# BayesVolcano + +
+ +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/BayesVolcano +* Number of recursive dependencies: 103 + +Run `revdepcheck::cloud_details(, "BayesVolcano")` for more info + +
+ +## Error before installation + +### Devel + +``` + + + + + + +``` +### CRAN + +``` + + + + + + +``` +# benthos + +
+ +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/benthos +* Number of recursive dependencies: 72 + +Run `revdepcheck::cloud_details(, "benthos")` for more info + +
+ +## Error before installation + +### Devel + +``` + + + + + + +``` +### CRAN + +``` + + + + + + ``` # BGGM @@ -423,77 +500,17 @@ Status: 1 ERROR ``` -# boinet - -
- -* Version: 1.5.0 -* GitHub: NA -* Source code: https://github.com/cran/boinet -* Date/Publication: 2025-10-26 19:20:02 UTC -* Number of recursive dependencies: 110 - -Run `revdepcheck::cloud_details(, "boinet")` for more info - -
- -## In both - -* checking whether package ‘boinet’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/boinet/new/boinet.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘boinet’ ... -** package ‘boinet’ 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘boinet’ -* removing ‘/tmp/workdir/boinet/new/boinet.Rcheck/boinet’ - - -``` -### CRAN - -``` -* installing *source* package ‘boinet’ ... -** package ‘boinet’ 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘boinet’ -* removing ‘/tmp/workdir/boinet/old/boinet.Rcheck/boinet’ - - -``` -# brms +# BGmisc
-* Version: 2.23.0 -* GitHub: https://github.com/paul-buerkner/brms -* Source code: https://github.com/cran/brms -* Date/Publication: 2025-09-09 10:50:02 UTC -* Number of recursive dependencies: 219 +* Version: 1.6.0.1 +* GitHub: https://github.com/R-Computing-Lab/BGmisc +* Source code: https://github.com/cran/BGmisc +* Date/Publication: 2026-03-13 17:00:07 UTC +* Number of recursive dependencies: 133 -Run `revdepcheck::cloud_details(, "brms")` for more info +Run `revdepcheck::cloud_details(, "BGmisc")` for more info
@@ -502,7 +519,7 @@ Run `revdepcheck::cloud_details(, "brms")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/brms/new/brms.Rcheck’ +* using log directory ‘/tmp/workdir/BGmisc/new/BGmisc.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -511,18 +528,18 @@ Run `revdepcheck::cloud_details(, "brms")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘brms/DESCRIPTION’ ... OK +* checking for file ‘BGmisc/DESCRIPTION’ ... OK ... - - [ FAIL 1 | WARN 0 | SKIP 11 | PASS 2731 ] - Error: - ! Test failures. - Execution halted +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * DONE -Status: 1 ERROR, 3 NOTEs +Status: 1 NOTE @@ -532,7 +549,7 @@ Status: 1 ERROR, 3 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/brms/old/brms.Rcheck’ +* using log directory ‘/tmp/workdir/BGmisc/old/BGmisc.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -541,122 +558,44 @@ Status: 1 ERROR, 3 NOTEs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘brms/DESCRIPTION’ ... OK +* checking for file ‘BGmisc/DESCRIPTION’ ... OK ... - - [ FAIL 1 | WARN 0 | SKIP 11 | PASS 2731 ] - Error: - ! Test failures. - Execution halted +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * DONE -Status: 1 ERROR, 3 NOTEs +Status: 1 NOTE ``` -# BSL +# bmm
-* Version: 3.2.5 -* GitHub: NA -* Source code: https://github.com/cran/BSL -* Date/Publication: 2022-11-03 09:00:07 UTC -* Number of recursive dependencies: 97 +* Version: 1.3.0 +* GitHub: https://github.com/venpopov/bmm +* Source code: https://github.com/cran/bmm +* Date/Publication: 2026-03-30 11:00:09 UTC +* Number of recursive dependencies: 137 -Run `revdepcheck::cloud_details(, "BSL")` for more info +Run `revdepcheck::cloud_details(, "bmm")` for more info
-## In both - -* checking whether package ‘BSL’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/BSL/new/BSL.Rcheck/00install.out’ for details. - ``` - -## Installation +## Error before installation ### Devel ``` -* installing *source* package ‘BSL’ ... -** package ‘BSL’ successfully unpacked and MD5 sums checked -** using staged installation -** libs -using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c simulate_cell.cpp -o simulate_cell.o -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c simulate_toad.cpp -o simulate_toad.o -g++ -std=gnu++17 -shared -L/opt/R/4.4.0/lib/R/lib -L/usr/local/lib -o BSL.so RcppExports.o simulate_cell.o simulate_toad.o -L/opt/R/4.4.0/lib/R/lib -lR -installing to /tmp/workdir/BSL/new/BSL.Rcheck/00LOCK-BSL/00new/BSL/libs -... -** 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘BSL’ -* removing ‘/tmp/workdir/BSL/new/BSL.Rcheck/BSL’ - - -``` -### CRAN - -``` -* installing *source* package ‘BSL’ ... -** package ‘BSL’ successfully unpacked and MD5 sums checked -** using staged installation -** libs -using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c simulate_cell.cpp -o simulate_cell.o -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c simulate_toad.cpp -o simulate_toad.o -g++ -std=gnu++17 -shared -L/opt/R/4.4.0/lib/R/lib -L/usr/local/lib -o BSL.so RcppExports.o simulate_cell.o simulate_toad.o -L/opt/R/4.4.0/lib/R/lib -lR -installing to /tmp/workdir/BSL/old/BSL.Rcheck/00LOCK-BSL/00new/BSL/libs -... -** 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘BSL’ -* removing ‘/tmp/workdir/BSL/old/BSL.Rcheck/BSL’ - - -``` -# bullseye - -
- -* Version: 1.0.1 -* GitHub: https://github.com/cbhurley/bullseye -* Source code: https://github.com/cran/bullseye -* Date/Publication: 2025-09-15 11:00:02 UTC -* Number of recursive dependencies: 163 - -Run `revdepcheck::cloud_details(, "bullseye")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/bullseye/new/bullseye.Rcheck’ +* using log directory ‘/tmp/workdir/bmm/new/bmm.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -665,18 +604,18 @@ Run `revdepcheck::cloud_details(, "bullseye")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘bullseye/DESCRIPTION’ ... OK +* checking for file ‘bmm/DESCRIPTION’ ... OK ... ---- failed re-building ‘vis_pairwise.Rmd’ - -SUMMARY: processing the following files failed: - ‘calc_pairwise.Rmd’ ‘integrating.Rmd’ ‘vis_pairwise.Rmd’ - -Error: Vignette re-building failed. -Execution halted +* this is package ‘bmm’ version ‘1.3.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘rtdists’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 ERRORs, 2 NOTEs +Status: 1 ERROR @@ -686,7 +625,7 @@ Status: 2 ERRORs, 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/bullseye/old/bullseye.Rcheck’ +* using log directory ‘/tmp/workdir/bmm/old/bmm.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -695,99 +634,35 @@ Status: 2 ERRORs, 2 NOTEs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘bullseye/DESCRIPTION’ ... OK +* checking for file ‘bmm/DESCRIPTION’ ... OK ... ---- failed re-building ‘vis_pairwise.Rmd’ - -SUMMARY: processing the following files failed: - ‘calc_pairwise.Rmd’ ‘integrating.Rmd’ ‘vis_pairwise.Rmd’ - -Error: Vignette re-building failed. -Execution halted +* this is package ‘bmm’ version ‘1.3.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘rtdists’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 ERRORs, 2 NOTEs - - - - - -``` -# cases - -
- -* Version: 0.2.0 -* GitHub: https://github.com/maxwestphal/cases -* Source code: https://github.com/cran/cases -* Date/Publication: 2025-01-09 17:50:02 UTC -* Number of recursive dependencies: 118 - -Run `revdepcheck::cloud_details(, "cases")` for more info - -
- -## In both - -* checking whether package ‘cases’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/cases/new/cases.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘cases’ ... -** package ‘cases’ 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘cases’ -* removing ‘/tmp/workdir/cases/new/cases.Rcheck/cases’ +Status: 1 ERROR -``` -### CRAN -``` -* installing *source* package ‘cases’ ... -** package ‘cases’ 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘cases’ -* removing ‘/tmp/workdir/cases/old/cases.Rcheck/cases’ ``` -# cassowaryr +# boinet
-* Version: 2.0.2 -* GitHub: https://github.com/numbats/cassowaryr -* Source code: https://github.com/cran/cassowaryr -* Date/Publication: 2024-09-13 07:20:02 UTC -* Number of recursive dependencies: 103 +* Version: 1.5.0 +* GitHub: NA +* Source code: https://github.com/cran/boinet +* Date/Publication: 2025-10-26 19:20:02 UTC +* Number of recursive dependencies: 111 -Run `revdepcheck::cloud_details(, "cassowaryr")` for more info +Run `revdepcheck::cloud_details(, "boinet")` for more info
@@ -796,7 +671,7 @@ Run `revdepcheck::cloud_details(, "cassowaryr")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/cassowaryr/new/cassowaryr.Rcheck’ +* using log directory ‘/tmp/workdir/boinet/new/boinet.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -805,13 +680,13 @@ Run `revdepcheck::cloud_details(, "cassowaryr")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘cassowaryr/DESCRIPTION’ ... OK +* checking for file ‘boinet/DESCRIPTION’ ... OK ... -* this is package ‘cassowaryr’ version ‘2.0.2’ +* this is package ‘boinet’ version ‘1.5.0’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘energy’ +Package required but not available: ‘copula’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -826,7 +701,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/cassowaryr/old/cassowaryr.Rcheck’ +* using log directory ‘/tmp/workdir/boinet/old/boinet.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -835,13 +710,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘cassowaryr/DESCRIPTION’ ... OK +* checking for file ‘boinet/DESCRIPTION’ ... OK ... -* this is package ‘cassowaryr’ version ‘2.0.2’ +* this is package ‘boinet’ version ‘1.5.0’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘energy’ +Package required but not available: ‘copula’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -853,17 +728,17 @@ Status: 1 ERROR ``` -# cdcatR +# brms
-* Version: 1.0.6 -* GitHub: https://github.com/miguel-sorrel/cdcatR -* Source code: https://github.com/cran/cdcatR -* Date/Publication: 2022-05-25 15:10:08 UTC -* Number of recursive dependencies: 127 +* Version: 2.23.0 +* GitHub: https://github.com/paul-buerkner/brms +* Source code: https://github.com/cran/brms +* Date/Publication: 2025-09-09 10:50:02 UTC +* Number of recursive dependencies: 219 -Run `revdepcheck::cloud_details(, "cdcatR")` for more info +Run `revdepcheck::cloud_details(, "brms")` for more info
@@ -872,7 +747,7 @@ Run `revdepcheck::cloud_details(, "cdcatR")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/cdcatR/new/cdcatR.Rcheck’ +* using log directory ‘/tmp/workdir/brms/new/brms.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -881,18 +756,18 @@ Run `revdepcheck::cloud_details(, "cdcatR")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘cdcatR/DESCRIPTION’ ... OK +* checking for file ‘brms/DESCRIPTION’ ... OK ... -* this is package ‘cdcatR’ version ‘1.0.6’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘cdmTools’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. + + [ FAIL 1 | WARN 0 | SKIP 11 | PASS 2731 ] + Error: + ! Test failures. + Execution halted +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK * DONE -Status: 1 ERROR +Status: 1 ERROR, 3 NOTEs @@ -902,7 +777,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/cdcatR/old/cdcatR.Rcheck’ +* using log directory ‘/tmp/workdir/brms/old/brms.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -911,35 +786,35 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘cdcatR/DESCRIPTION’ ... OK +* checking for file ‘brms/DESCRIPTION’ ... OK ... -* this is package ‘cdcatR’ version ‘1.0.6’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘cdmTools’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. + + [ FAIL 1 | WARN 0 | SKIP 11 | PASS 2731 ] + Error: + ! Test failures. + Execution halted +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK * DONE -Status: 1 ERROR +Status: 1 ERROR, 3 NOTEs ``` -# cdmTools +# BSL
-* Version: 1.0.6 -* GitHub: https://github.com/pablo-najera/cdmTools -* Source code: https://github.com/cran/cdmTools -* Date/Publication: 2025-05-19 08:10:02 UTC -* Number of recursive dependencies: 122 +* Version: 3.2.5 +* GitHub: NA +* Source code: https://github.com/cran/BSL +* Date/Publication: 2022-11-03 09:00:07 UTC +* Number of recursive dependencies: 98 -Run `revdepcheck::cloud_details(, "cdmTools")` for more info +Run `revdepcheck::cloud_details(, "BSL")` for more info
@@ -948,7 +823,7 @@ Run `revdepcheck::cloud_details(, "cdmTools")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/cdmTools/new/cdmTools.Rcheck’ +* using log directory ‘/tmp/workdir/BSL/new/BSL.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -957,13 +832,13 @@ Run `revdepcheck::cloud_details(, "cdmTools")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘cdmTools/DESCRIPTION’ ... OK +* checking for file ‘BSL/DESCRIPTION’ ... OK ... -* this is package ‘cdmTools’ version ‘1.0.6’ +* this is package ‘BSL’ version ‘3.2.5’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘fungible’ +Package required but not available: ‘copula’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -978,7 +853,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/cdmTools/old/cdmTools.Rcheck’ +* using log directory ‘/tmp/workdir/BSL/old/BSL.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -987,13 +862,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘cdmTools/DESCRIPTION’ ... OK +* checking for file ‘BSL/DESCRIPTION’ ... OK ... -* this is package ‘cdmTools’ version ‘1.0.6’ +* this is package ‘BSL’ version ‘3.2.5’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘fungible’ +Package required but not available: ‘copula’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -1005,17 +880,17 @@ Status: 1 ERROR ``` -# cheem +# bullseye
-* Version: 0.4.2 -* GitHub: https://github.com/nspyrison/cheem -* Source code: https://github.com/cran/cheem -* Date/Publication: 2025-09-17 22:10:08 UTC -* Number of recursive dependencies: 170 +* Version: 1.0.1 +* GitHub: https://github.com/cbhurley/bullseye +* Source code: https://github.com/cran/bullseye +* Date/Publication: 2025-09-15 11:00:02 UTC +* Number of recursive dependencies: 163 -Run `revdepcheck::cloud_details(, "cheem")` for more info +Run `revdepcheck::cloud_details(, "bullseye")` for more info
@@ -1024,7 +899,7 @@ Run `revdepcheck::cloud_details(, "cheem")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/cheem/new/cheem.Rcheck’ +* using log directory ‘/tmp/workdir/bullseye/new/bullseye.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -1033,18 +908,18 @@ Run `revdepcheck::cloud_details(, "cheem")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘cheem/DESCRIPTION’ ... OK +* checking for file ‘bullseye/DESCRIPTION’ ... OK ... -* checking files in ‘vignettes’ ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK +--- failed re-building ‘vis_pairwise.Rmd’ + +SUMMARY: processing the following files failed: + ‘calc_pairwise.Rmd’ ‘integrating.Rmd’ ‘vis_pairwise.Rmd’ + +Error: Vignette re-building failed. +Execution halted + * DONE -Status: OK +Status: 2 ERRORs, 2 NOTEs @@ -1054,7 +929,7 @@ Status: OK ### CRAN ``` -* using log directory ‘/tmp/workdir/cheem/old/cheem.Rcheck’ +* using log directory ‘/tmp/workdir/bullseye/old/bullseye.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -1063,35 +938,35 @@ Status: OK * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘cheem/DESCRIPTION’ ... OK +* checking for file ‘bullseye/DESCRIPTION’ ... OK ... -* checking files in ‘vignettes’ ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK +--- failed re-building ‘vis_pairwise.Rmd’ + +SUMMARY: processing the following files failed: + ‘calc_pairwise.Rmd’ ‘integrating.Rmd’ ‘vis_pairwise.Rmd’ + +Error: Vignette re-building failed. +Execution halted + * DONE -Status: OK +Status: 2 ERRORs, 2 NOTEs ``` -# ChillModels +# cases
-* Version: 1.0.2 -* GitHub: NA -* Source code: https://github.com/cran/ChillModels -* Date/Publication: 2020-01-16 16:50:06 UTC -* Number of recursive dependencies: 106 +* Version: 0.2.0 +* GitHub: https://github.com/maxwestphal/cases +* Source code: https://github.com/cran/cases +* Date/Publication: 2025-01-09 17:50:02 UTC +* Number of recursive dependencies: 118 -Run `revdepcheck::cloud_details(, "ChillModels")` for more info +Run `revdepcheck::cloud_details(, "cases")` for more info
@@ -1100,7 +975,7 @@ Run `revdepcheck::cloud_details(, "ChillModels")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/ChillModels/new/ChillModels.Rcheck’ +* using log directory ‘/tmp/workdir/cases/new/cases.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -1109,18 +984,18 @@ Run `revdepcheck::cloud_details(, "ChillModels")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ChillModels/DESCRIPTION’ ... OK +* checking for file ‘cases/DESCRIPTION’ ... 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 LazyData ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking examples ... OK +* this is package ‘cases’ version ‘0.2.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 NOTEs +Status: 1 ERROR @@ -1130,7 +1005,7 @@ Status: 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/ChillModels/old/ChillModels.Rcheck’ +* using log directory ‘/tmp/workdir/cases/old/cases.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -1139,35 +1014,35 @@ Status: 2 NOTEs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ChillModels/DESCRIPTION’ ... OK +* checking for file ‘cases/DESCRIPTION’ ... 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 LazyData ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking examples ... OK +* this is package ‘cases’ version ‘0.2.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 NOTEs +Status: 1 ERROR ``` -# chouca +# cassowaryr
-* Version: 0.1.99 -* GitHub: https://github.com/alexgenin/chouca -* Source code: https://github.com/cran/chouca -* Date/Publication: 2024-03-07 15:00:02 UTC -* Number of recursive dependencies: 79 +* Version: 2.0.2 +* GitHub: https://github.com/numbats/cassowaryr +* Source code: https://github.com/cran/cassowaryr +* Date/Publication: 2024-09-13 07:20:02 UTC +* Number of recursive dependencies: 102 -Run `revdepcheck::cloud_details(, "chouca")` for more info +Run `revdepcheck::cloud_details(, "cassowaryr")` for more info
@@ -1176,7 +1051,7 @@ Run `revdepcheck::cloud_details(, "chouca")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/chouca/new/chouca.Rcheck’ +* using log directory ‘/tmp/workdir/cassowaryr/new/cassowaryr.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -1185,18 +1060,18 @@ Run `revdepcheck::cloud_details(, "chouca")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘chouca/DESCRIPTION’ ... OK +* checking for file ‘cassowaryr/DESCRIPTION’ ... OK ... ---- failed re-building ‘chouca-package.Rmd’ - -SUMMARY: processing the following file failed: - ‘chouca-package.Rmd’ - -Error: Vignette re-building failed. -Execution halted +* this is package ‘cassowaryr’ version ‘2.0.2’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘energy’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 ERRORs, 1 NOTE +Status: 1 ERROR @@ -1206,7 +1081,7 @@ Status: 2 ERRORs, 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/chouca/old/chouca.Rcheck’ +* using log directory ‘/tmp/workdir/cassowaryr/old/cassowaryr.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -1215,35 +1090,35 @@ Status: 2 ERRORs, 1 NOTE * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘chouca/DESCRIPTION’ ... OK +* checking for file ‘cassowaryr/DESCRIPTION’ ... OK ... ---- failed re-building ‘chouca-package.Rmd’ - -SUMMARY: processing the following file failed: - ‘chouca-package.Rmd’ - -Error: Vignette re-building failed. -Execution halted +* this is package ‘cassowaryr’ version ‘2.0.2’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘energy’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 ERRORs, 1 NOTE +Status: 1 ERROR ``` -# cinaR +# cdcatR
-* Version: 0.2.3 -* GitHub: https://github.com/eonurk/cinaR -* Source code: https://github.com/cran/cinaR -* Date/Publication: 2022-05-18 14:00:09 UTC -* Number of recursive dependencies: 177 +* Version: 1.0.7 +* GitHub: https://github.com/miguel-sorrel/cdcatR +* Source code: https://github.com/cran/cdcatR +* Date/Publication: 2026-02-11 09:30:02 UTC +* Number of recursive dependencies: 129 -Run `revdepcheck::cloud_details(, "cinaR")` for more info +Run `revdepcheck::cloud_details(, "cdcatR")` for more info
@@ -1252,7 +1127,7 @@ Run `revdepcheck::cloud_details(, "cinaR")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/cinaR/new/cinaR.Rcheck’ +* using log directory ‘/tmp/workdir/cdcatR/new/cdcatR.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -1261,13 +1136,13 @@ Run `revdepcheck::cloud_details(, "cinaR")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘cinaR/DESCRIPTION’ ... OK +* checking for file ‘cdcatR/DESCRIPTION’ ... OK ... -* this is package ‘cinaR’ version ‘0.2.3’ +* this is package ‘cdcatR’ version ‘1.0.7’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘ChIPseeker’ +Package required but not available: ‘cdmTools’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -1282,7 +1157,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/cinaR/old/cinaR.Rcheck’ +* using log directory ‘/tmp/workdir/cdcatR/old/cdcatR.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -1291,13 +1166,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘cinaR/DESCRIPTION’ ... OK +* checking for file ‘cdcatR/DESCRIPTION’ ... OK ... -* this is package ‘cinaR’ version ‘0.2.3’ +* this is package ‘cdcatR’ version ‘1.0.7’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘ChIPseeker’ +Package required but not available: ‘cdmTools’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -1309,17 +1184,17 @@ Status: 1 ERROR ``` -# ClustAssess +# cheem
-* Version: 1.1.0 -* GitHub: https://github.com/Core-Bioinformatics/ClustAssess -* Source code: https://github.com/cran/ClustAssess -* Date/Publication: 2025-05-27 23:00:30 UTC -* Number of recursive dependencies: 249 +* Version: 0.4.2 +* GitHub: https://github.com/nspyrison/cheem +* Source code: https://github.com/cran/cheem +* Date/Publication: 2025-09-17 22:10:08 UTC +* Number of recursive dependencies: 171 -Run `revdepcheck::cloud_details(, "ClustAssess")` for more info +Run `revdepcheck::cloud_details(, "cheem")` for more info
@@ -1328,7 +1203,7 @@ Run `revdepcheck::cloud_details(, "ClustAssess")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/ClustAssess/new/ClustAssess.Rcheck’ +* using log directory ‘/tmp/workdir/cheem/new/cheem.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -1337,18 +1212,18 @@ Run `revdepcheck::cloud_details(, "ClustAssess")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ClustAssess/DESCRIPTION’ ... OK +* checking for file ‘cheem/DESCRIPTION’ ... 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 files in ‘vignettes’ ... OK * checking examples ... OK * checking for unstated dependencies in ‘tests’ ... OK * checking tests ... OK Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK * DONE -Status: 2 NOTEs +Status: OK @@ -1358,7 +1233,7 @@ Status: 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/ClustAssess/old/ClustAssess.Rcheck’ +* using log directory ‘/tmp/workdir/cheem/old/cheem.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -1367,35 +1242,35 @@ Status: 2 NOTEs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ClustAssess/DESCRIPTION’ ... OK +* checking for file ‘cheem/DESCRIPTION’ ... 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 files in ‘vignettes’ ... OK * checking examples ... OK * checking for unstated dependencies in ‘tests’ ... OK * checking tests ... OK Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK * DONE -Status: 2 NOTEs +Status: OK ``` -# ClusterGVis +# ChillModels
-* Version: 0.1.4 -* GitHub: https://github.com/junjunlab/ClusterGVis -* Source code: https://github.com/cran/ClusterGVis -* Date/Publication: 2025-07-19 06:10:02 UTC -* Number of recursive dependencies: 306 +* Version: 1.0.2 +* GitHub: NA +* Source code: https://github.com/cran/ChillModels +* Date/Publication: 2020-01-16 16:50:06 UTC +* Number of recursive dependencies: 106 -Run `revdepcheck::cloud_details(, "ClusterGVis")` for more info +Run `revdepcheck::cloud_details(, "ChillModels")` for more info
@@ -1404,7 +1279,7 @@ Run `revdepcheck::cloud_details(, "ClusterGVis")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/ClusterGVis/new/ClusterGVis.Rcheck’ +* using log directory ‘/tmp/workdir/ChillModels/new/ChillModels.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -1413,18 +1288,18 @@ Run `revdepcheck::cloud_details(, "ClusterGVis")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ClusterGVis/DESCRIPTION’ ... OK +* checking for file ‘ChillModels/DESCRIPTION’ ... 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 LazyData ... OK * checking data for ASCII and uncompressed saves ... 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 ... OK -* checking re-building of vignette outputs ... OK * DONE -Status: 1 NOTE +Status: 2 NOTEs @@ -1434,7 +1309,7 @@ Status: 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/ClusterGVis/old/ClusterGVis.Rcheck’ +* using log directory ‘/tmp/workdir/ChillModels/old/ChillModels.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -1443,122 +1318,44 @@ Status: 1 NOTE * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ClusterGVis/DESCRIPTION’ ... OK +* checking for file ‘ChillModels/DESCRIPTION’ ... 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 LazyData ... OK * checking data for ASCII and uncompressed saves ... 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 ... OK -* checking re-building of vignette outputs ... OK * DONE -Status: 1 NOTE +Status: 2 NOTEs ``` -# clusterMI +# chouca
-* Version: 1.5 -* GitHub: NA -* Source code: https://github.com/cran/clusterMI -* Date/Publication: 2025-02-24 17:20:08 UTC -* Number of recursive dependencies: 272 +* Version: 0.1.99 +* GitHub: https://github.com/alexgenin/chouca +* Source code: https://github.com/cran/chouca +* Date/Publication: 2024-03-07 15:00:02 UTC +* Number of recursive dependencies: 78 -Run `revdepcheck::cloud_details(, "clusterMI")` for more info +Run `revdepcheck::cloud_details(, "chouca")` for more info
-## In both - -* checking whether package ‘clusterMI’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/clusterMI/new/clusterMI.Rcheck/00install.out’ for details. - ``` - -## Installation +## Error before installation ### Devel ``` -* installing *source* package ‘clusterMI’ ... -** package ‘clusterMI’ successfully unpacked and MD5 sums checked -** using staged installation -** libs -using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c 1_Main.cpp -o 1_Main.o -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c 2_DataParam.cpp -o 2_DataParam.o -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o -g++ -std=gnu++17 -shared -L/opt/R/4.4.0/lib/R/lib -L/usr/local/lib -o clusterMI.so 1_Main.o 2_DataParam.o RcppExports.o -llapack -lblas -lgfortran -lm -lquadmath -L/opt/R/4.4.0/lib/R/lib -lR -installing to /tmp/workdir/clusterMI/new/clusterMI.Rcheck/00LOCK-clusterMI/00new/clusterMI/libs -... -** 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘clusterMI’ -* removing ‘/tmp/workdir/clusterMI/new/clusterMI.Rcheck/clusterMI’ - - -``` -### CRAN - -``` -* installing *source* package ‘clusterMI’ ... -** package ‘clusterMI’ successfully unpacked and MD5 sums checked -** using staged installation -** libs -using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c 1_Main.cpp -o 1_Main.o -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c 2_DataParam.cpp -o 2_DataParam.o -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o -g++ -std=gnu++17 -shared -L/opt/R/4.4.0/lib/R/lib -L/usr/local/lib -o clusterMI.so 1_Main.o 2_DataParam.o RcppExports.o -llapack -lblas -lgfortran -lm -lquadmath -L/opt/R/4.4.0/lib/R/lib -lR -installing to /tmp/workdir/clusterMI/old/clusterMI.Rcheck/00LOCK-clusterMI/00new/clusterMI/libs -... -** 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘clusterMI’ -* removing ‘/tmp/workdir/clusterMI/old/clusterMI.Rcheck/clusterMI’ - - -``` -# coFAST - -
- -* Version: 0.2.0 -* GitHub: https://github.com/feiyoung/coFAST -* Source code: https://github.com/cran/coFAST -* Date/Publication: 2025-12-14 03:30:10 UTC -* Number of recursive dependencies: 234 - -Run `revdepcheck::cloud_details(, "coFAST")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/coFAST/new/coFAST.Rcheck’ +* using log directory ‘/tmp/workdir/chouca/new/chouca.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -1567,18 +1364,18 @@ Run `revdepcheck::cloud_details(, "coFAST")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘coFAST/DESCRIPTION’ ... OK +* checking for file ‘chouca/DESCRIPTION’ ... OK ... -* this is package ‘coFAST’ version ‘0.2.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'DR.SC', 'PRECAST', 'ProFAST' +--- failed re-building ‘chouca-package.Rmd’ + +SUMMARY: processing the following file failed: + ‘chouca-package.Rmd’ + +Error: Vignette re-building failed. +Execution halted -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. * DONE -Status: 1 ERROR +Status: 2 ERRORs, 1 NOTE @@ -1588,7 +1385,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/coFAST/old/coFAST.Rcheck’ +* using log directory ‘/tmp/workdir/chouca/old/chouca.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -1597,34 +1394,35 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘coFAST/DESCRIPTION’ ... OK +* checking for file ‘chouca/DESCRIPTION’ ... OK ... -* this is package ‘coFAST’ version ‘0.2.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'DR.SC', 'PRECAST', 'ProFAST' +--- failed re-building ‘chouca-package.Rmd’ + +SUMMARY: processing the following file failed: + ‘chouca-package.Rmd’ + +Error: Vignette re-building failed. +Execution halted -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. * DONE -Status: 1 ERROR +Status: 2 ERRORs, 1 NOTE ``` -# colleyRstats +# cinaR
-* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/colleyRstats -* Number of recursive dependencies: 242 +* Version: 0.2.6 +* GitHub: https://github.com/eonurk/cinaR +* Source code: https://github.com/cran/cinaR +* Date/Publication: 2026-02-04 14:50:02 UTC +* Number of recursive dependencies: 234 -Run `revdepcheck::cloud_details(, "colleyRstats")` for more info +Run `revdepcheck::cloud_details(, "cinaR")` for more info
@@ -1633,7 +1431,27 @@ Run `revdepcheck::cloud_details(, "colleyRstats")` for more info ### Devel ``` - +* using log directory ‘/tmp/workdir/cinaR/new/cinaR.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘cinaR/DESCRIPTION’ ... OK +... +> cp.normalized <- normalizeConsensus(cp, norm.method = "quantile") +Error in preprocessCore::normalize.quantiles(cp) : + ERROR; return code from pthread_create() is 22 +Calls: normalizeConsensus -> +Execution halted +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 ERROR, 2 NOTEs @@ -1643,84 +1461,44 @@ Run `revdepcheck::cloud_details(, "colleyRstats")` for more info ### CRAN ``` - - - - - - -``` -# CompAREdesign - -
- -* Version: 2.4.0 -* GitHub: NA -* Source code: https://github.com/cran/CompAREdesign -* Date/Publication: 2025-03-05 03:40:02 UTC -* Number of recursive dependencies: 112 - -Run `revdepcheck::cloud_details(, "CompAREdesign")` for more info - -
- -## In both - -* checking whether package ‘CompAREdesign’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/CompAREdesign/new/CompAREdesign.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘CompAREdesign’ ... -** package ‘CompAREdesign’ 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +* using log directory ‘/tmp/workdir/cinaR/old/cinaR.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘cinaR/DESCRIPTION’ ... OK +... +> cp.normalized <- normalizeConsensus(cp, norm.method = "quantile") +Error in preprocessCore::normalize.quantiles(cp) : + ERROR; return code from pthread_create() is 22 +Calls: normalizeConsensus -> Execution halted -ERROR: lazy loading failed for package ‘CompAREdesign’ -* removing ‘/tmp/workdir/CompAREdesign/new/CompAREdesign.Rcheck/CompAREdesign’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 ERROR, 2 NOTEs -``` -### CRAN -``` -* installing *source* package ‘CompAREdesign’ ... -** package ‘CompAREdesign’ 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘CompAREdesign’ -* removing ‘/tmp/workdir/CompAREdesign/old/CompAREdesign.Rcheck/CompAREdesign’ ``` -# copulaSim +# ClustAssess
-* Version: 0.0.1 -* GitHub: https://github.com/psyen0824/copulaSim -* Source code: https://github.com/cran/copulaSim -* Date/Publication: 2022-08-19 12:10:02 UTC -* Number of recursive dependencies: 72 +* Version: 1.1.0 +* GitHub: https://github.com/Core-Bioinformatics/ClustAssess +* Source code: https://github.com/cran/ClustAssess +* Date/Publication: 2025-05-27 23:00:30 UTC +* Number of recursive dependencies: 249 -Run `revdepcheck::cloud_details(, "copulaSim")` for more info +Run `revdepcheck::cloud_details(, "ClustAssess")` for more info
@@ -1729,7 +1507,7 @@ Run `revdepcheck::cloud_details(, "copulaSim")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/copulaSim/new/copulaSim.Rcheck’ +* using log directory ‘/tmp/workdir/ClustAssess/new/ClustAssess.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -1738,18 +1516,18 @@ Run `revdepcheck::cloud_details(, "copulaSim")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘copulaSim/DESCRIPTION’ ... OK +* checking for file ‘ClustAssess/DESCRIPTION’ ... OK ... ---- failed re-building ‘introduction.Rmd’ - -SUMMARY: processing the following file failed: - ‘introduction.Rmd’ - -Error: Vignette re-building failed. -Execution halted - +* 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 examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ * DONE -Status: 1 ERROR, 1 NOTE +Status: 2 NOTEs @@ -1759,7 +1537,7 @@ Status: 1 ERROR, 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/copulaSim/old/copulaSim.Rcheck’ +* using log directory ‘/tmp/workdir/ClustAssess/old/ClustAssess.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -1768,35 +1546,35 @@ Status: 1 ERROR, 1 NOTE * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘copulaSim/DESCRIPTION’ ... OK +* checking for file ‘ClustAssess/DESCRIPTION’ ... OK ... ---- failed re-building ‘introduction.Rmd’ - -SUMMARY: processing the following file failed: - ‘introduction.Rmd’ - -Error: Vignette re-building failed. -Execution halted - +* 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 examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ * DONE -Status: 1 ERROR, 1 NOTE +Status: 2 NOTEs ``` -# correlation +# ClusterGVis
-* Version: 0.8.8 -* GitHub: https://github.com/easystats/correlation -* Source code: https://github.com/cran/correlation -* Date/Publication: 2025-07-08 15:40:02 UTC -* Number of recursive dependencies: 186 +* Version: 0.1.4 +* GitHub: https://github.com/junjunlab/ClusterGVis +* Source code: https://github.com/cran/ClusterGVis +* Date/Publication: 2025-07-19 06:10:02 UTC +* Number of recursive dependencies: 300 -Run `revdepcheck::cloud_details(, "correlation")` for more info +Run `revdepcheck::cloud_details(, "ClusterGVis")` for more info
@@ -1805,7 +1583,7 @@ Run `revdepcheck::cloud_details(, "correlation")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/correlation/new/correlation.Rcheck’ +* using log directory ‘/tmp/workdir/ClusterGVis/new/ClusterGVis.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -1814,13 +1592,13 @@ Run `revdepcheck::cloud_details(, "correlation")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘correlation/DESCRIPTION’ ... OK +* checking for file ‘ClusterGVis/DESCRIPTION’ ... OK ... +* checking LazyData ... OK +* checking data for ASCII and uncompressed saves ... OK +* checking installed files from ‘inst/doc’ ... OK * checking files in ‘vignettes’ ... OK * checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK @@ -1835,7 +1613,7 @@ Status: 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/correlation/old/correlation.Rcheck’ +* using log directory ‘/tmp/workdir/ClusterGVis/old/ClusterGVis.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -1844,13 +1622,13 @@ Status: 1 NOTE * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘correlation/DESCRIPTION’ ... OK +* checking for file ‘ClusterGVis/DESCRIPTION’ ... OK ... +* checking LazyData ... OK +* checking data for ASCII and uncompressed saves ... OK +* checking installed files from ‘inst/doc’ ... OK * checking files in ‘vignettes’ ... OK * checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK @@ -1862,16 +1640,17 @@ Status: 1 NOTE ``` -# cry +# clusterMI
-* Version: NA +* Version: 1.6 * GitHub: NA -* Source code: https://github.com/cran/cry -* Number of recursive dependencies: 43 +* Source code: https://github.com/cran/clusterMI +* Date/Publication: 2026-04-03 13:50:02 UTC +* Number of recursive dependencies: 266 -Run `revdepcheck::cloud_details(, "cry")` for more info +Run `revdepcheck::cloud_details(, "clusterMI")` for more info
@@ -1880,7 +1659,27 @@ Run `revdepcheck::cloud_details(, "cry")` for more info ### Devel ``` - +* using log directory ‘/tmp/workdir/clusterMI/new/clusterMI.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘clusterMI/DESCRIPTION’ ... 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 ‘clusterMI’ can be installed ... ERROR +Installation failed. +See ‘/tmp/workdir/clusterMI/new/clusterMI.Rcheck/00install.out’ for details. +* DONE +Status: 1 ERROR @@ -1890,166 +1689,119 @@ Run `revdepcheck::cloud_details(, "cry")` for more info ### CRAN ``` - +* using log directory ‘/tmp/workdir/clusterMI/old/clusterMI.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘clusterMI/DESCRIPTION’ ... 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 ‘clusterMI’ can be installed ... ERROR +Installation failed. +See ‘/tmp/workdir/clusterMI/old/clusterMI.Rcheck/00install.out’ for details. +* DONE +Status: 1 ERROR ``` -# ctsem +# ClustImpute
-* Version: 3.10.5 -* GitHub: https://github.com/cdriveraus/ctsem -* Source code: https://github.com/cran/ctsem -* Date/Publication: 2026-01-20 06:10:27 UTC -* Number of recursive dependencies: 170 +* Version: 0.2.4 +* GitHub: NA +* Source code: https://github.com/cran/ClustImpute +* Date/Publication: 2021-05-31 07:40:11 UTC +* Number of recursive dependencies: 115 -Run `revdepcheck::cloud_details(, "ctsem")` for more info +Run `revdepcheck::cloud_details(, "ClustImpute")` for more info
-## In both - -* checking whether package ‘ctsem’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/ctsem/new/ctsem.Rcheck/00install.out’ for details. - ``` - -* checking package dependencies ... NOTE - ``` - Package suggested but not available for checking: ‘arules’ - ``` - -## Installation +## Error before installation ### Devel ``` -* installing *source* package ‘ctsem’ ... -** package ‘ctsem’ successfully unpacked and MD5 sums checked -** using staged installation -** libs -using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -using C++17 - - -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I"../inst/include" -I"/usr/local/lib/R/site-library/StanHeaders/include/src" -DBOOST_DISABLE_ASSERTS -DEIGEN_NO_DEBUG -DBOOST_MATH_OVERFLOW_ERROR_POLICY=errno_on_error -DUSE_STANC3 -D_HAS_AUTO_PTR_ETC=0 -I'/usr/local/lib/R/site-library/BH/include' -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppEigen/include' -I'/usr/local/lib/R/site-library/RcppParallel/include' -I'/usr/local/lib/R/site-library/rstan/include' -I'/usr/local/lib/R/site-library/StanHeaders/include' -I/usr/local/include -I'/usr/local/lib/R/site-library/RcppParallel/include' -D_REENTRANT -DSTAN_THREADS -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o -In file included from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Core:205, +* using log directory ‘/tmp/workdir/ClustImpute/new/ClustImpute.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘ClustImpute/DESCRIPTION’ ... OK ... -/usr/local/lib/R/site-library/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:22:0: required from ‘double stan::mcmc::dense_e_metric::T(stan::mcmc::dense_e_point&) [with Model = model_ctsm_namespace::model_ctsm; BaseRNG = boost::random::additive_combine_engine, boost::random::linear_congruential_engine >]’ -/usr/local/lib/R/site-library/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:21:0: required from here -/usr/local/lib/R/site-library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__m128d’} [-Wignored-attributes] - 654 | return internal::first_aligned::alignment),Derived>(m); - | ^~~~~~~~~ -g++: fatal error: Killed signal terminated program cc1plus -compilation terminated. -make: *** [/opt/R/4.4.0/lib/R/etc/Makeconf:202: stanExports_ctsm.o] Error 1 -ERROR: compilation failed for package ‘ctsem’ -* removing ‘/tmp/workdir/ctsem/new/ctsem.Rcheck/ctsem’ - +* this is package ‘ClustImpute’ version ‘0.2.4’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ -``` -### CRAN +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR -``` -* installing *source* package ‘ctsem’ ... -** package ‘ctsem’ successfully unpacked and MD5 sums checked -** using staged installation -** libs -using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -using C++17 -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I"../inst/include" -I"/usr/local/lib/R/site-library/StanHeaders/include/src" -DBOOST_DISABLE_ASSERTS -DEIGEN_NO_DEBUG -DBOOST_MATH_OVERFLOW_ERROR_POLICY=errno_on_error -DUSE_STANC3 -D_HAS_AUTO_PTR_ETC=0 -I'/usr/local/lib/R/site-library/BH/include' -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppEigen/include' -I'/usr/local/lib/R/site-library/RcppParallel/include' -I'/usr/local/lib/R/site-library/rstan/include' -I'/usr/local/lib/R/site-library/StanHeaders/include' -I/usr/local/include -I'/usr/local/lib/R/site-library/RcppParallel/include' -D_REENTRANT -DSTAN_THREADS -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o -In file included from /usr/local/lib/R/site-library/RcppEigen/include/Eigen/Core:205, -... -/usr/local/lib/R/site-library/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:22:0: required from ‘double stan::mcmc::dense_e_metric::T(stan::mcmc::dense_e_point&) [with Model = model_ctsm_namespace::model_ctsm; BaseRNG = boost::random::additive_combine_engine, boost::random::linear_congruential_engine >]’ -/usr/local/lib/R/site-library/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:21:0: required from here -/usr/local/lib/R/site-library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__m128d’} [-Wignored-attributes] - 654 | return internal::first_aligned::alignment),Derived>(m); - | ^~~~~~~~~ -g++: fatal error: Killed signal terminated program cc1plus -compilation terminated. -make: *** [/opt/R/4.4.0/lib/R/etc/Makeconf:202: stanExports_ctsm.o] Error 1 -ERROR: compilation failed for package ‘ctsem’ -* removing ‘/tmp/workdir/ctsem/old/ctsem.Rcheck/ctsem’ ``` -# cylcop - -
- -* Version: 0.2.1 -* GitHub: https://github.com/floo66/cylcop -* Source code: https://github.com/cran/cylcop -* Date/Publication: 2025-10-01 11:10:02 UTC -* Number of recursive dependencies: 95 - -Run `revdepcheck::cloud_details(, "cylcop")` for more info - -
- -## In both - -* checking whether package ‘cylcop’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/cylcop/new/cylcop.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel +### CRAN ``` -* installing *source* package ‘cylcop’ ... -** package ‘cylcop’ 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘cylcop’ -* removing ‘/tmp/workdir/cylcop/new/cylcop.Rcheck/cylcop’ +* using log directory ‘/tmp/workdir/ClustImpute/old/ClustImpute.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘ClustImpute/DESCRIPTION’ ... OK +... +* this is package ‘ClustImpute’ version ‘0.2.4’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR -``` -### CRAN -``` -* installing *source* package ‘cylcop’ ... -** package ‘cylcop’ 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘cylcop’ -* removing ‘/tmp/workdir/cylcop/old/cylcop.Rcheck/cylcop’ ``` -# dbrobust +# colleyRstats
* Version: NA * GitHub: NA -* Source code: https://github.com/cran/dbrobust -* Number of recursive dependencies: 128 +* Source code: https://github.com/cran/colleyRstats +* Number of recursive dependencies: 225 -Run `revdepcheck::cloud_details(, "dbrobust")` for more info +Run `revdepcheck::cloud_details(, "colleyRstats")` for more info
@@ -2075,17 +1827,17 @@ Run `revdepcheck::cloud_details(, "dbrobust")` for more info ``` -# decisionSupport +# CompAREdesign
-* Version: 1.115 +* Version: 2.4.0 * GitHub: NA -* Source code: https://github.com/cran/decisionSupport -* Date/Publication: 2025-08-19 18:00:02 UTC -* Number of recursive dependencies: 184 +* Source code: https://github.com/cran/CompAREdesign +* Date/Publication: 2025-03-05 03:40:02 UTC +* Number of recursive dependencies: 107 -Run `revdepcheck::cloud_details(, "decisionSupport")` for more info +Run `revdepcheck::cloud_details(, "CompAREdesign")` for more info
@@ -2094,7 +1846,7 @@ Run `revdepcheck::cloud_details(, "decisionSupport")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/decisionSupport/new/decisionSupport.Rcheck’ +* using log directory ‘/tmp/workdir/CompAREdesign/new/CompAREdesign.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -2103,13 +1855,13 @@ Run `revdepcheck::cloud_details(, "decisionSupport")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘decisionSupport/DESCRIPTION’ ... OK +* checking for file ‘CompAREdesign/DESCRIPTION’ ... OK ... -* this is package ‘decisionSupport’ version ‘1.115’ +* this is package ‘CompAREdesign’ version ‘2.4.0’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘chillR’ +Package required but not available: ‘copula’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -2124,7 +1876,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/decisionSupport/old/decisionSupport.Rcheck’ +* using log directory ‘/tmp/workdir/CompAREdesign/old/CompAREdesign.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -2133,13 +1885,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘decisionSupport/DESCRIPTION’ ... OK +* checking for file ‘CompAREdesign/DESCRIPTION’ ... OK ... -* this is package ‘decisionSupport’ version ‘1.115’ +* this is package ‘CompAREdesign’ version ‘2.4.0’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘chillR’ +Package required but not available: ‘copula’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -2151,17 +1903,17 @@ Status: 1 ERROR ``` -# deepSTRAPP +# copulaSim
-* Version: 1.0.0 -* GitHub: https://github.com/MaelDore/deepSTRAPP -* Source code: https://github.com/cran/deepSTRAPP -* Date/Publication: 2026-01-19 17:30:02 UTC -* Number of recursive dependencies: 97 +* Version: 0.0.1 +* GitHub: https://github.com/psyen0824/copulaSim +* Source code: https://github.com/cran/copulaSim +* Date/Publication: 2022-08-19 12:10:02 UTC +* Number of recursive dependencies: 72 -Run `revdepcheck::cloud_details(, "deepSTRAPP")` for more info +Run `revdepcheck::cloud_details(, "copulaSim")` for more info
@@ -2170,7 +1922,7 @@ Run `revdepcheck::cloud_details(, "deepSTRAPP")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/deepSTRAPP/new/deepSTRAPP.Rcheck’ +* using log directory ‘/tmp/workdir/copulaSim/new/copulaSim.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -2179,18 +1931,18 @@ Run `revdepcheck::cloud_details(, "deepSTRAPP")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘deepSTRAPP/DESCRIPTION’ ... OK +* checking for file ‘copulaSim/DESCRIPTION’ ... OK ... -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required and available but unsuitable version: ‘methods’ +--- failed re-building ‘introduction.Rmd’ -Package suggested but not available for checking: ‘BioGeoBEARS’ +SUMMARY: processing the following file failed: + ‘introduction.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 NOTE @@ -2200,7 +1952,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/deepSTRAPP/old/deepSTRAPP.Rcheck’ +* using log directory ‘/tmp/workdir/copulaSim/old/copulaSim.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -2209,70 +1961,35 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘deepSTRAPP/DESCRIPTION’ ... OK +* checking for file ‘copulaSim/DESCRIPTION’ ... OK ... -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required and available but unsuitable version: ‘methods’ +--- failed re-building ‘introduction.Rmd’ -Package suggested but not available for checking: ‘BioGeoBEARS’ +SUMMARY: processing the following file failed: + ‘introduction.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 NOTE ``` -# degradr +# correlation
-* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/degradr -* Number of recursive dependencies: 44 - -Run `revdepcheck::cloud_details(, "degradr")` for more info - -
- -## Error before installation - -### Devel - -``` - - - - - - -``` -### CRAN - -``` - - - - - - -``` -# DFD - -
- -* Version: 0.4.0 -* GitHub: https://github.com/MohmedSoudy/DFD -* Source code: https://github.com/cran/DFD -* Date/Publication: 2025-12-22 10:10:02 UTC -* Number of recursive dependencies: 226 +* Version: 0.8.8 +* GitHub: https://github.com/easystats/correlation +* Source code: https://github.com/cran/correlation +* Date/Publication: 2025-07-08 15:40:02 UTC +* Number of recursive dependencies: 186 -Run `revdepcheck::cloud_details(, "DFD")` for more info +Run `revdepcheck::cloud_details(, "correlation")` for more info
@@ -2281,7 +1998,7 @@ Run `revdepcheck::cloud_details(, "DFD")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/DFD/new/DFD.Rcheck’ +* using log directory ‘/tmp/workdir/correlation/new/correlation.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -2290,16 +2007,16 @@ Run `revdepcheck::cloud_details(, "DFD")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘DFD/DESCRIPTION’ ... OK +* checking for file ‘correlation/DESCRIPTION’ ... OK ... -* checking Rd metadata ... OK -* checking Rd cross-references ... OK -* checking for missing documentation entries ... OK -* checking for code/documentation mismatches ... OK -* checking Rd \usage sections ... OK -* checking Rd contents ... OK -* checking for unstated dependencies in examples ... OK +* checking files in ‘vignettes’ ... OK * checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK * DONE Status: 1 NOTE @@ -2311,7 +2028,7 @@ Status: 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/DFD/old/DFD.Rcheck’ +* using log directory ‘/tmp/workdir/correlation/old/correlation.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -2320,16 +2037,16 @@ Status: 1 NOTE * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘DFD/DESCRIPTION’ ... OK +* checking for file ‘correlation/DESCRIPTION’ ... OK ... -* checking Rd metadata ... OK -* checking Rd cross-references ... OK -* checking for missing documentation entries ... OK -* checking for code/documentation mismatches ... OK -* checking Rd \usage sections ... OK -* checking Rd contents ... OK -* checking for unstated dependencies in examples ... OK +* checking files in ‘vignettes’ ... OK * checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK * DONE Status: 1 NOTE @@ -2338,17 +2055,16 @@ Status: 1 NOTE ``` -# dimRed +# cry
-* Version: 0.2.7 -* GitHub: https://github.com/gdkrmr/dimRed -* Source code: https://github.com/cran/dimRed -* Date/Publication: 2025-04-23 15:00:02 UTC -* Number of recursive dependencies: 131 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/cry +* Number of recursive dependencies: 43 -Run `revdepcheck::cloud_details(, "dimRed")` for more info +Run `revdepcheck::cloud_details(, "cry")` for more info
@@ -2357,27 +2073,7 @@ Run `revdepcheck::cloud_details(, "dimRed")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/dimRed/new/dimRed.Rcheck’ -* using R version 4.4.0 (2024-04-24) -* using platform: x86_64-pc-linux-gnu -* R was compiled by - gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 - GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 -* running under: Ubuntu 24.04.3 LTS -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘dimRed/DESCRIPTION’ ... OK -... -* checking files in ‘vignettes’ ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 2 NOTEs + @@ -2387,53 +2083,38 @@ Status: 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/dimRed/old/dimRed.Rcheck’ -* using R version 4.4.0 (2024-04-24) -* using platform: x86_64-pc-linux-gnu -* R was compiled by - gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 - GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 -* running under: Ubuntu 24.04.3 LTS -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘dimRed/DESCRIPTION’ ... OK -... -* checking files in ‘vignettes’ ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 2 NOTEs + ``` -# dMrs +# ctsem
-* Version: 1.0.0 -* GitHub: NA -* Source code: https://github.com/cran/dMrs -* Date/Publication: 2025-01-21 15:40:05 UTC -* Number of recursive dependencies: 139 +* Version: 3.10.6 +* GitHub: https://github.com/cdriveraus/ctsem +* Source code: https://github.com/cran/ctsem +* Date/Publication: 2026-01-27 13:30:02 UTC +* Number of recursive dependencies: 170 -Run `revdepcheck::cloud_details(, "dMrs")` for more info +Run `revdepcheck::cloud_details(, "ctsem")` for more info
## In both -* checking whether package ‘dMrs’ can be installed ... ERROR +* checking whether package ‘ctsem’ can be installed ... ERROR ``` Installation failed. - See ‘/tmp/workdir/dMrs/new/dMrs.Rcheck/00install.out’ for details. + See ‘/tmp/workdir/ctsem/new/ctsem.Rcheck/00install.out’ for details. + ``` + +* checking package dependencies ... NOTE + ``` + Package suggested but not available for checking: ‘arules’ ``` ## Installation @@ -2441,62 +2122,68 @@ Run `revdepcheck::cloud_details(, "dMrs")` for more info ### Devel ``` -* installing *source* package ‘dMrs’ ... -** package ‘dMrs’ successfully unpacked and MD5 sums checked +* installing *source* package ‘ctsem’ ... +** package ‘ctsem’ successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c dMrs.cpp -o dMrs.o -g++ -std=gnu++17 -shared -L/opt/R/4.4.0/lib/R/lib -L/usr/local/lib -o dMrs.so RcppExports.o dMrs.o -fopenmp -llapack -lblas -lgfortran -lm -lquadmath -L/opt/R/4.4.0/lib/R/lib -lR -installing to /tmp/workdir/dMrs/new/dMrs.Rcheck/00LOCK-dMrs/00new/dMrs/libs -** 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘dMrs’ -* removing ‘/tmp/workdir/dMrs/new/dMrs.Rcheck/dMrs’ +using C++17 + + +g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I"../inst/include" -I"/tmp/r-deps/StanHeaders/include/src" -DBOOST_DISABLE_ASSERTS -DEIGEN_NO_DEBUG -DBOOST_MATH_OVERFLOW_ERROR_POLICY=errno_on_error -DUSE_STANC3 -D_HAS_AUTO_PTR_ETC=0 -I'/tmp/r-deps/BH/include' -I'/tmp/r-deps/Rcpp/include' -I'/tmp/r-deps/RcppEigen/include' -I'/tmp/r-deps/RcppParallel/include' -I'/tmp/r-deps/rstan/include' -I'/tmp/r-deps/StanHeaders/include' -I/usr/local/include -I'/tmp/r-deps/RcppParallel/include' -D_REENTRANT -DSTAN_THREADS -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o +In file included from /tmp/r-deps/RcppEigen/include/Eigen/Core:205, +... +/tmp/r-deps/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:22:0: required from ‘double stan::mcmc::dense_e_metric::T(stan::mcmc::dense_e_point&) [with Model = model_ctsm_namespace::model_ctsm; BaseRNG = boost::random::additive_combine_engine, boost::random::linear_congruential_engine >]’ +/tmp/r-deps/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:21:0: required from here +/tmp/r-deps/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__m128d’} [-Wignored-attributes] + 654 | return internal::first_aligned::alignment),Derived>(m); + | ^~~~~~~~~ +g++: fatal error: Killed signal terminated program cc1plus +compilation terminated. +make: *** [/opt/R/4.4.0/lib/R/etc/Makeconf:202: stanExports_ctsm.o] Error 1 +ERROR: compilation failed for package ‘ctsem’ +* removing ‘/tmp/workdir/ctsem/new/ctsem.Rcheck/ctsem’ ``` ### CRAN ``` -* installing *source* package ‘dMrs’ ... -** package ‘dMrs’ successfully unpacked and MD5 sums checked +* installing *source* package ‘ctsem’ ... +** package ‘ctsem’ successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c dMrs.cpp -o dMrs.o -g++ -std=gnu++17 -shared -L/opt/R/4.4.0/lib/R/lib -L/usr/local/lib -o dMrs.so RcppExports.o dMrs.o -fopenmp -llapack -lblas -lgfortran -lm -lquadmath -L/opt/R/4.4.0/lib/R/lib -lR -installing to /tmp/workdir/dMrs/old/dMrs.Rcheck/00LOCK-dMrs/00new/dMrs/libs -** 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘dMrs’ -* removing ‘/tmp/workdir/dMrs/old/dMrs.Rcheck/dMrs’ +using C++17 + + +g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I"../inst/include" -I"/tmp/r-deps/StanHeaders/include/src" -DBOOST_DISABLE_ASSERTS -DEIGEN_NO_DEBUG -DBOOST_MATH_OVERFLOW_ERROR_POLICY=errno_on_error -DUSE_STANC3 -D_HAS_AUTO_PTR_ETC=0 -I'/tmp/r-deps/BH/include' -I'/tmp/r-deps/Rcpp/include' -I'/tmp/r-deps/RcppEigen/include' -I'/tmp/r-deps/RcppParallel/include' -I'/tmp/r-deps/rstan/include' -I'/tmp/r-deps/StanHeaders/include' -I/usr/local/include -I'/tmp/r-deps/RcppParallel/include' -D_REENTRANT -DSTAN_THREADS -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o +In file included from /tmp/r-deps/RcppEigen/include/Eigen/Core:205, +... +/tmp/r-deps/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:22:0: required from ‘double stan::mcmc::dense_e_metric::T(stan::mcmc::dense_e_point&) [with Model = model_ctsm_namespace::model_ctsm; BaseRNG = boost::random::additive_combine_engine, boost::random::linear_congruential_engine >]’ +/tmp/r-deps/StanHeaders/include/src/stan/mcmc/hmc/hamiltonians/dense_e_metric.hpp:21:0: required from here +/tmp/r-deps/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__m128d’} [-Wignored-attributes] + 654 | return internal::first_aligned::alignment),Derived>(m); + | ^~~~~~~~~ +g++: fatal error: Killed signal terminated program cc1plus +compilation terminated. +make: *** [/opt/R/4.4.0/lib/R/etc/Makeconf:202: stanExports_ctsm.o] Error 1 +ERROR: compilation failed for package ‘ctsem’ +* removing ‘/tmp/workdir/ctsem/old/ctsem.Rcheck/ctsem’ ``` -# DstarM +# cylcop
-* Version: 0.5.0 -* GitHub: https://github.com/vandenman/DstarM -* Source code: https://github.com/cran/DstarM -* Date/Publication: 2025-04-01 09:00:02 UTC -* Number of recursive dependencies: 52 +* Version: 0.2.1 +* GitHub: https://github.com/floo66/cylcop +* Source code: https://github.com/cran/cylcop +* Date/Publication: 2025-10-01 11:10:02 UTC +* Number of recursive dependencies: 95 -Run `revdepcheck::cloud_details(, "DstarM")` for more info +Run `revdepcheck::cloud_details(, "cylcop")` for more info
@@ -2505,7 +2192,7 @@ Run `revdepcheck::cloud_details(, "DstarM")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/DstarM/new/DstarM.Rcheck’ +* using log directory ‘/tmp/workdir/cylcop/new/cylcop.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -2514,13 +2201,13 @@ Run `revdepcheck::cloud_details(, "DstarM")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘DstarM/DESCRIPTION’ ... OK +* checking for file ‘cylcop/DESCRIPTION’ ... OK ... -* this is package ‘DstarM’ version ‘0.5.0’ +* this is package ‘cylcop’ version ‘0.2.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘rtdists’ +Package required but not available: ‘copula’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -2535,7 +2222,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/DstarM/old/DstarM.Rcheck’ +* using log directory ‘/tmp/workdir/cylcop/old/cylcop.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -2544,13 +2231,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘DstarM/DESCRIPTION’ ... OK +* checking for file ‘cylcop/DESCRIPTION’ ... OK ... -* this is package ‘DstarM’ version ‘0.5.0’ +* this is package ‘cylcop’ version ‘0.2.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘rtdists’ +Package required but not available: ‘copula’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -2562,16 +2249,17 @@ Status: 1 ERROR ``` -# dymo +# daltoolbox
-* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/dymo -* Number of recursive dependencies: 38 +* Version: 1.3.727 +* GitHub: https://github.com/cefet-rj-dal/daltoolbox +* Source code: https://github.com/cran/daltoolbox +* Date/Publication: 2026-03-12 06:10:19 UTC +* Number of recursive dependencies: 161 -Run `revdepcheck::cloud_details(, "dymo")` for more info +Run `revdepcheck::cloud_details(, "daltoolbox")` for more info
@@ -2580,7 +2268,27 @@ Run `revdepcheck::cloud_details(, "dymo")` for more info ### Devel ``` +* using log directory ‘/tmp/workdir/daltoolbox/new/daltoolbox.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘daltoolbox/DESCRIPTION’ ... OK +... +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'arules', 'arulesSequences' + +Package suggested but not available for checking: ‘arulesViz’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR @@ -2590,24 +2298,43 @@ Run `revdepcheck::cloud_details(, "dymo")` for more info ### CRAN ``` +* using log directory ‘/tmp/workdir/daltoolbox/old/daltoolbox.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘daltoolbox/DESCRIPTION’ ... OK +... +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'arules', 'arulesSequences' + +Package suggested but not available for checking: ‘arulesViz’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR ``` -# easybgm +# dbrobust
-* Version: 0.3.1 -* GitHub: https://github.com/KarolineHuth/easybgm -* Source code: https://github.com/cran/easybgm -* Date/Publication: 2025-12-08 12:10:07 UTC -* Number of recursive dependencies: 180 - -Run `revdepcheck::cloud_details(, "easybgm")` for more info +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/dbrobust +* Number of recursive dependencies: 128 + +Run `revdepcheck::cloud_details(, "dbrobust")` for more info
@@ -2616,7 +2343,43 @@ Run `revdepcheck::cloud_details(, "easybgm")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/easybgm/new/easybgm.Rcheck’ + + + + + + +``` +### CRAN + +``` + + + + + + +``` +# decisionSupport + +
+ +* Version: 1.115 +* GitHub: NA +* Source code: https://github.com/cran/decisionSupport +* Date/Publication: 2025-08-19 18:00:02 UTC +* Number of recursive dependencies: 179 + +Run `revdepcheck::cloud_details(, "decisionSupport")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/decisionSupport/new/decisionSupport.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -2625,13 +2388,13 @@ Run `revdepcheck::cloud_details(, "easybgm")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘easybgm/DESCRIPTION’ ... OK +* checking for file ‘decisionSupport/DESCRIPTION’ ... OK ... -* this is package ‘easybgm’ version ‘0.3.1’ +* this is package ‘decisionSupport’ version ‘1.115’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘BGGM’ +Package required but not available: ‘chillR’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -2646,7 +2409,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/easybgm/old/easybgm.Rcheck’ +* using log directory ‘/tmp/workdir/decisionSupport/old/decisionSupport.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -2655,13 +2418,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘easybgm/DESCRIPTION’ ... OK +* checking for file ‘decisionSupport/DESCRIPTION’ ... OK ... -* this is package ‘easybgm’ version ‘0.3.1’ +* this is package ‘decisionSupport’ version ‘1.115’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘BGGM’ +Package required but not available: ‘chillR’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -2673,141 +2436,17 @@ Status: 1 ERROR ``` -# eda4treeR - -
- -* Version: 1.1.0 -* GitHub: https://github.com/myaseen208/eda4treeR -* Source code: https://github.com/cran/eda4treeR -* Date/Publication: 2024-09-13 21:50:02 UTC -* Number of recursive dependencies: 146 - -Run `revdepcheck::cloud_details(, "eda4treeR")` for more info - -
- -## In both - -* checking whether package ‘eda4treeR’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/eda4treeR/new/eda4treeR.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘eda4treeR’ ... -** package ‘eda4treeR’ 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 ‘HRW’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘eda4treeR’ -* removing ‘/tmp/workdir/eda4treeR/new/eda4treeR.Rcheck/eda4treeR’ - - -``` -### CRAN - -``` -* installing *source* package ‘eda4treeR’ ... -** package ‘eda4treeR’ 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 ‘HRW’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘eda4treeR’ -* removing ‘/tmp/workdir/eda4treeR/old/eda4treeR.Rcheck/eda4treeR’ - - -``` -# EFDR - -
- -* Version: 1.3 -* GitHub: https://github.com/andrewzm/EFDR -* Source code: https://github.com/cran/EFDR -* Date/Publication: 2023-08-22 22:20:02 UTC -* Number of recursive dependencies: 102 - -Run `revdepcheck::cloud_details(, "EFDR")` for more info - -
- -## In both - -* checking whether package ‘EFDR’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/EFDR/new/EFDR.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘EFDR’ ... -** package ‘EFDR’ 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘EFDR’ -* removing ‘/tmp/workdir/EFDR/new/EFDR.Rcheck/EFDR’ - - -``` -### CRAN - -``` -* installing *source* package ‘EFDR’ ... -** package ‘EFDR’ 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘EFDR’ -* removing ‘/tmp/workdir/EFDR/old/EFDR.Rcheck/EFDR’ - - -``` -# EGAnet +# deepSTRAPP
-* Version: 2.4.0 -* GitHub: https://github.com/hfgolino/EGAnet -* Source code: https://github.com/cran/EGAnet -* Date/Publication: 2025-12-06 16:30:08 UTC -* Number of recursive dependencies: 172 +* Version: 1.0.0 +* GitHub: https://github.com/MaelDore/deepSTRAPP +* Source code: https://github.com/cran/deepSTRAPP +* Date/Publication: 2026-01-19 17:30:02 UTC +* Number of recursive dependencies: 97 -Run `revdepcheck::cloud_details(, "EGAnet")` for more info +Run `revdepcheck::cloud_details(, "deepSTRAPP")` for more info
@@ -2816,7 +2455,7 @@ Run `revdepcheck::cloud_details(, "EGAnet")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/EGAnet/new/EGAnet.Rcheck’ +* using log directory ‘/tmp/workdir/deepSTRAPP/new/deepSTRAPP.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -2825,13 +2464,13 @@ Run `revdepcheck::cloud_details(, "EGAnet")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘EGAnet/DESCRIPTION’ ... OK +* checking for file ‘deepSTRAPP/DESCRIPTION’ ... OK ... -* this is package ‘EGAnet’ version ‘2.4.0’ -* package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘semPlot’ +Package required and available but unsuitable version: ‘methods’ + +Package suggested but not available for checking: ‘BioGeoBEARS’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -2846,7 +2485,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/EGAnet/old/EGAnet.Rcheck’ +* using log directory ‘/tmp/workdir/deepSTRAPP/old/deepSTRAPP.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -2855,13 +2494,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘EGAnet/DESCRIPTION’ ... OK +* checking for file ‘deepSTRAPP/DESCRIPTION’ ... OK ... -* this is package ‘EGAnet’ version ‘2.4.0’ -* package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘semPlot’ +Package required and available but unsuitable version: ‘methods’ + +Package suggested but not available for checking: ‘BioGeoBEARS’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -2873,153 +2512,61 @@ Status: 1 ERROR ``` -# eks +# degradr
-* Version: 1.1.2 +* Version: NA * GitHub: NA -* Source code: https://github.com/cran/eks -* Date/Publication: 2025-12-08 09:50:10 UTC -* Number of recursive dependencies: 80 +* Source code: https://github.com/cran/degradr +* Number of recursive dependencies: 44 -Run `revdepcheck::cloud_details(, "eks")` for more info +Run `revdepcheck::cloud_details(, "degradr")` for more info
-## Newly broken - -* checking whether package ‘eks’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/eks/new/eks.Rcheck/00install.out’ for details. - ``` - -## Installation +## Error before installation ### Devel ``` -* installing *source* package ‘eks’ ... -** package ‘eks’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** data -** inst -** byte-compile and prepare package for lazy loading -Error in ggplot2::ggproto("StatContourKs", ggplot2::StatContour, dropped_aes = "weight", : - Members of a object cannot have duplicate names -("dropped_aes"). -Error: unable to load R code in package ‘eks’ -Execution halted -ERROR: lazy loading failed for package ‘eks’ -* removing ‘/tmp/workdir/eks/new/eks.Rcheck/eks’ + + + + ``` ### CRAN ``` -* installing *source* package ‘eks’ ... -** package ‘eks’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** data -** inst -** byte-compile and prepare package for lazy loading -** help -*** installing help indices -** building package indices -** installing vignettes -** testing if installed package can be loaded from temporary location -** testing if installed package can be loaded from final location -** testing if installed package keeps a record of temporary installation path -* DONE (eks) + + + + ``` -# ER +# DFD
-* Version: 1.1.2 -* GitHub: NA -* Source code: https://github.com/cran/ER -* Date/Publication: 2025-07-28 22:10:08 UTC -* Number of recursive dependencies: 40 +* Version: 0.4.0 +* GitHub: https://github.com/MohmedSoudy/DFD +* Source code: https://github.com/cran/DFD +* Date/Publication: 2025-12-22 10:10:02 UTC +* Number of recursive dependencies: 220 -Run `revdepcheck::cloud_details(, "ER")` for more info +Run `revdepcheck::cloud_details(, "DFD")` for more info
-## In both - -* checking whether package ‘ER’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/ER/new/ER.Rcheck/00install.out’ for details. - ``` - -## Installation +## Error before installation ### Devel ``` -* installing *source* package ‘ER’ ... -** package ‘ER’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** data -*** moving datasets to lazyload DB -** byte-compile and prepare package for lazy loading -Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : - there is no package called ‘praznik’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘ER’ -* removing ‘/tmp/workdir/ER/new/ER.Rcheck/ER’ - - -``` -### CRAN - -``` -* installing *source* package ‘ER’ ... -** package ‘ER’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** data -*** moving datasets to lazyload DB -** byte-compile and prepare package for lazy loading -Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : - there is no package called ‘praznik’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘ER’ -* removing ‘/tmp/workdir/ER/old/ER.Rcheck/ER’ - - -``` -# FAfA - -
- -* Version: 0.5 -* GitHub: https://github.com/AFarukKILIC/FAfA -* Source code: https://github.com/cran/FAfA -* Date/Publication: 2025-12-15 13:00:02 UTC -* Number of recursive dependencies: 270 - -Run `revdepcheck::cloud_details(, "FAfA")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/FAfA/new/FAfA.Rcheck’ +* using log directory ‘/tmp/workdir/DFD/new/DFD.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -3028,18 +2575,18 @@ Run `revdepcheck::cloud_details(, "FAfA")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘FAfA/DESCRIPTION’ ... OK +* checking for file ‘DFD/DESCRIPTION’ ... OK ... -* this is package ‘FAfA’ version ‘0.5’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'EGAnet', 'MBESS', 'energy', 'semPlot' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. +* checking Rd metadata ... OK +* checking Rd cross-references ... OK +* checking for missing documentation entries ... 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 * DONE -Status: 1 ERROR +Status: 1 NOTE @@ -3049,7 +2596,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/FAfA/old/FAfA.Rcheck’ +* using log directory ‘/tmp/workdir/DFD/old/DFD.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -3058,113 +2605,35 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘FAfA/DESCRIPTION’ ... OK +* checking for file ‘DFD/DESCRIPTION’ ... OK ... -* this is package ‘FAfA’ version ‘0.5’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Packages required but not available: 'EGAnet', 'MBESS', 'energy', 'semPlot' - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. +* checking Rd metadata ... OK +* checking Rd cross-references ... OK +* checking for missing documentation entries ... 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 * DONE -Status: 1 ERROR - - - - - -``` -# fastei - -
- -* Version: 0.0.0.12 -* GitHub: https://github.com/DanielHermosilla/ecological-inference-elections -* Source code: https://github.com/cran/fastei -* Date/Publication: 2026-01-10 03:10:02 UTC -* Number of recursive dependencies: 57 - -Run `revdepcheck::cloud_details(, "fastei")` for more info - -
- -## In both - -* checking whether package ‘fastei’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/fastei/new/fastei.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘fastei’ ... -** package ‘fastei’ successfully unpacked and MD5 sums checked -** using staged installation -** libs -using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c LP.c -o LP.o -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c MCMC.c -o MCMC.o -In file included from stb_ds.h:398, - from MCMC.c:25: -... - | ^~~~~~~~~~ -stb_ds.h:422:17: note: in expansion of macro ‘stbds_arrfree’ - 422 | #define arrfree stbds_arrfree - | ^~~~~~~~~~~~~ -MCMC.c:375:13: note: in expansion of macro ‘arrfree’ - 375 | arrfree(hashTable[i].value); - | ^~~~~~~ -make: *** [/opt/R/4.4.0/lib/R/etc/Makeconf:195: MCMC.o] Error 1 -ERROR: compilation failed for package ‘fastei’ -* removing ‘/tmp/workdir/fastei/new/fastei.Rcheck/fastei’ +Status: 1 NOTE -``` -### CRAN -``` -* installing *source* package ‘fastei’ ... -** package ‘fastei’ successfully unpacked and MD5 sums checked -** using staged installation -** libs -using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c LP.c -o LP.o -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c MCMC.c -o MCMC.o -In file included from stb_ds.h:398, - from MCMC.c:25: -... - | ^~~~~~~~~~ -stb_ds.h:422:17: note: in expansion of macro ‘stbds_arrfree’ - 422 | #define arrfree stbds_arrfree - | ^~~~~~~~~~~~~ -MCMC.c:375:13: note: in expansion of macro ‘arrfree’ - 375 | arrfree(hashTable[i].value); - | ^~~~~~~ -make: *** [/opt/R/4.4.0/lib/R/etc/Makeconf:195: MCMC.o] Error 1 -ERROR: compilation failed for package ‘fastei’ -* removing ‘/tmp/workdir/fastei/old/fastei.Rcheck/fastei’ ``` -# FCPS +# dimRed
-* Version: 1.3.5 -* GitHub: https://github.com/Mthrun/FCPS -* Source code: https://github.com/cran/FCPS -* Date/Publication: 2025-10-30 17:30:02 UTC -* Number of recursive dependencies: 270 +* Version: 0.2.7 +* GitHub: https://github.com/gdkrmr/dimRed +* Source code: https://github.com/cran/dimRed +* Date/Publication: 2025-04-23 15:00:02 UTC +* Number of recursive dependencies: 131 -Run `revdepcheck::cloud_details(, "FCPS")` for more info +Run `revdepcheck::cloud_details(, "dimRed")` for more info
@@ -3173,7 +2642,7 @@ Run `revdepcheck::cloud_details(, "FCPS")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/FCPS/new/FCPS.Rcheck’ +* using log directory ‘/tmp/workdir/dimRed/new/dimRed.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -3182,13 +2651,13 @@ Run `revdepcheck::cloud_details(, "FCPS")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘FCPS/DESCRIPTION’ ... OK +* checking for file ‘dimRed/DESCRIPTION’ ... OK ... -* checking LazyData ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking installed files from ‘inst/doc’ ... OK * checking files in ‘vignettes’ ... OK * checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK @@ -3203,7 +2672,7 @@ Status: 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/FCPS/old/FCPS.Rcheck’ +* using log directory ‘/tmp/workdir/dimRed/old/dimRed.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -3212,13 +2681,13 @@ Status: 2 NOTEs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘FCPS/DESCRIPTION’ ... OK +* checking for file ‘dimRed/DESCRIPTION’ ... OK ... -* checking LazyData ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking installed files from ‘inst/doc’ ... OK * checking files in ‘vignettes’ ... OK * checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK @@ -3230,17 +2699,17 @@ Status: 2 NOTEs ``` -# fddm +# dMrs
-* Version: 1.0-2 -* GitHub: https://github.com/rtdists/fddm -* Source code: https://github.com/cran/fddm -* Date/Publication: 2024-07-02 16:00:07 UTC -* Number of recursive dependencies: 88 +* Version: 1.0.0 +* GitHub: NA +* Source code: https://github.com/cran/dMrs +* Date/Publication: 2025-01-21 15:40:05 UTC +* Number of recursive dependencies: 138 -Run `revdepcheck::cloud_details(, "fddm")` for more info +Run `revdepcheck::cloud_details(, "dMrs")` for more info
@@ -3249,7 +2718,7 @@ Run `revdepcheck::cloud_details(, "fddm")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/fddm/new/fddm.Rcheck’ +* using log directory ‘/tmp/workdir/dMrs/new/dMrs.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -3258,18 +2727,18 @@ Run `revdepcheck::cloud_details(, "fddm")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘fddm/DESCRIPTION’ ... OK +* checking for file ‘dMrs/DESCRIPTION’ ... OK ... ---- failed re-building ‘validity.Rmd’ - -SUMMARY: processing the following file failed: - ‘validity.Rmd’ - -Error: Vignette re-building failed. -Execution halted +* this is package ‘dMrs’ version ‘1.0.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 1 ERROR, 2 NOTEs +Status: 1 ERROR @@ -3279,7 +2748,7 @@ Status: 1 ERROR, 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/fddm/old/fddm.Rcheck’ +* using log directory ‘/tmp/workdir/dMrs/old/dMrs.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -3288,35 +2757,35 @@ Status: 1 ERROR, 2 NOTEs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘fddm/DESCRIPTION’ ... OK +* checking for file ‘dMrs/DESCRIPTION’ ... OK ... ---- failed re-building ‘validity.Rmd’ - -SUMMARY: processing the following file failed: - ‘validity.Rmd’ - -Error: Vignette re-building failed. -Execution halted +* this is package ‘dMrs’ version ‘1.0.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 1 ERROR, 2 NOTEs +Status: 1 ERROR ``` -# ferrn +# DstarM
-* Version: 0.3.0 -* GitHub: https://github.com/huizezhang-sherry/ferrn -* Source code: https://github.com/cran/ferrn -* Date/Publication: 2025-11-20 22:10:10 UTC -* Number of recursive dependencies: 147 +* Version: 0.5.0 +* GitHub: https://github.com/vandenman/DstarM +* Source code: https://github.com/cran/DstarM +* Date/Publication: 2025-04-01 09:00:02 UTC +* Number of recursive dependencies: 52 -Run `revdepcheck::cloud_details(, "ferrn")` for more info +Run `revdepcheck::cloud_details(, "DstarM")` for more info
@@ -3325,7 +2794,7 @@ Run `revdepcheck::cloud_details(, "ferrn")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/ferrn/new/ferrn.Rcheck’ +* using log directory ‘/tmp/workdir/DstarM/new/DstarM.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -3334,18 +2803,18 @@ Run `revdepcheck::cloud_details(, "ferrn")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ferrn/DESCRIPTION’ ... OK +* checking for file ‘DstarM/DESCRIPTION’ ... 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’ +* this is package ‘DstarM’ version ‘0.5.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘rtdists’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: OK +Status: 1 ERROR @@ -3355,7 +2824,7 @@ Status: OK ### CRAN ``` -* using log directory ‘/tmp/workdir/ferrn/old/ferrn.Rcheck’ +* using log directory ‘/tmp/workdir/DstarM/old/DstarM.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -3364,95 +2833,70 @@ Status: OK * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ferrn/DESCRIPTION’ ... OK +* checking for file ‘DstarM/DESCRIPTION’ ... 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’ +* this is package ‘DstarM’ version ‘0.5.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘rtdists’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: OK +Status: 1 ERROR ``` -# fio +# dymo
-* Version: 0.1.6 -* GitHub: https://github.com/albersonmiranda/fio -* Source code: https://github.com/cran/fio -* Date/Publication: 2025-04-06 07:50:02 UTC -* Number of recursive dependencies: 85 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/dymo +* Number of recursive dependencies: 38 -Run `revdepcheck::cloud_details(, "fio")` for more info +Run `revdepcheck::cloud_details(, "dymo")` for more info
-## In both - -* checking whether package ‘fio’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/fio/new/fio.Rcheck/00install.out’ for details. - ``` - -## Installation +## Error before installation ### Devel ``` -* installing *source* package ‘fio’ ... -** package ‘fio’ successfully unpacked and MD5 sums checked -** using staged installation -Error in eval(ei, envir) : ------------------- [UNSUPPORTED RUST VERSION]------------------ -- Minimum supported Rust version is 1.77. -- Installed Rust version is 1.75.0. ---------------------------------------------------------------- -Calls: source -> withVisible -> eval -> eval -Execution halted -ERROR: configuration failed for package ‘fio’ -* removing ‘/tmp/workdir/fio/new/fio.Rcheck/fio’ + + + + ``` ### CRAN ``` -* installing *source* package ‘fio’ ... -** package ‘fio’ successfully unpacked and MD5 sums checked -** using staged installation -Error in eval(ei, envir) : ------------------- [UNSUPPORTED RUST VERSION]------------------ -- Minimum supported Rust version is 1.77. -- Installed Rust version is 1.75.0. ---------------------------------------------------------------- -Calls: source -> withVisible -> eval -> eval -Execution halted -ERROR: configuration failed for package ‘fio’ -* removing ‘/tmp/workdir/fio/old/fio.Rcheck/fio’ + + + + ``` -# GDINA +# easybgm
-* Version: 2.9.12 -* GitHub: https://github.com/Wenchao-Ma/GDINA -* Source code: https://github.com/cran/GDINA -* Date/Publication: 2025-07-02 17:00:02 UTC -* Number of recursive dependencies: 148 +* Version: 0.4.0 +* GitHub: https://github.com/KarolineHuth/easybgm +* Source code: https://github.com/cran/easybgm +* Date/Publication: 2026-04-02 13:20:02 UTC +* Number of recursive dependencies: 180 -Run `revdepcheck::cloud_details(, "GDINA")` for more info +Run `revdepcheck::cloud_details(, "easybgm")` for more info
@@ -3461,7 +2905,7 @@ Run `revdepcheck::cloud_details(, "GDINA")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/GDINA/new/GDINA.Rcheck’ +* using log directory ‘/tmp/workdir/easybgm/new/easybgm.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -3470,18 +2914,18 @@ Run `revdepcheck::cloud_details(, "GDINA")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘GDINA/DESCRIPTION’ ... OK +* checking for file ‘easybgm/DESCRIPTION’ ... OK ... -* checking files in ‘vignettes’ ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK +* this is package ‘easybgm’ version ‘0.4.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘BGGM’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 NOTEs +Status: 1 ERROR @@ -3491,7 +2935,7 @@ Status: 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/GDINA/old/GDINA.Rcheck’ +* using log directory ‘/tmp/workdir/easybgm/old/easybgm.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -3500,44 +2944,79 @@ Status: 2 NOTEs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘GDINA/DESCRIPTION’ ... OK +* checking for file ‘easybgm/DESCRIPTION’ ... OK ... -* checking files in ‘vignettes’ ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK +* this is package ‘easybgm’ version ‘0.4.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘BGGM’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 NOTEs +Status: 1 ERROR ``` -# gemR +# ecorisk
-* Version: 1.2.2 +* Version: NA * GitHub: NA -* Source code: https://github.com/cran/gemR -* Date/Publication: 2025-09-04 20:00:02 UTC -* Number of recursive dependencies: 101 +* Source code: https://github.com/cran/ecorisk +* Number of recursive dependencies: 145 + +Run `revdepcheck::cloud_details(, "ecorisk")` for more info + +
+ +## Error before installation + +### Devel + +``` + -Run `revdepcheck::cloud_details(, "gemR")` for more info + + + + +``` +### CRAN + +``` + + + + + + +``` +# eda4treeR + +
+ +* Version: 1.1.0 +* GitHub: https://github.com/myaseen208/eda4treeR +* Source code: https://github.com/cran/eda4treeR +* Date/Publication: 2024-09-13 21:50:02 UTC +* Number of recursive dependencies: 141 + +Run `revdepcheck::cloud_details(, "eda4treeR")` for more info
## In both -* checking whether package ‘gemR’ can be installed ... ERROR +* checking whether package ‘eda4treeR’ can be installed ... ERROR ``` Installation failed. - See ‘/tmp/workdir/gemR/new/gemR.Rcheck/00install.out’ for details. + See ‘/tmp/workdir/eda4treeR/new/eda4treeR.Rcheck/00install.out’ for details. ``` ## Installation @@ -3545,52 +3024,54 @@ Run `revdepcheck::cloud_details(, "gemR")` for more info ### Devel ``` -* installing *source* package ‘gemR’ ... -** package ‘gemR’ successfully unpacked and MD5 sums checked +* installing *source* package ‘eda4treeR’ ... +** package ‘eda4treeR’ 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 ‘praznik’ + there is no package called ‘HRW’ Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart Execution halted -ERROR: lazy loading failed for package ‘gemR’ -* removing ‘/tmp/workdir/gemR/new/gemR.Rcheck/gemR’ +ERROR: lazy loading failed for package ‘eda4treeR’ +* removing ‘/tmp/workdir/eda4treeR/new/eda4treeR.Rcheck/eda4treeR’ ``` ### CRAN ``` -* installing *source* package ‘gemR’ ... -** package ‘gemR’ successfully unpacked and MD5 sums checked +* installing *source* package ‘eda4treeR’ ... +** package ‘eda4treeR’ 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 ‘praznik’ + there is no package called ‘HRW’ Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart Execution halted -ERROR: lazy loading failed for package ‘gemR’ -* removing ‘/tmp/workdir/gemR/old/gemR.Rcheck/gemR’ +ERROR: lazy loading failed for package ‘eda4treeR’ +* removing ‘/tmp/workdir/eda4treeR/old/eda4treeR.Rcheck/eda4treeR’ ``` -# genekitr +# EFDR
-* Version: 1.2.8 -* GitHub: https://github.com/GangLiLab/genekitr -* Source code: https://github.com/cran/genekitr -* Date/Publication: 2024-09-06 13:00:06 UTC -* Number of recursive dependencies: 203 +* Version: 1.3 +* GitHub: https://github.com/andrewzm/EFDR +* Source code: https://github.com/cran/EFDR +* Date/Publication: 2023-08-22 22:20:02 UTC +* Number of recursive dependencies: 103 -Run `revdepcheck::cloud_details(, "genekitr")` for more info +Run `revdepcheck::cloud_details(, "EFDR")` for more info
@@ -3599,7 +3080,7 @@ Run `revdepcheck::cloud_details(, "genekitr")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/genekitr/new/genekitr.Rcheck’ +* using log directory ‘/tmp/workdir/EFDR/new/EFDR.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -3608,13 +3089,13 @@ Run `revdepcheck::cloud_details(, "genekitr")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘genekitr/DESCRIPTION’ ... OK +* checking for file ‘EFDR/DESCRIPTION’ ... OK ... -* this is package ‘genekitr’ version ‘1.2.8’ +* this is package ‘EFDR’ version ‘1.3’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘clusterProfiler’ +Package required but not available: ‘copula’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -3629,7 +3110,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/genekitr/old/genekitr.Rcheck’ +* using log directory ‘/tmp/workdir/EFDR/old/EFDR.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -3638,13 +3119,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘genekitr/DESCRIPTION’ ... OK +* checking for file ‘EFDR/DESCRIPTION’ ... OK ... -* this is package ‘genekitr’ version ‘1.2.8’ +* this is package ‘EFDR’ version ‘1.3’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘clusterProfiler’ +Package required but not available: ‘copula’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -3656,148 +3137,93 @@ Status: 1 ERROR ``` -# GeneralizedUmatrixGPU +# EGAnet
-* Version: 0.1.10 -* GitHub: NA -* Source code: https://github.com/cran/GeneralizedUmatrixGPU -* Date/Publication: 2026-01-14 08:00:32 UTC -* Number of recursive dependencies: 85 +* Version: 2.4.1 +* GitHub: https://github.com/hfgolino/EGAnet +* Source code: https://github.com/cran/EGAnet +* Date/Publication: 2026-04-13 16:10:02 UTC +* Number of recursive dependencies: 167 -Run `revdepcheck::cloud_details(, "GeneralizedUmatrixGPU")` for more info +Run `revdepcheck::cloud_details(, "EGAnet")` for more info
-## In both - -* checking whether package ‘GeneralizedUmatrixGPU’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/GeneralizedUmatrixGPU/new/GeneralizedUmatrixGPU.Rcheck/00install.out’ for details. - ``` - -## Installation +## Error before installation ### Devel ``` -* installing *source* package ‘GeneralizedUmatrixGPU’ ... -** package ‘GeneralizedUmatrixGPU’ successfully unpacked and MD5 sums checked -** using staged installation -configure: building makevars -System detected: Linux -End of configure -** libs -using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/RcppParallel/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/RcppParallel/include' -I/usr/local/include -fpic -g -O2 -c trainSESOM.cpp -o trainSESOM.o -In file included from trainSESOM.cpp:2: -ocl.h:9:10: fatal error: CL/cl.h: No such file or directory - 9 | #include - | ^~~~~~~~~ -compilation terminated. -make: *** [/opt/R/4.4.0/lib/R/etc/Makeconf:204: trainSESOM.o] Error 1 -ERROR: compilation failed for package ‘GeneralizedUmatrixGPU’ -* removing ‘/tmp/workdir/GeneralizedUmatrixGPU/new/GeneralizedUmatrixGPU.Rcheck/GeneralizedUmatrixGPU’ - - -``` -### CRAN - -``` -* installing *source* package ‘GeneralizedUmatrixGPU’ ... -** package ‘GeneralizedUmatrixGPU’ successfully unpacked and MD5 sums checked -** using staged installation -configure: building makevars -System detected: Linux -End of configure -** libs -using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/RcppParallel/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I'/usr/local/lib/R/site-library/RcppParallel/include' -I/usr/local/include -fpic -g -O2 -c trainSESOM.cpp -o trainSESOM.o -In file included from trainSESOM.cpp:2: -ocl.h:9:10: fatal error: CL/cl.h: No such file or directory - 9 | #include - | ^~~~~~~~~ -compilation terminated. -make: *** [/opt/R/4.4.0/lib/R/etc/Makeconf:204: trainSESOM.o] Error 1 -ERROR: compilation failed for package ‘GeneralizedUmatrixGPU’ -* removing ‘/tmp/workdir/GeneralizedUmatrixGPU/old/GeneralizedUmatrixGPU.Rcheck/GeneralizedUmatrixGPU’ - - -``` -# ggChernoff - -
- -* Version: 0.3.0 -* GitHub: https://github.com/Selbosh/ggChernoff -* Source code: https://github.com/cran/ggChernoff -* Date/Publication: 2022-11-17 13:10:01 UTC -* Number of recursive dependencies: 17 +* using log directory ‘/tmp/workdir/EGAnet/new/EGAnet.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘EGAnet/DESCRIPTION’ ... OK +... +* this is package ‘EGAnet’ version ‘2.4.1’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘semPlot’ -Run `revdepcheck::cloud_details(, "ggChernoff")` for more info +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR -
-## Newly broken -* checking whether package ‘ggChernoff’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/ggChernoff/new/ggChernoff.Rcheck/00install.out’ for details. - ``` -## Installation -### Devel +``` +### CRAN ``` -* installing *source* package ‘ggChernoff’ ... -** package ‘ggChernoff’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** byte-compile and prepare package for lazy loading -Error in ggproto("GeomChernoff", ggplot2::Geom, required_aes = c("x", : - Members of a object cannot have duplicate names ("draw_key"). -Error: unable to load R code in package ‘ggChernoff’ -Execution halted -ERROR: lazy loading failed for package ‘ggChernoff’ -* removing ‘/tmp/workdir/ggChernoff/new/ggChernoff.Rcheck/ggChernoff’ +* using log directory ‘/tmp/workdir/EGAnet/old/EGAnet.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘EGAnet/DESCRIPTION’ ... OK +... +* this is package ‘EGAnet’ version ‘2.4.1’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘semPlot’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR -``` -### CRAN -``` -* installing *source* package ‘ggChernoff’ ... -** package ‘ggChernoff’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** byte-compile and prepare package for lazy loading -** help -*** installing help indices -** building package indices -** testing if installed package can be loaded from temporary location -** testing if installed package can be loaded from final location -** testing if installed package keeps a record of temporary installation path -* DONE (ggChernoff) ``` -# ggpicrust2 +# ER
-* Version: 2.5.2 -* GitHub: https://github.com/cafferychen777/ggpicrust2 -* Source code: https://github.com/cran/ggpicrust2 -* Date/Publication: 2025-08-25 23:00:02 UTC -* Number of recursive dependencies: 307 +* Version: 1.1.2 +* GitHub: NA +* Source code: https://github.com/cran/ER +* Date/Publication: 2025-07-28 22:10:08 UTC +* Number of recursive dependencies: 40 -Run `revdepcheck::cloud_details(, "ggpicrust2")` for more info +Run `revdepcheck::cloud_details(, "ER")` for more info
@@ -3806,7 +3232,7 @@ Run `revdepcheck::cloud_details(, "ggpicrust2")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/ggpicrust2/new/ggpicrust2.Rcheck’ +* using log directory ‘/tmp/workdir/ER/new/ER.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -3815,18 +3241,18 @@ Run `revdepcheck::cloud_details(, "ggpicrust2")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ggpicrust2/DESCRIPTION’ ... OK +* checking for file ‘ER/DESCRIPTION’ ... 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 LazyData ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking R/sysdata.rda ... OK -* checking examples ... OK +* this is package ‘ER’ version ‘1.1.2’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘plsVarSel’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 NOTEs +Status: 1 ERROR @@ -3836,7 +3262,7 @@ Status: 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/ggpicrust2/old/ggpicrust2.Rcheck’ +* using log directory ‘/tmp/workdir/ER/old/ER.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -3845,35 +3271,35 @@ Status: 2 NOTEs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ggpicrust2/DESCRIPTION’ ... OK +* checking for file ‘ER/DESCRIPTION’ ... 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 LazyData ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking R/sysdata.rda ... OK -* checking examples ... OK +* this is package ‘ER’ version ‘1.1.2’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘plsVarSel’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 NOTEs +Status: 1 ERROR ``` -# ggsem +# FAfA
-* Version: 0.9.8 -* GitHub: https://github.com/smin95/ggsem -* Source code: https://github.com/cran/ggsem -* Date/Publication: 2026-01-17 11:10:12 UTC -* Number of recursive dependencies: 232 +* Version: 0.5 +* GitHub: https://github.com/AFarukKILIC/FAfA +* Source code: https://github.com/cran/FAfA +* Date/Publication: 2025-12-15 13:00:02 UTC +* Number of recursive dependencies: 273 -Run `revdepcheck::cloud_details(, "ggsem")` for more info +Run `revdepcheck::cloud_details(, "FAfA")` for more info
@@ -3882,7 +3308,7 @@ Run `revdepcheck::cloud_details(, "ggsem")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/ggsem/new/ggsem.Rcheck’ +* using log directory ‘/tmp/workdir/FAfA/new/FAfA.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -3891,13 +3317,13 @@ Run `revdepcheck::cloud_details(, "ggsem")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ggsem/DESCRIPTION’ ... OK +* checking for file ‘FAfA/DESCRIPTION’ ... OK ... -* this is package ‘ggsem’ version ‘0.9.8’ +* this is package ‘FAfA’ version ‘0.5’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘semPlot’ +Packages required but not available: 'EGAnet', 'MBESS', 'energy', 'semPlot' See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -3912,7 +3338,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/ggsem/old/ggsem.Rcheck’ +* using log directory ‘/tmp/workdir/FAfA/old/FAfA.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -3921,13 +3347,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ggsem/DESCRIPTION’ ... OK +* checking for file ‘FAfA/DESCRIPTION’ ... OK ... -* this is package ‘ggsem’ version ‘0.9.8’ +* this is package ‘FAfA’ version ‘0.5’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘semPlot’ +Packages required but not available: 'EGAnet', 'MBESS', 'energy', 'semPlot' See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -3939,31 +3365,26 @@ Status: 1 ERROR ``` -# GJRM +# fastei
-* Version: 0.2-6.8 -* GitHub: NA -* Source code: https://github.com/cran/GJRM -* Date/Publication: 2025-06-23 21:20:02 UTC +* Version: 0.0.0.12 +* GitHub: https://github.com/DanielHermosilla/ecological-inference-elections +* Source code: https://github.com/cran/fastei +* Date/Publication: 2026-01-10 03:10:02 UTC * Number of recursive dependencies: 57 -Run `revdepcheck::cloud_details(, "GJRM")` for more info +Run `revdepcheck::cloud_details(, "fastei")` for more info
## In both -* checking whether package ‘GJRM’ can be installed ... ERROR +* checking whether package ‘fastei’ can be installed ... ERROR ``` Installation failed. - See ‘/tmp/workdir/GJRM/new/GJRM.Rcheck/00install.out’ for details. - ``` - -* checking package dependencies ... NOTE - ``` - Package which this enhances but not available for checking: ‘sp’ + See ‘/tmp/workdir/fastei/new/fastei.Rcheck/00install.out’ for details. ``` ## Installation @@ -3971,50 +3392,68 @@ Run `revdepcheck::cloud_details(, "GJRM")` for more info ### Devel ``` -* installing *source* package ‘GJRM’ ... -** package ‘GJRM’ successfully unpacked and MD5 sums checked +* installing *source* package ‘fastei’ ... +** package ‘fastei’ 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘GJRM’ -* removing ‘/tmp/workdir/GJRM/new/GJRM.Rcheck/GJRM’ +** libs +using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/tmp/r-deps/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c LP.c -o LP.o +gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/tmp/r-deps/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c MCMC.c -o MCMC.o +In file included from stb_ds.h:398, + from MCMC.c:25: +... + | ^~~~~~~~~~ +stb_ds.h:422:17: note: in expansion of macro ‘stbds_arrfree’ + 422 | #define arrfree stbds_arrfree + | ^~~~~~~~~~~~~ +MCMC.c:375:13: note: in expansion of macro ‘arrfree’ + 375 | arrfree(hashTable[i].value); + | ^~~~~~~ +make: *** [/opt/R/4.4.0/lib/R/etc/Makeconf:195: MCMC.o] Error 1 +ERROR: compilation failed for package ‘fastei’ +* removing ‘/tmp/workdir/fastei/new/fastei.Rcheck/fastei’ ``` ### CRAN ``` -* installing *source* package ‘GJRM’ ... -** package ‘GJRM’ successfully unpacked and MD5 sums checked +* installing *source* package ‘fastei’ ... +** package ‘fastei’ 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘GJRM’ -* removing ‘/tmp/workdir/GJRM/old/GJRM.Rcheck/GJRM’ +** libs +using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/tmp/r-deps/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c LP.c -o LP.o +gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/tmp/r-deps/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c MCMC.c -o MCMC.o +In file included from stb_ds.h:398, + from MCMC.c:25: +... + | ^~~~~~~~~~ +stb_ds.h:422:17: note: in expansion of macro ‘stbds_arrfree’ + 422 | #define arrfree stbds_arrfree + | ^~~~~~~~~~~~~ +MCMC.c:375:13: note: in expansion of macro ‘arrfree’ + 375 | arrfree(hashTable[i].value); + | ^~~~~~~ +make: *** [/opt/R/4.4.0/lib/R/etc/Makeconf:195: MCMC.o] Error 1 +ERROR: compilation failed for package ‘fastei’ +* removing ‘/tmp/workdir/fastei/old/fastei.Rcheck/fastei’ ``` -# grandR +# fastqrs
-* Version: 0.2.7 -* GitHub: https://github.com/erhard-lab/grandR -* Source code: https://github.com/cran/grandR -* Date/Publication: 2026-01-14 11:10:02 UTC -* Number of recursive dependencies: 251 +* Version: 1.0.0 +* GitHub: NA +* Source code: https://github.com/cran/fastqrs +* Date/Publication: 2025-04-16 20:10:02 UTC +* Number of recursive dependencies: 104 -Run `revdepcheck::cloud_details(, "grandR")` for more info +Run `revdepcheck::cloud_details(, "fastqrs")` for more info
@@ -4023,7 +3462,7 @@ Run `revdepcheck::cloud_details(, "grandR")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/grandR/new/grandR.Rcheck’ +* using log directory ‘/tmp/workdir/fastqrs/new/fastqrs.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -4032,18 +3471,18 @@ Run `revdepcheck::cloud_details(, "grandR")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘grandR/DESCRIPTION’ ... OK +* checking for file ‘fastqrs/DESCRIPTION’ ... OK ... -* checking line endings in C/C++/Fortran sources/headers ... OK -* checking compiled code ... 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 ... OK -* checking re-building of vignette outputs ... OK +* this is package ‘fastqrs’ version ‘1.0.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 NOTEs +Status: 1 ERROR @@ -4053,7 +3492,7 @@ Status: 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/grandR/old/grandR.Rcheck’ +* using log directory ‘/tmp/workdir/fastqrs/old/fastqrs.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -4062,92 +3501,35 @@ Status: 2 NOTEs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘grandR/DESCRIPTION’ ... OK +* checking for file ‘fastqrs/DESCRIPTION’ ... OK ... -* checking line endings in C/C++/Fortran sources/headers ... OK -* checking compiled code ... 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 ... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 2 NOTEs - - - - - -``` -# GRIDCOPULA - -
- -* Version: 1.1.0 -* GitHub: NA -* Source code: https://github.com/cran/GRIDCOPULA -* Date/Publication: 2025-09-13 22:40:12 UTC -* Number of recursive dependencies: 44 - -Run `revdepcheck::cloud_details(, "GRIDCOPULA")` for more info - -
- -## In both - -* checking whether package ‘GRIDCOPULA’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/GRIDCOPULA/new/GRIDCOPULA.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel +* this is package ‘fastqrs’ version ‘1.0.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ -``` -* installing *source* package ‘GRIDCOPULA’ ... -** package ‘GRIDCOPULA’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** byte-compile and prepare package for lazy loading -Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘GRIDCOPULA’ -* removing ‘/tmp/workdir/GRIDCOPULA/new/GRIDCOPULA.Rcheck/GRIDCOPULA’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR -``` -### CRAN -``` -* installing *source* package ‘GRIDCOPULA’ ... -** package ‘GRIDCOPULA’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** byte-compile and prepare package for lazy loading -Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : - there is no package called ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘GRIDCOPULA’ -* removing ‘/tmp/workdir/GRIDCOPULA/old/GRIDCOPULA.Rcheck/GRIDCOPULA’ ``` -# groupedHyperframe +# FCPS
-* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/groupedHyperframe -* Number of recursive dependencies: 77 +* Version: 1.3.6 +* GitHub: https://github.com/Mthrun/FCPS +* Source code: https://github.com/cran/FCPS +* Date/Publication: 2026-03-26 11:10:02 UTC +* Number of recursive dependencies: 266 -Run `revdepcheck::cloud_details(, "groupedHyperframe")` for more info +Run `revdepcheck::cloud_details(, "FCPS")` for more info
@@ -4156,7 +3538,27 @@ Run `revdepcheck::cloud_details(, "groupedHyperframe")` for more info ### Devel ``` - +* using log directory ‘/tmp/workdir/FCPS/new/FCPS.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘FCPS/DESCRIPTION’ ... OK +... +* checking LazyData ... OK +* checking data for ASCII and uncompressed saves ... 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 ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 2 NOTEs @@ -4166,24 +3568,44 @@ Run `revdepcheck::cloud_details(, "groupedHyperframe")` for more info ### CRAN ``` - +* using log directory ‘/tmp/workdir/FCPS/old/FCPS.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘FCPS/DESCRIPTION’ ... OK +... +* checking LazyData ... OK +* checking data for ASCII and uncompressed saves ... 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 ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 2 NOTEs ``` -# hbsaems +# fddm
-* Version: 0.1.1 -* GitHub: https://github.com/madsyair/hbsaems -* Source code: https://github.com/cran/hbsaems -* Date/Publication: 2025-07-18 14:40:02 UTC -* Number of recursive dependencies: 178 +* Version: 1.0-2 +* GitHub: https://github.com/rtdists/fddm +* Source code: https://github.com/cran/fddm +* Date/Publication: 2024-07-02 16:00:07 UTC +* Number of recursive dependencies: 88 -Run `revdepcheck::cloud_details(, "hbsaems")` for more info +Run `revdepcheck::cloud_details(, "fddm")` for more info
@@ -4192,7 +3614,7 @@ Run `revdepcheck::cloud_details(, "hbsaems")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/hbsaems/new/hbsaems.Rcheck’ +* using log directory ‘/tmp/workdir/fddm/new/fddm.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -4201,18 +3623,18 @@ Run `revdepcheck::cloud_details(, "hbsaems")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘hbsaems/DESCRIPTION’ ... OK +* checking for file ‘fddm/DESCRIPTION’ ... OK ... -* this is package ‘hbsaems’ version ‘0.1.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘energy’ +--- failed re-building ‘validity.Rmd’ + +SUMMARY: processing the following file failed: + ‘validity.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, 2 NOTEs @@ -4222,7 +3644,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/hbsaems/old/hbsaems.Rcheck’ +* using log directory ‘/tmp/workdir/fddm/old/fddm.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -4231,113 +3653,35 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘hbsaems/DESCRIPTION’ ... OK +* checking for file ‘fddm/DESCRIPTION’ ... OK ... -* this is package ‘hbsaems’ version ‘0.1.1’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘energy’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR - - - - - -``` -# IndGenErrors - -
- -* Version: 0.1.6 -* GitHub: NA -* Source code: https://github.com/cran/IndGenErrors -* Date/Publication: 2025-01-31 14:30:04 UTC -* Number of recursive dependencies: 40 - -Run `revdepcheck::cloud_details(, "IndGenErrors")` for more info - -
- -## In both - -* checking whether package ‘IndGenErrors’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/IndGenErrors/new/IndGenErrors.Rcheck/00install.out’ for details. - ``` - -## Installation +--- failed re-building ‘validity.Rmd’ -### Devel +SUMMARY: processing the following file failed: + ‘validity.Rmd’ -``` -* installing *source* package ‘IndGenErrors’ ... -** package ‘IndGenErrors’ successfully unpacked and MD5 sums checked -** using staged installation -** libs -using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c calcul_cvm_crosscor_3d.c -o calcul_cvm_crosscor_3d.o -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c cvmF100.c -o cvmF100.o -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c cvmF50.c -o cvmF50.o -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c registerDynamicSymbol.c -o registerDynamicSymbol.o -gcc -shared -L/opt/R/4.4.0/lib/R/lib -L/usr/local/lib -o IndGenErrors.so calcul_cvm_crosscor_3d.o cvmF100.o cvmF50.o registerDynamicSymbol.o -L/opt/R/4.4.0/lib/R/lib -lR -... -installing to /tmp/workdir/IndGenErrors/new/IndGenErrors.Rcheck/00LOCK-IndGenErrors/00new/IndGenErrors/libs -** R -** data -** 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Error: Vignette re-building failed. Execution halted -ERROR: lazy loading failed for package ‘IndGenErrors’ -* removing ‘/tmp/workdir/IndGenErrors/new/IndGenErrors.Rcheck/IndGenErrors’ + +* DONE +Status: 1 ERROR, 2 NOTEs -``` -### CRAN -``` -* installing *source* package ‘IndGenErrors’ ... -** package ‘IndGenErrors’ successfully unpacked and MD5 sums checked -** using staged installation -** libs -using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c calcul_cvm_crosscor_3d.c -o calcul_cvm_crosscor_3d.o -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c cvmF100.c -o cvmF100.o -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c cvmF50.c -o cvmF50.o -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c registerDynamicSymbol.c -o registerDynamicSymbol.o -gcc -shared -L/opt/R/4.4.0/lib/R/lib -L/usr/local/lib -o IndGenErrors.so calcul_cvm_crosscor_3d.o cvmF100.o cvmF50.o registerDynamicSymbol.o -L/opt/R/4.4.0/lib/R/lib -lR -... -installing to /tmp/workdir/IndGenErrors/old/IndGenErrors.Rcheck/00LOCK-IndGenErrors/00new/IndGenErrors/libs -** R -** data -** 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘IndGenErrors’ -* removing ‘/tmp/workdir/IndGenErrors/old/IndGenErrors.Rcheck/IndGenErrors’ ``` -# jmv +# FeatureImpCluster
-* Version: 2.7.7 -* GitHub: https://github.com/jamovi/jmv -* Source code: https://github.com/cran/jmv -* Date/Publication: 2025-09-18 00:40:02 UTC -* Number of recursive dependencies: 195 +* Version: 0.1.5 +* GitHub: NA +* Source code: https://github.com/cran/FeatureImpCluster +* Date/Publication: 2021-10-20 16:20:02 UTC +* Number of recursive dependencies: 95 -Run `revdepcheck::cloud_details(, "jmv")` for more info +Run `revdepcheck::cloud_details(, "FeatureImpCluster")` for more info
@@ -4346,7 +3690,7 @@ Run `revdepcheck::cloud_details(, "jmv")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/jmv/new/jmv.Rcheck’ +* using log directory ‘/tmp/workdir/FeatureImpCluster/new/FeatureImpCluster.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -4355,18 +3699,18 @@ Run `revdepcheck::cloud_details(, "jmv")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘jmv/DESCRIPTION’ ... OK +* checking for file ‘FeatureImpCluster/DESCRIPTION’ ... OK ... +* 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 for unstated dependencies in ‘tests’ ... OK * checking tests ... OK Running ‘testthat.R’ * DONE -Status: 3 NOTEs +Status: OK @@ -4376,7 +3720,7 @@ Status: 3 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/jmv/old/jmv.Rcheck’ +* using log directory ‘/tmp/workdir/FeatureImpCluster/old/FeatureImpCluster.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -4385,35 +3729,35 @@ Status: 3 NOTEs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘jmv/DESCRIPTION’ ... OK +* checking for file ‘FeatureImpCluster/DESCRIPTION’ ... OK ... +* 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 for unstated dependencies in ‘tests’ ... OK * checking tests ... OK Running ‘testthat.R’ * DONE -Status: 3 NOTEs +Status: OK ``` -# latentFactoR +# ferrn
-* Version: 0.0.7 -* GitHub: NA -* Source code: https://github.com/cran/latentFactoR -* Date/Publication: 2025-11-03 11:20:02 UTC -* Number of recursive dependencies: 186 +* Version: 0.3.0 +* GitHub: https://github.com/huizezhang-sherry/ferrn +* Source code: https://github.com/cran/ferrn +* Date/Publication: 2025-11-20 22:10:10 UTC +* Number of recursive dependencies: 146 -Run `revdepcheck::cloud_details(, "latentFactoR")` for more info +Run `revdepcheck::cloud_details(, "ferrn")` for more info
@@ -4422,7 +3766,7 @@ Run `revdepcheck::cloud_details(, "latentFactoR")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/latentFactoR/new/latentFactoR.Rcheck’ +* using log directory ‘/tmp/workdir/ferrn/new/ferrn.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -4431,18 +3775,18 @@ Run `revdepcheck::cloud_details(, "latentFactoR")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘latentFactoR/DESCRIPTION’ ... OK +* checking for file ‘ferrn/DESCRIPTION’ ... OK ... -* this is package ‘latentFactoR’ version ‘0.0.7’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘EGAnet’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. +* 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 ERROR +Status: OK @@ -4452,7 +3796,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/latentFactoR/old/latentFactoR.Rcheck’ +* using log directory ‘/tmp/workdir/ferrn/old/ferrn.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -4461,35 +3805,35 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘latentFactoR/DESCRIPTION’ ... OK +* checking for file ‘ferrn/DESCRIPTION’ ... OK ... -* this is package ‘latentFactoR’ version ‘0.0.7’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘EGAnet’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. +* 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 ERROR +Status: OK ``` -# lcsm +# ffp
-* Version: 0.3.2 -* GitHub: https://github.com/milanwiedemann/lcsm -* Source code: https://github.com/cran/lcsm -* Date/Publication: 2023-02-25 23:40:02 UTC -* Number of recursive dependencies: 137 +* Version: 0.2.2 +* GitHub: https://github.com/Reckziegel/FFP +* Source code: https://github.com/cran/ffp +* Date/Publication: 2022-09-29 15:10:06 UTC +* Number of recursive dependencies: 104 -Run `revdepcheck::cloud_details(, "lcsm")` for more info +Run `revdepcheck::cloud_details(, "ffp")` for more info
@@ -4498,7 +3842,7 @@ Run `revdepcheck::cloud_details(, "lcsm")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/lcsm/new/lcsm.Rcheck’ +* using log directory ‘/tmp/workdir/ffp/new/ffp.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -4507,18 +3851,18 @@ Run `revdepcheck::cloud_details(, "lcsm")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘lcsm/DESCRIPTION’ ... OK +* checking for file ‘ffp/DESCRIPTION’ ... OK ... -* this is package ‘lcsm’ version ‘0.3.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘semPlot’ +--- failed re-building ‘views.Rmd’ + +SUMMARY: processing the following file failed: + ‘views.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 NOTE @@ -4528,7 +3872,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/lcsm/old/lcsm.Rcheck’ +* using log directory ‘/tmp/workdir/ffp/old/ffp.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -4537,44 +3881,44 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘lcsm/DESCRIPTION’ ... OK +* checking for file ‘ffp/DESCRIPTION’ ... OK ... -* this is package ‘lcsm’ version ‘0.3.2’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘semPlot’ +--- failed re-building ‘views.Rmd’ + +SUMMARY: processing the following file failed: + ‘views.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 NOTE ``` -# lemon +# fio
-* Version: 0.5.2 -* GitHub: https://github.com/stefanedwards/lemon -* Source code: https://github.com/cran/lemon -* Date/Publication: 2025-09-04 11:50:02 UTC -* Number of recursive dependencies: 70 +* Version: 1.0.0 +* GitHub: https://github.com/albersonmiranda/fio +* Source code: https://github.com/cran/fio +* Date/Publication: 2026-02-27 08:40:02 UTC +* Number of recursive dependencies: 89 -Run `revdepcheck::cloud_details(, "lemon")` for more info +Run `revdepcheck::cloud_details(, "fio")` for more info
-## Newly broken +## In both -* checking whether package ‘lemon’ can be installed ... ERROR +* checking whether package ‘fio’ can be installed ... ERROR ``` Installation failed. - See ‘/tmp/workdir/lemon/new/lemon.Rcheck/00install.out’ for details. + See ‘/tmp/workdir/fio/new/fio.Rcheck/00install.out’ for details. ``` ## Installation @@ -4582,53 +3926,50 @@ Run `revdepcheck::cloud_details(, "lemon")` for more info ### Devel ``` -* installing *source* package ‘lemon’ ... -** package ‘lemon’ successfully unpacked and MD5 sums checked +* installing *source* package ‘fio’ ... +** package ‘fio’ successfully unpacked and MD5 sums checked ** using staged installation -** R -** inst -** byte-compile and prepare package for lazy loading -Error in ggplot2::ggproto("GeomSideRange", `_inherit` = ggplot2::Geom, : - Members of a object cannot have duplicate names -("default_aes"). -Error: unable to load R code in package ‘lemon’ +Error in eval(ei, envir) : +------------------ [UNSUPPORTED RUST VERSION]------------------ +- Minimum supported Rust version is 1.84. +- Installed Rust version is 1.75.0. +--------------------------------------------------------------- +Calls: source -> withVisible -> eval -> eval Execution halted -ERROR: lazy loading failed for package ‘lemon’ -* removing ‘/tmp/workdir/lemon/new/lemon.Rcheck/lemon’ +ERROR: configuration failed for package ‘fio’ +* removing ‘/tmp/workdir/fio/new/fio.Rcheck/fio’ ``` ### CRAN ``` -* installing *source* package ‘lemon’ ... -** package ‘lemon’ successfully unpacked and MD5 sums checked +* installing *source* package ‘fio’ ... +** package ‘fio’ successfully unpacked and MD5 sums checked ** using staged installation -** R -** inst -** byte-compile and prepare package for lazy loading -** help -*** installing help indices -** building package indices -** installing vignettes -** testing if installed package can be loaded from temporary location -** testing if installed package can be loaded from final location -** testing if installed package keeps a record of temporary installation path -* DONE (lemon) +Error in eval(ei, envir) : +------------------ [UNSUPPORTED RUST VERSION]------------------ +- Minimum supported Rust version is 1.84. +- Installed Rust version is 1.75.0. +--------------------------------------------------------------- +Calls: source -> withVisible -> eval -> eval +Execution halted +ERROR: configuration failed for package ‘fio’ +* removing ‘/tmp/workdir/fio/old/fio.Rcheck/fio’ ``` -# linkspotter +# gasmodel
-* Version: 1.3.0 -* GitHub: https://github.com/sambaala/linkspotter -* Source code: https://github.com/cran/linkspotter -* Date/Publication: 2020-07-23 10:40:02 UTC -* Number of recursive dependencies: 75 +* Version: 0.6.2 +* GitHub: https://github.com/vladimirholy/gasmodel +* Source code: https://github.com/cran/gasmodel +* Date/Publication: 2025-08-18 20:50:08 UTC +* Number of recursive dependencies: 85 -Run `revdepcheck::cloud_details(, "linkspotter")` for more info +Run `revdepcheck::cloud_details(, "gasmodel")` for more info
@@ -4637,7 +3978,7 @@ Run `revdepcheck::cloud_details(, "linkspotter")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/linkspotter/new/linkspotter.Rcheck’ +* using log directory ‘/tmp/workdir/gasmodel/new/gasmodel.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -4646,13 +3987,13 @@ Run `revdepcheck::cloud_details(, "linkspotter")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘linkspotter/DESCRIPTION’ ... OK +* checking for file ‘gasmodel/DESCRIPTION’ ... OK ... -* this is package ‘linkspotter’ version ‘1.3.0’ +* this is package ‘gasmodel’ version ‘0.6.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘energy’ +Package required but not available: ‘copula’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -4667,7 +4008,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/linkspotter/old/linkspotter.Rcheck’ +* using log directory ‘/tmp/workdir/gasmodel/old/gasmodel.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -4676,13 +4017,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘linkspotter/DESCRIPTION’ ... OK +* checking for file ‘gasmodel/DESCRIPTION’ ... OK ... -* this is package ‘linkspotter’ version ‘1.3.0’ +* this is package ‘gasmodel’ version ‘0.6.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘energy’ +Package required but not available: ‘copula’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -4694,17 +4035,17 @@ Status: 1 ERROR ``` -# lionfish +# GDINA
-* Version: 1.0.27 -* GitHub: NA -* Source code: https://github.com/cran/lionfish -* Date/Publication: 2025-03-13 20:50:02 UTC -* Number of recursive dependencies: 152 +* Version: 2.9.12 +* GitHub: https://github.com/Wenchao-Ma/GDINA +* Source code: https://github.com/cran/GDINA +* Date/Publication: 2025-07-02 17:00:02 UTC +* Number of recursive dependencies: 150 -Run `revdepcheck::cloud_details(, "lionfish")` for more info +Run `revdepcheck::cloud_details(, "GDINA")` for more info
@@ -4713,7 +4054,7 @@ Run `revdepcheck::cloud_details(, "lionfish")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/lionfish/new/lionfish.Rcheck’ +* using log directory ‘/tmp/workdir/GDINA/new/GDINA.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -4722,18 +4063,18 @@ Run `revdepcheck::cloud_details(, "lionfish")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘lionfish/DESCRIPTION’ ... OK +* checking for file ‘GDINA/DESCRIPTION’ ... OK ... -* checking LazyData ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking installed files from ‘inst/doc’ ... OK * checking files in ‘vignettes’ ... OK * checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * DONE -Status: OK +Status: 2 NOTEs @@ -4743,7 +4084,7 @@ Status: OK ### CRAN ``` -* using log directory ‘/tmp/workdir/lionfish/old/lionfish.Rcheck’ +* using log directory ‘/tmp/workdir/GDINA/old/GDINA.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -4752,97 +4093,35 @@ Status: OK * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘lionfish/DESCRIPTION’ ... OK +* checking for file ‘GDINA/DESCRIPTION’ ... OK ... -* checking LazyData ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking installed files from ‘inst/doc’ ... OK * checking files in ‘vignettes’ ... OK * checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * DONE -Status: OK +Status: 2 NOTEs ``` -# LongDecompHE +# gemR
-* Version: 0.1.0 +* Version: 1.2.2 * GitHub: NA -* Source code: https://github.com/cran/LongDecompHE -* Date/Publication: 2025-07-03 15:20:02 UTC -* Number of recursive dependencies: 42 - -Run `revdepcheck::cloud_details(, "LongDecompHE")` for more info - -
- -## In both - -* checking whether package ‘LongDecompHE’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/LongDecompHE/new/LongDecompHE.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘LongDecompHE’ ... -** package ‘LongDecompHE’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** data -*** moving datasets to lazyload DB -** byte-compile and prepare package for lazy loading -Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : - there is no package called ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘LongDecompHE’ -* removing ‘/tmp/workdir/LongDecompHE/new/LongDecompHE.Rcheck/LongDecompHE’ - - -``` -### CRAN - -``` -* installing *source* package ‘LongDecompHE’ ... -** package ‘LongDecompHE’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** data -*** moving datasets to lazyload DB -** byte-compile and prepare package for lazy loading -Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : - there is no package called ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘LongDecompHE’ -* removing ‘/tmp/workdir/LongDecompHE/old/LongDecompHE.Rcheck/LongDecompHE’ - - -``` -# manymome - -
- -* Version: 0.3.3 -* GitHub: https://github.com/sfcheung/manymome -* Source code: https://github.com/cran/manymome -* Date/Publication: 2026-01-08 06:10:52 UTC -* Number of recursive dependencies: 158 +* Source code: https://github.com/cran/gemR +* Date/Publication: 2025-09-04 20:00:02 UTC +* Number of recursive dependencies: 94 -Run `revdepcheck::cloud_details(, "manymome")` for more info +Run `revdepcheck::cloud_details(, "gemR")` for more info
@@ -4851,7 +4130,7 @@ Run `revdepcheck::cloud_details(, "manymome")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/manymome/new/manymome.Rcheck’ +* using log directory ‘/tmp/workdir/gemR/new/gemR.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -4860,89 +4139,13 @@ Run `revdepcheck::cloud_details(, "manymome")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘manymome/DESCRIPTION’ ... OK +* checking for file ‘gemR/DESCRIPTION’ ... OK ... -* checking files in ‘vignettes’ ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 2 NOTEs - - - - - -``` -### CRAN - -``` -* using log directory ‘/tmp/workdir/manymome/old/manymome.Rcheck’ -* using R version 4.4.0 (2024-04-24) -* using platform: x86_64-pc-linux-gnu -* R was compiled by - gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 - GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 -* running under: Ubuntu 24.04.3 LTS -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘manymome/DESCRIPTION’ ... OK -... -* checking files in ‘vignettes’ ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 2 NOTEs - - - - - -``` -# metrica - -
- -* Version: 2.1.0 -* GitHub: https://github.com/adriancorrendo/metrica -* Source code: https://github.com/cran/metrica -* Date/Publication: 2024-06-30 14:20:02 UTC -* Number of recursive dependencies: 86 - -Run `revdepcheck::cloud_details(, "metrica")` for more info - -
- -## Error before installation - -### Devel - -``` -* using log directory ‘/tmp/workdir/metrica/new/metrica.Rcheck’ -* using R version 4.4.0 (2024-04-24) -* using platform: x86_64-pc-linux-gnu -* R was compiled by - gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 - GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 -* running under: Ubuntu 24.04.3 LTS -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘metrica/DESCRIPTION’ ... OK -... -* this is package ‘metrica’ version ‘2.1.0’ +* this is package ‘gemR’ version ‘1.2.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘energy’ +Package required but not available: ‘plsVarSel’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -4957,7 +4160,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/metrica/old/metrica.Rcheck’ +* using log directory ‘/tmp/workdir/gemR/old/gemR.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -4966,13 +4169,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘metrica/DESCRIPTION’ ... OK +* checking for file ‘gemR/DESCRIPTION’ ... OK ... -* this is package ‘metrica’ version ‘2.1.0’ +* this is package ‘gemR’ version ‘1.2.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘energy’ +Package required but not available: ‘plsVarSel’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -4984,17 +4187,17 @@ Status: 1 ERROR ``` -# mgc +# genekitr
-* Version: 2.0.2 -* GitHub: https://github.com/neurodata/r-mgc -* Source code: https://github.com/cran/mgc -* Date/Publication: 2020-06-23 12:50:18 UTC -* Number of recursive dependencies: 66 +* Version: 1.2.8 +* GitHub: https://github.com/GangLiLab/genekitr +* Source code: https://github.com/cran/genekitr +* Date/Publication: 2024-09-06 13:00:06 UTC +* Number of recursive dependencies: 202 -Run `revdepcheck::cloud_details(, "mgc")` for more info +Run `revdepcheck::cloud_details(, "genekitr")` for more info
@@ -5003,7 +4206,7 @@ Run `revdepcheck::cloud_details(, "mgc")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/mgc/new/mgc.Rcheck’ +* using log directory ‘/tmp/workdir/genekitr/new/genekitr.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -5012,13 +4215,13 @@ Run `revdepcheck::cloud_details(, "mgc")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘mgc/DESCRIPTION’ ... OK +* checking for file ‘genekitr/DESCRIPTION’ ... OK ... -* this is package ‘mgc’ version ‘2.0.2’ +* this is package ‘genekitr’ version ‘1.2.8’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘energy’ +Package required but not available: ‘clusterProfiler’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -5033,7 +4236,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/mgc/old/mgc.Rcheck’ +* using log directory ‘/tmp/workdir/genekitr/old/genekitr.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -5042,13 +4245,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘mgc/DESCRIPTION’ ... OK +* checking for file ‘genekitr/DESCRIPTION’ ... OK ... -* this is package ‘mgc’ version ‘2.0.2’ +* this is package ‘genekitr’ version ‘1.2.8’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘energy’ +Package required but not available: ‘clusterProfiler’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -5060,26 +4263,26 @@ Status: 1 ERROR ``` -# micemd +# GeneralizedUmatrixGPU
-* Version: 1.10.1 +* Version: 0.1.14 * GitHub: NA -* Source code: https://github.com/cran/micemd -* Date/Publication: 2025-08-27 15:10:02 UTC -* Number of recursive dependencies: 170 +* Source code: https://github.com/cran/GeneralizedUmatrixGPU +* Date/Publication: 2026-01-27 15:30:02 UTC +* Number of recursive dependencies: 85 -Run `revdepcheck::cloud_details(, "micemd")` for more info +Run `revdepcheck::cloud_details(, "GeneralizedUmatrixGPU")` for more info
## In both -* checking whether package ‘micemd’ can be installed ... ERROR +* checking whether package ‘GeneralizedUmatrixGPU’ can be installed ... ERROR ``` Installation failed. - See ‘/tmp/workdir/micemd/new/micemd.Rcheck/00install.out’ for details. + See ‘/tmp/workdir/GeneralizedUmatrixGPU/new/GeneralizedUmatrixGPU.Rcheck/00install.out’ for details. ``` ## Installation @@ -5087,50 +4290,64 @@ Run `revdepcheck::cloud_details(, "micemd")` for more info ### Devel ``` -* installing *source* package ‘micemd’ ... -** package ‘micemd’ successfully unpacked and MD5 sums checked +* installing *source* package ‘GeneralizedUmatrixGPU’ ... +** package ‘GeneralizedUmatrixGPU’ successfully unpacked and MD5 sums checked ** using staged installation -** R -** data -** byte-compile and prepare package for lazy loading -Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : - there is no package called ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘micemd’ -* removing ‘/tmp/workdir/micemd/new/micemd.Rcheck/micemd’ +configure: building makevars +System detected: Linux +End of configure +** libs +using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +using C++17 +g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/tmp/r-deps/Rcpp/include' -I'/tmp/r-deps/RcppArmadillo/include' -I'/tmp/r-deps/RcppParallel/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o +g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/tmp/r-deps/Rcpp/include' -I'/tmp/r-deps/RcppArmadillo/include' -I'/tmp/r-deps/RcppParallel/include' -I/usr/local/include -fpic -g -O2 -c trainSESOM.cpp -o trainSESOM.o +In file included from trainSESOM.cpp:2: +ocl.h:9:10: fatal error: CL/cl.h: No such file or directory + 9 | #include + | ^~~~~~~~~ +compilation terminated. +make: *** [/opt/R/4.4.0/lib/R/etc/Makeconf:204: trainSESOM.o] Error 1 +ERROR: compilation failed for package ‘GeneralizedUmatrixGPU’ +* removing ‘/tmp/workdir/GeneralizedUmatrixGPU/new/GeneralizedUmatrixGPU.Rcheck/GeneralizedUmatrixGPU’ ``` ### CRAN ``` -* installing *source* package ‘micemd’ ... -** package ‘micemd’ successfully unpacked and MD5 sums checked +* installing *source* package ‘GeneralizedUmatrixGPU’ ... +** package ‘GeneralizedUmatrixGPU’ successfully unpacked and MD5 sums checked ** using staged installation -** R -** data -** byte-compile and prepare package for lazy loading -Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : - there is no package called ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘micemd’ -* removing ‘/tmp/workdir/micemd/old/micemd.Rcheck/micemd’ +configure: building makevars +System detected: Linux +End of configure +** libs +using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +using C++17 +g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/tmp/r-deps/Rcpp/include' -I'/tmp/r-deps/RcppArmadillo/include' -I'/tmp/r-deps/RcppParallel/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o +g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/tmp/r-deps/Rcpp/include' -I'/tmp/r-deps/RcppArmadillo/include' -I'/tmp/r-deps/RcppParallel/include' -I/usr/local/include -fpic -g -O2 -c trainSESOM.cpp -o trainSESOM.o +In file included from trainSESOM.cpp:2: +ocl.h:9:10: fatal error: CL/cl.h: No such file or directory + 9 | #include + | ^~~~~~~~~ +compilation terminated. +make: *** [/opt/R/4.4.0/lib/R/etc/Makeconf:204: trainSESOM.o] Error 1 +ERROR: compilation failed for package ‘GeneralizedUmatrixGPU’ +* removing ‘/tmp/workdir/GeneralizedUmatrixGPU/old/GeneralizedUmatrixGPU.Rcheck/GeneralizedUmatrixGPU’ ``` -# MiscMetabar +# ggpicrust2
-* Version: 0.14.4 -* GitHub: https://github.com/adrientaudiere/MiscMetabar -* Source code: https://github.com/cran/MiscMetabar -* Date/Publication: 2025-09-30 15:30:02 UTC -* Number of recursive dependencies: 431 +* Version: 2.5.12 +* GitHub: https://github.com/cafferychen777/ggpicrust2 +* Source code: https://github.com/cran/ggpicrust2 +* Date/Publication: 2026-04-10 11:30:09 UTC +* Number of recursive dependencies: 309 -Run `revdepcheck::cloud_details(, "MiscMetabar")` for more info +Run `revdepcheck::cloud_details(, "ggpicrust2")` for more info
@@ -5139,7 +4356,7 @@ Run `revdepcheck::cloud_details(, "MiscMetabar")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/MiscMetabar/new/MiscMetabar.Rcheck’ +* using log directory ‘/tmp/workdir/ggpicrust2/new/ggpicrust2.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -5148,18 +4365,18 @@ Run `revdepcheck::cloud_details(, "MiscMetabar")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘MiscMetabar/DESCRIPTION’ ... OK +* checking for file ‘ggpicrust2/DESCRIPTION’ ... OK ... +* checking files in ‘vignettes’ ... OK * checking examples ... OK * checking for unstated dependencies in ‘tests’ ... OK * checking tests ... OK - Running ‘spelling.R’ Running ‘testthat.R’ * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * DONE -Status: 3 NOTEs +Status: 2 NOTEs @@ -5169,7 +4386,7 @@ Status: 3 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/MiscMetabar/old/MiscMetabar.Rcheck’ +* using log directory ‘/tmp/workdir/ggpicrust2/old/ggpicrust2.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -5178,107 +4395,70 @@ Status: 3 NOTEs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘MiscMetabar/DESCRIPTION’ ... OK +* checking for file ‘ggpicrust2/DESCRIPTION’ ... OK ... +* checking files in ‘vignettes’ ... OK * checking examples ... OK * checking for unstated dependencies in ‘tests’ ... OK * checking tests ... OK - Running ‘spelling.R’ Running ‘testthat.R’ * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * DONE -Status: 3 NOTEs +Status: 2 NOTEs ``` -# MixedIndTests +# ggrefine
-* Version: 1.2.0 +* Version: NA * GitHub: NA -* Source code: https://github.com/cran/MixedIndTests -* Date/Publication: 2024-02-14 00:04:09 UTC -* Number of recursive dependencies: 39 +* Source code: https://github.com/cran/ggrefine +* Number of recursive dependencies: 26 -Run `revdepcheck::cloud_details(, "MixedIndTests")` for more info +Run `revdepcheck::cloud_details(, "ggrefine")` for more info
-## In both - -* checking whether package ‘MixedIndTests’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/MixedIndTests/new/MixedIndTests.Rcheck/00install.out’ for details. - ``` - -## Installation +## Error before installation ### Devel ``` -* installing *source* package ‘MixedIndTests’ ... -** package ‘MixedIndTests’ successfully unpacked and MD5 sums checked -** using staged installation -** libs -using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c ind_functionsR.c -o ind_functionsR.o -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c registerDynamicSymbol.c -o registerDynamicSymbol.o -gcc -shared -L/opt/R/4.4.0/lib/R/lib -L/usr/local/lib -o MixedIndTests.so ind_functionsR.o registerDynamicSymbol.o -L/opt/R/4.4.0/lib/R/lib -lR -installing to /tmp/workdir/MixedIndTests/new/MixedIndTests.Rcheck/00LOCK-MixedIndTests/00new/MixedIndTests/libs -** R -** data -*** moving datasets to lazyload DB -** byte-compile and prepare package for lazy loading -Error: package or namespace load failed for ‘copula’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]): - there is no package called ‘gsl’ -Execution halted -ERROR: lazy loading failed for package ‘MixedIndTests’ -* removing ‘/tmp/workdir/MixedIndTests/new/MixedIndTests.Rcheck/MixedIndTests’ + + + + ``` ### CRAN ``` -* installing *source* package ‘MixedIndTests’ ... -** package ‘MixedIndTests’ successfully unpacked and MD5 sums checked -** using staged installation -** libs -using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c ind_functionsR.c -o ind_functionsR.o -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c registerDynamicSymbol.c -o registerDynamicSymbol.o -gcc -shared -L/opt/R/4.4.0/lib/R/lib -L/usr/local/lib -o MixedIndTests.so ind_functionsR.o registerDynamicSymbol.o -L/opt/R/4.4.0/lib/R/lib -lR -installing to /tmp/workdir/MixedIndTests/old/MixedIndTests.Rcheck/00LOCK-MixedIndTests/00new/MixedIndTests/libs -** R -** data -*** moving datasets to lazyload DB -** byte-compile and prepare package for lazy loading -Error: package or namespace load failed for ‘copula’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]): - there is no package called ‘gsl’ -Execution halted -ERROR: lazy loading failed for package ‘MixedIndTests’ -* removing ‘/tmp/workdir/MixedIndTests/old/MixedIndTests.Rcheck/MixedIndTests’ + + + + ``` -# modelbased +# ggsem
-* Version: 0.13.1 -* GitHub: https://github.com/easystats/modelbased -* Source code: https://github.com/cran/modelbased -* Date/Publication: 2025-12-08 16:00:02 UTC -* Number of recursive dependencies: 256 +* Version: 0.9.9 +* GitHub: https://github.com/smin95/ggsem +* Source code: https://github.com/cran/ggsem +* Date/Publication: 2026-01-28 07:40:02 UTC +* Number of recursive dependencies: 228 -Run `revdepcheck::cloud_details(, "modelbased")` for more info +Run `revdepcheck::cloud_details(, "ggsem")` for more info
@@ -5287,7 +4467,7 @@ Run `revdepcheck::cloud_details(, "modelbased")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/modelbased/new/modelbased.Rcheck’ +* using log directory ‘/tmp/workdir/ggsem/new/ggsem.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -5296,18 +4476,18 @@ Run `revdepcheck::cloud_details(, "modelbased")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘modelbased/DESCRIPTION’ ... OK +* checking for file ‘ggsem/DESCRIPTION’ ... OK ... -* checking files in ‘vignettes’ ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK +* this is package ‘ggsem’ version ‘0.9.9’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘semPlot’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 1 NOTE +Status: 1 ERROR @@ -5317,7 +4497,7 @@ Status: 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/modelbased/old/modelbased.Rcheck’ +* using log directory ‘/tmp/workdir/ggsem/old/ggsem.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -5326,35 +4506,35 @@ Status: 1 NOTE * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘modelbased/DESCRIPTION’ ... OK +* checking for file ‘ggsem/DESCRIPTION’ ... OK ... -* checking files in ‘vignettes’ ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK +* this is package ‘ggsem’ version ‘0.9.9’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘semPlot’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 1 NOTE +Status: 1 ERROR ``` -# ModStatR +# GJRM
-* Version: 1.4.1 -* GitHub: https://github.com/fbertran/ModStatR -* Source code: https://github.com/cran/ModStatR -* Date/Publication: 2025-09-12 22:50:26 UTC -* Number of recursive dependencies: 314 +* Version: 0.2-6.8 +* GitHub: NA +* Source code: https://github.com/cran/GJRM +* Date/Publication: 2025-06-23 21:20:02 UTC +* Number of recursive dependencies: 58 -Run `revdepcheck::cloud_details(, "ModStatR")` for more info +Run `revdepcheck::cloud_details(, "GJRM")` for more info
@@ -5363,7 +4543,7 @@ Run `revdepcheck::cloud_details(, "ModStatR")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/ModStatR/new/ModStatR.Rcheck’ +* using log directory ‘/tmp/workdir/GJRM/new/GJRM.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -5372,13 +4552,13 @@ Run `revdepcheck::cloud_details(, "ModStatR")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ModStatR/DESCRIPTION’ ... OK +* checking for file ‘GJRM/DESCRIPTION’ ... OK ... * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘gsl’ +Package required but not available: ‘copula’ -Packages suggested but not available for checking: 'MBESS', 'MVN' +Package which this enhances but not available for checking: ‘sp’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -5393,7 +4573,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/ModStatR/old/ModStatR.Rcheck’ +* using log directory ‘/tmp/workdir/GJRM/old/GJRM.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -5402,13 +4582,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ModStatR/DESCRIPTION’ ... OK +* checking for file ‘GJRM/DESCRIPTION’ ... OK ... * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘gsl’ +Package required but not available: ‘copula’ -Packages suggested but not available for checking: 'MBESS', 'MVN' +Package which this enhances but not available for checking: ‘sp’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -5420,17 +4600,16 @@ Status: 1 ERROR ``` -# mulgar +# gMOIP
-* Version: 1.0.5 -* GitHub: https://github.com/dicook/mulgar -* Source code: https://github.com/cran/mulgar -* Date/Publication: 2025-04-07 02:30:02 UTC -* Number of recursive dependencies: 74 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/gMOIP +* Number of recursive dependencies: 108 -Run `revdepcheck::cloud_details(, "mulgar")` for more info +Run `revdepcheck::cloud_details(, "gMOIP")` for more info
@@ -5439,7 +4618,43 @@ Run `revdepcheck::cloud_details(, "mulgar")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/mulgar/new/mulgar.Rcheck’ + + + + + + +``` +### CRAN + +``` + + + + + + +``` +# grandR + +
+ +* Version: 0.2.7 +* GitHub: https://github.com/erhard-lab/grandR +* Source code: https://github.com/cran/grandR +* Date/Publication: 2026-01-14 11:10:02 UTC +* Number of recursive dependencies: 250 + +Run `revdepcheck::cloud_details(, "grandR")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/grandR/new/grandR.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -5448,18 +4663,18 @@ Run `revdepcheck::cloud_details(, "mulgar")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘mulgar/DESCRIPTION’ ... OK +* checking for file ‘grandR/DESCRIPTION’ ... 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 LazyData ... OK -* checking data for ASCII and uncompressed saves ... OK +* checking line endings in C/C++/Fortran sources/headers ... OK +* checking compiled code ... 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 ... OK +* checking re-building of vignette outputs ... OK * DONE -Status: OK +Status: 2 NOTEs @@ -5469,7 +4684,7 @@ Status: OK ### CRAN ``` -* using log directory ‘/tmp/workdir/mulgar/old/mulgar.Rcheck’ +* using log directory ‘/tmp/workdir/grandR/old/grandR.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -5478,35 +4693,35 @@ Status: OK * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘mulgar/DESCRIPTION’ ... OK +* checking for file ‘grandR/DESCRIPTION’ ... 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 LazyData ... OK -* checking data for ASCII and uncompressed saves ... OK +* checking line endings in C/C++/Fortran sources/headers ... OK +* checking compiled code ... 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 ... OK +* checking re-building of vignette outputs ... OK * DONE -Status: OK +Status: 2 NOTEs ``` -# MVN +# gratia
-* Version: 6.3 -* GitHub: https://github.com/selcukorkmaz/MVN -* Source code: https://github.com/cran/MVN -* Date/Publication: 2026-01-13 06:10:41 UTC -* Number of recursive dependencies: 164 +* Version: 0.11.2 +* GitHub: https://github.com/gavinsimpson/gratia +* Source code: https://github.com/cran/gratia +* Date/Publication: 2026-02-07 06:10:36 UTC +* Number of recursive dependencies: 176 -Run `revdepcheck::cloud_details(, "MVN")` for more info +Run `revdepcheck::cloud_details(, "gratia")` for more info
@@ -5515,7 +4730,7 @@ Run `revdepcheck::cloud_details(, "MVN")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/MVN/new/MVN.Rcheck’ +* using log directory ‘/tmp/workdir/gratia/new/gratia.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -5524,16 +4739,16 @@ Run `revdepcheck::cloud_details(, "MVN")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘MVN/DESCRIPTION’ ... OK +* checking for file ‘gratia/DESCRIPTION’ ... OK ... -* this is package ‘MVN’ version ‘6.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘energy’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. + 'soap-films/draw-smooth-estimates-so-soap-film-bndry.svg', and + 'soap-films/draw-smooth-estimates-so-soap-film.svg' + Error: + ! Test failures. + Execution halted +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK * DONE Status: 1 ERROR @@ -5545,7 +4760,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/MVN/old/MVN.Rcheck’ +* using log directory ‘/tmp/workdir/gratia/old/gratia.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -5554,16 +4769,16 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘MVN/DESCRIPTION’ ... OK +* checking for file ‘gratia/DESCRIPTION’ ... OK ... -* this is package ‘MVN’ version ‘6.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘energy’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. + 'soap-films/draw-smooth-estimates-so-soap-film-bndry.svg', and + 'soap-films/draw-smooth-estimates-so-soap-film.svg' + Error: + ! Test failures. + Execution halted +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK * DONE Status: 1 ERROR @@ -5572,17 +4787,75 @@ Status: 1 ERROR ``` -# neatStats +# GRIDCOPULA + +
+ +* Version: 1.1.0 +* GitHub: NA +* Source code: https://github.com/cran/GRIDCOPULA +* Date/Publication: 2025-09-13 22:40:12 UTC +* Number of recursive dependencies: 44 + +Run `revdepcheck::cloud_details(, "GRIDCOPULA")` for more info + +
+ +## In both + +* checking whether package ‘GRIDCOPULA’ can be installed ... ERROR + ``` + Installation failed. + See ‘/tmp/workdir/GRIDCOPULA/new/GRIDCOPULA.Rcheck/00install.out’ for details. + ``` + +## Installation + +### Devel + +``` +* installing *source* package ‘GRIDCOPULA’ ... +** package ‘GRIDCOPULA’ successfully unpacked and MD5 sums checked +** using staged installation +** R +** byte-compile and prepare package for lazy loading +Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : + there is no package called ‘gsl’ +Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: lazy loading failed for package ‘GRIDCOPULA’ +* removing ‘/tmp/workdir/GRIDCOPULA/new/GRIDCOPULA.Rcheck/GRIDCOPULA’ + + +``` +### CRAN + +``` +* installing *source* package ‘GRIDCOPULA’ ... +** package ‘GRIDCOPULA’ successfully unpacked and MD5 sums checked +** using staged installation +** R +** byte-compile and prepare package for lazy loading +Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : + there is no package called ‘gsl’ +Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: lazy loading failed for package ‘GRIDCOPULA’ +* removing ‘/tmp/workdir/GRIDCOPULA/old/GRIDCOPULA.Rcheck/GRIDCOPULA’ + + +``` +# harbinger
-* Version: 1.13.5 -* GitHub: https://github.com/gasparl/neatstats -* Source code: https://github.com/cran/neatStats -* Date/Publication: 2025-08-21 08:30:02 UTC -* Number of recursive dependencies: 143 +* Version: 1.2.767 +* GitHub: https://github.com/cefet-rj-dal/harbinger +* Source code: https://github.com/cran/harbinger +* Date/Publication: 2026-02-11 01:20:02 UTC +* Number of recursive dependencies: 189 -Run `revdepcheck::cloud_details(, "neatStats")` for more info +Run `revdepcheck::cloud_details(, "harbinger")` for more info
@@ -5591,7 +4864,7 @@ Run `revdepcheck::cloud_details(, "neatStats")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/neatStats/new/neatStats.Rcheck’ +* using log directory ‘/tmp/workdir/harbinger/new/harbinger.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -5600,13 +4873,13 @@ Run `revdepcheck::cloud_details(, "neatStats")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘neatStats/DESCRIPTION’ ... OK +* checking for file ‘harbinger/DESCRIPTION’ ... OK ... -* this is package ‘neatStats’ version ‘1.13.5’ +* this is package ‘harbinger’ version ‘1.2.767’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘MBESS’ +Packages required but not available: 'tspredit', 'daltoolbox' See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -5621,7 +4894,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/neatStats/old/neatStats.Rcheck’ +* using log directory ‘/tmp/workdir/harbinger/old/harbinger.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -5630,13 +4903,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘neatStats/DESCRIPTION’ ... OK +* checking for file ‘harbinger/DESCRIPTION’ ... OK ... -* this is package ‘neatStats’ version ‘1.13.5’ +* this is package ‘harbinger’ version ‘1.2.767’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘MBESS’ +Packages required but not available: 'tspredit', 'daltoolbox' See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -5648,17 +4921,17 @@ Status: 1 ERROR ``` -# negligible +# hbsaems
-* Version: 0.1.11 -* GitHub: NA -* Source code: https://github.com/cran/negligible -* Date/Publication: 2026-01-08 20:20:02 UTC -* Number of recursive dependencies: 110 +* Version: 0.1.1 +* GitHub: https://github.com/madsyair/hbsaems +* Source code: https://github.com/cran/hbsaems +* Date/Publication: 2025-07-18 14:40:02 UTC +* Number of recursive dependencies: 178 -Run `revdepcheck::cloud_details(, "negligible")` for more info +Run `revdepcheck::cloud_details(, "hbsaems")` for more info
@@ -5667,7 +4940,7 @@ Run `revdepcheck::cloud_details(, "negligible")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/negligible/new/negligible.Rcheck’ +* using log directory ‘/tmp/workdir/hbsaems/new/hbsaems.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -5676,13 +4949,13 @@ Run `revdepcheck::cloud_details(, "negligible")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘negligible/DESCRIPTION’ ... OK +* checking for file ‘hbsaems/DESCRIPTION’ ... OK ... -* this is package ‘negligible’ version ‘0.1.11’ +* this is package ‘hbsaems’ version ‘0.1.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘MBESS’ +Package required but not available: ‘energy’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -5697,7 +4970,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/negligible/old/negligible.Rcheck’ +* using log directory ‘/tmp/workdir/hbsaems/old/hbsaems.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -5706,13 +4979,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘negligible/DESCRIPTION’ ... OK +* checking for file ‘hbsaems/DESCRIPTION’ ... OK ... -* this is package ‘negligible’ version ‘0.1.11’ +* this is package ‘hbsaems’ version ‘0.1.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘MBESS’ +Package required but not available: ‘energy’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -5724,17 +4997,17 @@ Status: 1 ERROR ``` -# numbat +# heimdall
-* Version: 1.5.1 -* GitHub: https://github.com/kharchenkolab/numbat -* Source code: https://github.com/cran/numbat -* Date/Publication: 2025-10-21 17:00:02 UTC -* Number of recursive dependencies: 0 +* Version: 1.2.727 +* GitHub: https://github.com/cefet-rj-dal/heimdall +* Source code: https://github.com/cran/heimdall +* Date/Publication: 2026-03-10 18:40:02 UTC +* Number of recursive dependencies: 122 -Run `revdepcheck::cloud_details(, "numbat")` for more info +Run `revdepcheck::cloud_details(, "heimdall")` for more info
@@ -5743,7 +5016,7 @@ Run `revdepcheck::cloud_details(, "numbat")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/numbat/new/numbat.Rcheck’ +* using log directory ‘/tmp/workdir/heimdall/new/heimdall.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -5752,13 +5025,13 @@ Run `revdepcheck::cloud_details(, "numbat")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘numbat/DESCRIPTION’ ... OK +* checking for file ‘heimdall/DESCRIPTION’ ... OK ... -* this is package ‘numbat’ version ‘1.5.1’ +* this is package ‘heimdall’ version ‘1.2.727’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'ggtree', 'scistreer' +Package required but not available: ‘daltoolbox’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -5773,7 +5046,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/numbat/old/numbat.Rcheck’ +* using log directory ‘/tmp/workdir/heimdall/old/heimdall.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -5782,13 +5055,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘numbat/DESCRIPTION’ ... OK +* checking for file ‘heimdall/DESCRIPTION’ ... OK ... -* this is package ‘numbat’ version ‘1.5.1’ +* this is package ‘heimdall’ version ‘1.2.727’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'ggtree', 'scistreer' +Package required but not available: ‘daltoolbox’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -5800,17 +5073,16 @@ Status: 1 ERROR ``` -# OlinkAnalyze +# hpa
-* Version: 4.4.0 -* GitHub: https://github.com/Olink-Proteomics/OlinkRPackage -* Source code: https://github.com/cran/OlinkAnalyze -* Date/Publication: 2025-12-02 15:20:07 UTC -* Number of recursive dependencies: 227 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/hpa +* Number of recursive dependencies: 84 -Run `revdepcheck::cloud_details(, "OlinkAnalyze")` for more info +Run `revdepcheck::cloud_details(, "hpa")` for more info
@@ -5819,27 +5091,7 @@ Run `revdepcheck::cloud_details(, "OlinkAnalyze")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/OlinkAnalyze/new/OlinkAnalyze.Rcheck’ -* using R version 4.4.0 (2024-04-24) -* using platform: x86_64-pc-linux-gnu -* R was compiled by - gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 - GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 -* running under: Ubuntu 24.04.3 LTS -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘OlinkAnalyze/DESCRIPTION’ ... OK -... - - [ FAIL 1 | WARN 0 | SKIP 41 | PASS 565 ] - Error: - ! Test failures. - Execution halted -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 ERROR, 1 NOTE + @@ -5849,44 +5101,24 @@ Status: 1 ERROR, 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/OlinkAnalyze/old/OlinkAnalyze.Rcheck’ -* using R version 4.4.0 (2024-04-24) -* using platform: x86_64-pc-linux-gnu -* R was compiled by - gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 - GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 -* running under: Ubuntu 24.04.3 LTS -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘OlinkAnalyze/DESCRIPTION’ ... OK -... - - [ FAIL 1 | WARN 0 | SKIP 41 | PASS 565 ] - Error: - ! Test failures. - Execution halted -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK -* DONE -Status: 1 ERROR, 1 NOTE + ``` -# OpenMx +# IndGenErrors
-* Version: 2.22.10 -* GitHub: https://github.com/OpenMx/OpenMx -* Source code: https://github.com/cran/OpenMx -* Date/Publication: 2025-11-07 16:00:02 UTC -* Number of recursive dependencies: 151 +* Version: 0.1.6 +* GitHub: NA +* Source code: https://github.com/cran/IndGenErrors +* Date/Publication: 2025-01-31 14:30:04 UTC +* Number of recursive dependencies: 41 -Run `revdepcheck::cloud_details(, "OpenMx")` for more info +Run `revdepcheck::cloud_details(, "IndGenErrors")` for more info
@@ -5895,7 +5127,7 @@ Run `revdepcheck::cloud_details(, "OpenMx")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/OpenMx/new/OpenMx.Rcheck’ +* using log directory ‘/tmp/workdir/IndGenErrors/new/IndGenErrors.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -5904,18 +5136,18 @@ Run `revdepcheck::cloud_details(, "OpenMx")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘OpenMx/DESCRIPTION’ ... OK +* checking for file ‘IndGenErrors/DESCRIPTION’ ... 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 ‘OpenMx’ can be installed ... ERROR +* checking whether package ‘IndGenErrors’ can be installed ... ERROR Installation failed. -See ‘/tmp/workdir/OpenMx/new/OpenMx.Rcheck/00install.out’ for details. +See ‘/tmp/workdir/IndGenErrors/new/IndGenErrors.Rcheck/00install.out’ for details. * DONE -Status: 1 ERROR, 1 NOTE +Status: 1 ERROR @@ -5925,7 +5157,7 @@ Status: 1 ERROR, 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/OpenMx/old/OpenMx.Rcheck’ +* using log directory ‘/tmp/workdir/IndGenErrors/old/IndGenErrors.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -5934,161 +5166,35 @@ Status: 1 ERROR, 1 NOTE * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘OpenMx/DESCRIPTION’ ... OK +* checking for file ‘IndGenErrors/DESCRIPTION’ ... 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 ‘OpenMx’ can be installed ... ERROR +* checking whether package ‘IndGenErrors’ can be installed ... ERROR Installation failed. -See ‘/tmp/workdir/OpenMx/old/OpenMx.Rcheck/00install.out’ for details. +See ‘/tmp/workdir/IndGenErrors/old/IndGenErrors.Rcheck/00install.out’ for details. * DONE -Status: 1 ERROR, 1 NOTE - - - - - -``` -# opGMMassessment - -
- -* Version: 0.4 -* GitHub: NA -* Source code: https://github.com/cran/opGMMassessment -* Date/Publication: 2024-04-14 17:10:02 UTC -* Number of recursive dependencies: 121 - -Run `revdepcheck::cloud_details(, "opGMMassessment")` for more info - -
- -## In both - -* checking whether package ‘opGMMassessment’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/opGMMassessment/new/opGMMassessment.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘opGMMassessment’ ... -** package ‘opGMMassessment’ 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 ‘colorspace’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘opGMMassessment’ -* removing ‘/tmp/workdir/opGMMassessment/new/opGMMassessment.Rcheck/opGMMassessment’ - - -``` -### CRAN - -``` -* installing *source* package ‘opGMMassessment’ ... -** package ‘opGMMassessment’ 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 ‘colorspace’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘opGMMassessment’ -* removing ‘/tmp/workdir/opGMMassessment/old/opGMMassessment.Rcheck/opGMMassessment’ - - -``` -# outstandR - -
- -* Version: 1.0.0 -* GitHub: https://github.com/StatisticsHealthEconomics/outstandR -* Source code: https://github.com/cran/outstandR -* Date/Publication: 2026-01-21 20:00:02 UTC -* Number of recursive dependencies: 152 - -Run `revdepcheck::cloud_details(, "outstandR")` for more info - -
- -## In both - -* checking whether package ‘outstandR’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/outstandR/new/outstandR.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘outstandR’ ... -** package ‘outstandR’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** data -** inst -** byte-compile and prepare package for lazy loading -Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : - there is no package called ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘outstandR’ -* removing ‘/tmp/workdir/outstandR/new/outstandR.Rcheck/outstandR’ +Status: 1 ERROR -``` -### CRAN -``` -* installing *source* package ‘outstandR’ ... -** package ‘outstandR’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** data -** inst -** byte-compile and prepare package for lazy loading -Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : - there is no package called ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘outstandR’ -* removing ‘/tmp/workdir/outstandR/old/outstandR.Rcheck/outstandR’ ``` -# pandemonium +# ivolcano
-* Version: 0.2.4 -* GitHub: NA -* Source code: https://github.com/cran/pandemonium -* Date/Publication: 2025-11-03 08:30:02 UTC -* Number of recursive dependencies: 218 +* Version: 0.0.5 +* GitHub: https://github.com/YuLab-SMU/ivolcano +* Source code: https://github.com/cran/ivolcano +* Date/Publication: 2026-02-14 19:20:02 UTC +* Number of recursive dependencies: 140 -Run `revdepcheck::cloud_details(, "pandemonium")` for more info +Run `revdepcheck::cloud_details(, "ivolcano")` for more info
@@ -6097,7 +5203,7 @@ Run `revdepcheck::cloud_details(, "pandemonium")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/pandemonium/new/pandemonium.Rcheck’ +* using log directory ‘/tmp/workdir/ivolcano/new/ivolcano.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -6106,18 +5212,18 @@ Run `revdepcheck::cloud_details(, "pandemonium")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘pandemonium/DESCRIPTION’ ... OK +* checking for file ‘ivolcano/DESCRIPTION’ ... OK ... +* checking Rd contents ... OK +* checking for unstated dependencies in examples ... OK +* checking installed files from ‘inst/doc’ ... OK * checking files in ‘vignettes’ ... OK * checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * DONE -Status: OK +Status: 2 NOTEs @@ -6127,7 +5233,7 @@ Status: OK ### CRAN ``` -* using log directory ‘/tmp/workdir/pandemonium/old/pandemonium.Rcheck’ +* using log directory ‘/tmp/workdir/ivolcano/old/ivolcano.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -6136,35 +5242,35 @@ Status: OK * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘pandemonium/DESCRIPTION’ ... OK +* checking for file ‘ivolcano/DESCRIPTION’ ... OK ... +* checking Rd contents ... OK +* checking for unstated dependencies in examples ... OK +* checking installed files from ‘inst/doc’ ... OK * checking files in ‘vignettes’ ... OK * checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * DONE -Status: OK +Status: 2 NOTEs ``` -# parameters +# jmv
-* Version: 0.28.3 -* GitHub: https://github.com/easystats/parameters -* Source code: https://github.com/cran/parameters -* Date/Publication: 2025-11-25 11:10:02 UTC -* Number of recursive dependencies: 475 +* Version: 2.7.7 +* GitHub: https://github.com/jamovi/jmv +* Source code: https://github.com/cran/jmv +* Date/Publication: 2025-09-18 00:40:02 UTC +* Number of recursive dependencies: 207 -Run `revdepcheck::cloud_details(, "parameters")` for more info +Run `revdepcheck::cloud_details(, "jmv")` for more info
@@ -6173,7 +5279,7 @@ Run `revdepcheck::cloud_details(, "parameters")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/parameters/new/parameters.Rcheck’ +* using log directory ‘/tmp/workdir/jmv/new/jmv.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -6182,18 +5288,18 @@ Run `revdepcheck::cloud_details(, "parameters")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘parameters/DESCRIPTION’ ... OK +* checking for file ‘jmv/DESCRIPTION’ ... OK ... -* checking files in ‘vignettes’ ... 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 for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK * DONE -Status: 2 NOTEs +Status: 3 NOTEs @@ -6203,7 +5309,7 @@ Status: 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/parameters/old/parameters.Rcheck’ +* using log directory ‘/tmp/workdir/jmv/old/jmv.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -6212,34 +5318,35 @@ Status: 2 NOTEs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘parameters/DESCRIPTION’ ... OK +* checking for file ‘jmv/DESCRIPTION’ ... OK ... -* checking files in ‘vignettes’ ... 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 for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK * DONE -Status: 2 NOTEs +Status: 3 NOTEs ``` -# paths +# latentFactoR
-* Version: NA +* Version: 0.0.7 * GitHub: NA -* Source code: https://github.com/cran/paths -* Number of recursive dependencies: 94 +* Source code: https://github.com/cran/latentFactoR +* Date/Publication: 2025-11-03 11:20:02 UTC +* Number of recursive dependencies: 182 -Run `revdepcheck::cloud_details(, "paths")` for more info +Run `revdepcheck::cloud_details(, "latentFactoR")` for more info
@@ -6248,34 +5355,74 @@ Run `revdepcheck::cloud_details(, "paths")` for more info ### Devel ``` +* using log directory ‘/tmp/workdir/latentFactoR/new/latentFactoR.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘latentFactoR/DESCRIPTION’ ... OK +... +* this is package ‘latentFactoR’ version ‘0.0.7’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘EGAnet’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + - - - - - ``` ### CRAN ``` +* using log directory ‘/tmp/workdir/latentFactoR/old/latentFactoR.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘latentFactoR/DESCRIPTION’ ... OK +... +* this is package ‘latentFactoR’ version ‘0.0.7’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘EGAnet’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR ``` -# pctax +# lcsm
-* Version: 0.1.3 -* GitHub: https://github.com/Asa12138/pctax -* Source code: https://github.com/cran/pctax -* Date/Publication: 2024-12-02 10:00:02 UTC -* Number of recursive dependencies: 264 +* Version: 0.3.2 +* GitHub: https://github.com/milanwiedemann/lcsm +* Source code: https://github.com/cran/lcsm +* Date/Publication: 2023-02-25 23:40:02 UTC +* Number of recursive dependencies: 137 -Run `revdepcheck::cloud_details(, "pctax")` for more info +Run `revdepcheck::cloud_details(, "lcsm")` for more info
@@ -6284,7 +5431,7 @@ Run `revdepcheck::cloud_details(, "pctax")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/pctax/new/pctax.Rcheck’ +* using log directory ‘/tmp/workdir/lcsm/new/lcsm.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -6293,18 +5440,18 @@ Run `revdepcheck::cloud_details(, "pctax")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘pctax/DESCRIPTION’ ... OK +* checking for file ‘lcsm/DESCRIPTION’ ... OK ... -* checking LazyData ... OK -* checking data for ASCII and uncompressed saves ... 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 ... OK -* checking re-building of vignette outputs ... OK +* this is package ‘lcsm’ version ‘0.3.2’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘semPlot’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 3 NOTEs +Status: 1 ERROR @@ -6314,7 +5461,7 @@ Status: 3 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/pctax/old/pctax.Rcheck’ +* using log directory ‘/tmp/workdir/lcsm/old/lcsm.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -6323,35 +5470,35 @@ Status: 3 NOTEs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘pctax/DESCRIPTION’ ... OK +* checking for file ‘lcsm/DESCRIPTION’ ... OK ... -* checking LazyData ... OK -* checking data for ASCII and uncompressed saves ... 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 ... OK -* checking re-building of vignette outputs ... OK +* this is package ‘lcsm’ version ‘0.3.2’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘semPlot’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 3 NOTEs +Status: 1 ERROR ``` -# pcutils +# linkspotter
-* Version: 0.2.8 -* GitHub: https://github.com/Asa12138/pcutils -* Source code: https://github.com/cran/pcutils -* Date/Publication: 2025-03-27 06:10:02 UTC -* Number of recursive dependencies: 321 +* Version: 1.3.0 +* GitHub: https://github.com/sambaala/linkspotter +* Source code: https://github.com/cran/linkspotter +* Date/Publication: 2020-07-23 10:40:02 UTC +* Number of recursive dependencies: 75 -Run `revdepcheck::cloud_details(, "pcutils")` for more info +Run `revdepcheck::cloud_details(, "linkspotter")` for more info
@@ -6360,7 +5507,7 @@ Run `revdepcheck::cloud_details(, "pcutils")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/pcutils/new/pcutils.Rcheck’ +* using log directory ‘/tmp/workdir/linkspotter/new/linkspotter.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -6369,18 +5516,18 @@ Run `revdepcheck::cloud_details(, "pcutils")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘pcutils/DESCRIPTION’ ... OK +* checking for file ‘linkspotter/DESCRIPTION’ ... OK ... -* 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 +* this is package ‘linkspotter’ version ‘1.3.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘energy’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 1 NOTE +Status: 1 ERROR @@ -6390,7 +5537,7 @@ Status: 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/pcutils/old/pcutils.Rcheck’ +* using log directory ‘/tmp/workdir/linkspotter/old/linkspotter.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -6399,35 +5546,35 @@ Status: 1 NOTE * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘pcutils/DESCRIPTION’ ... OK +* checking for file ‘linkspotter/DESCRIPTION’ ... OK ... -* 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 +* this is package ‘linkspotter’ version ‘1.3.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘energy’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 1 NOTE +Status: 1 ERROR ``` -# phylosem +# lionfish
-* Version: 1.1.4 -* GitHub: https://github.com/James-Thorson-NOAA/phylosem -* Source code: https://github.com/cran/phylosem -* Date/Publication: 2024-04-02 21:15:03 UTC -* Number of recursive dependencies: 226 +* Version: 1.0.27 +* GitHub: NA +* Source code: https://github.com/cran/lionfish +* Date/Publication: 2025-03-13 20:50:02 UTC +* Number of recursive dependencies: 152 -Run `revdepcheck::cloud_details(, "phylosem")` for more info +Run `revdepcheck::cloud_details(, "lionfish")` for more info
@@ -6436,7 +5583,7 @@ Run `revdepcheck::cloud_details(, "phylosem")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/phylosem/new/phylosem.Rcheck’ +* using log directory ‘/tmp/workdir/lionfish/new/lionfish.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -6445,18 +5592,18 @@ Run `revdepcheck::cloud_details(, "phylosem")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘phylosem/DESCRIPTION’ ... OK +* checking for file ‘lionfish/DESCRIPTION’ ... OK ... +* checking LazyData ... OK +* checking data for ASCII and uncompressed saves ... OK +* checking installed files from ‘inst/doc’ ... OK * checking files in ‘vignettes’ ... OK * checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * DONE -Status: 2 NOTEs +Status: OK @@ -6466,7 +5613,7 @@ Status: 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/phylosem/old/phylosem.Rcheck’ +* using log directory ‘/tmp/workdir/lionfish/old/lionfish.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -6475,34 +5622,35 @@ Status: 2 NOTEs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘phylosem/DESCRIPTION’ ... OK +* checking for file ‘lionfish/DESCRIPTION’ ... OK ... +* checking LazyData ... OK +* checking data for ASCII and uncompressed saves ... OK +* checking installed files from ‘inst/doc’ ... OK * checking files in ‘vignettes’ ... OK * checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * DONE -Status: 2 NOTEs +Status: OK ``` -# plot3logit +# LMMstar
-* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/plot3logit -* Number of recursive dependencies: 107 +* Version: 1.1.0 +* GitHub: https://github.com/bozenne/LMMstar +* Source code: https://github.com/cran/LMMstar +* Date/Publication: 2024-05-12 21:43:11 UTC +* Number of recursive dependencies: 170 -Run `revdepcheck::cloud_details(, "plot3logit")` for more info +Run `revdepcheck::cloud_details(, "LMMstar")` for more info
@@ -6511,7 +5659,27 @@ Run `revdepcheck::cloud_details(, "plot3logit")` for more info ### Devel ``` +* using log directory ‘/tmp/workdir/LMMstar/new/LMMstar.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘LMMstar/DESCRIPTION’ ... OK +... +* this is package ‘LMMstar’ version ‘1.1.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR @@ -6521,24 +5689,44 @@ Run `revdepcheck::cloud_details(, "plot3logit")` for more info ### CRAN ``` +* using log directory ‘/tmp/workdir/LMMstar/old/LMMstar.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘LMMstar/DESCRIPTION’ ... OK +... +* this is package ‘LMMstar’ version ‘1.1.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR ``` -# polarisR +# LongDecompHE
-* Version: 0.1.4 -* GitHub: https://github.com/Divendra2006/polarisR -* Source code: https://github.com/cran/polarisR -* Date/Publication: 2025-09-23 14:10:02 UTC -* Number of recursive dependencies: 145 +* Version: 0.1.0 +* GitHub: NA +* Source code: https://github.com/cran/LongDecompHE +* Date/Publication: 2025-07-03 15:20:02 UTC +* Number of recursive dependencies: 43 -Run `revdepcheck::cloud_details(, "polarisR")` for more info +Run `revdepcheck::cloud_details(, "LongDecompHE")` for more info
@@ -6547,7 +5735,7 @@ Run `revdepcheck::cloud_details(, "polarisR")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/polarisR/new/polarisR.Rcheck’ +* using log directory ‘/tmp/workdir/LongDecompHE/new/LongDecompHE.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -6556,18 +5744,94 @@ Run `revdepcheck::cloud_details(, "polarisR")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘polarisR/DESCRIPTION’ ... OK +* checking for file ‘LongDecompHE/DESCRIPTION’ ... OK ... -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘spelling.R’ +* this is package ‘LongDecompHE’ version ‘0.1.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/LongDecompHE/old/LongDecompHE.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘LongDecompHE/DESCRIPTION’ ... OK +... +* this is package ‘LongDecompHE’ version ‘0.1.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +# manymome + +
+ +* Version: 0.3.4 +* GitHub: https://github.com/sfcheung/manymome +* Source code: https://github.com/cran/manymome +* Date/Publication: 2026-03-26 16:00:10 UTC +* Number of recursive dependencies: 158 + +Run `revdepcheck::cloud_details(, "manymome")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/manymome/new/manymome.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘manymome/DESCRIPTION’ ... OK +... +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK Running ‘testthat.R’ * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * DONE -Status: 1 NOTE +Status: 2 NOTEs @@ -6577,7 +5841,7 @@ Status: 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/polarisR/old/polarisR.Rcheck’ +* using log directory ‘/tmp/workdir/manymome/old/manymome.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -6586,35 +5850,34 @@ Status: 1 NOTE * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘polarisR/DESCRIPTION’ ... OK +* checking for file ‘manymome/DESCRIPTION’ ... OK ... +* checking files in ‘vignettes’ ... OK * checking examples ... OK * checking for unstated dependencies in ‘tests’ ... OK * checking tests ... OK - Running ‘spelling.R’ Running ‘testthat.R’ * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * DONE -Status: 1 NOTE +Status: 2 NOTEs ``` -# predictionInterval +# MBAnalysis
-* Version: 1.0.0 +* Version: NA * GitHub: NA -* Source code: https://github.com/cran/predictionInterval -* Date/Publication: 2016-08-20 15:39:24 -* Number of recursive dependencies: 50 +* Source code: https://github.com/cran/MBAnalysis +* Number of recursive dependencies: 19 -Run `revdepcheck::cloud_details(, "predictionInterval")` for more info +Run `revdepcheck::cloud_details(, "MBAnalysis")` for more info
@@ -6623,7 +5886,43 @@ Run `revdepcheck::cloud_details(, "predictionInterval")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/predictionInterval/new/predictionInterval.Rcheck’ + + + + + + +``` +### CRAN + +``` + + + + + + +``` +# MD2sample + +
+ +* Version: 1.2.0 +* GitHub: NA +* Source code: https://github.com/cran/MD2sample +* Date/Publication: 2026-03-28 06:50:06 UTC +* Number of recursive dependencies: 85 + +Run `revdepcheck::cloud_details(, "MD2sample")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/MD2sample/new/MD2sample.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -6632,13 +5931,13 @@ Run `revdepcheck::cloud_details(, "predictionInterval")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘predictionInterval/DESCRIPTION’ ... OK +* checking for file ‘MD2sample/DESCRIPTION’ ... OK ... -* checking extension type ... Package -* this is package ‘predictionInterval’ version ‘1.0.0’ +* this is package ‘MD2sample’ version ‘1.2.0’ +* package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘MBESS’ +Package required but not available: ‘copula’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -6653,7 +5952,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/predictionInterval/old/predictionInterval.Rcheck’ +* using log directory ‘/tmp/workdir/MD2sample/old/MD2sample.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -6662,13 +5961,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘predictionInterval/DESCRIPTION’ ... OK +* checking for file ‘MD2sample/DESCRIPTION’ ... OK ... -* checking extension type ... Package -* this is package ‘predictionInterval’ version ‘1.0.0’ +* this is package ‘MD2sample’ version ‘1.2.0’ +* package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘MBESS’ +Package required but not available: ‘copula’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -6680,17 +5979,17 @@ Status: 1 ERROR ``` -# projectLSA +# MDgof
-* Version: 0.0.6 -* GitHub: https://github.com/hasandjidu/projectLSA -* Source code: https://github.com/cran/projectLSA -* Date/Publication: 2026-01-16 12:00:06 UTC -* Number of recursive dependencies: 231 +* Version: 1.0.0 +* GitHub: NA +* Source code: https://github.com/cran/MDgof +* Date/Publication: 2026-02-12 20:40:03 UTC +* Number of recursive dependencies: 84 -Run `revdepcheck::cloud_details(, "projectLSA")` for more info +Run `revdepcheck::cloud_details(, "MDgof")` for more info
@@ -6699,7 +5998,7 @@ Run `revdepcheck::cloud_details(, "projectLSA")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/projectLSA/new/projectLSA.Rcheck’ +* using log directory ‘/tmp/workdir/MDgof/new/MDgof.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -6708,13 +6007,13 @@ Run `revdepcheck::cloud_details(, "projectLSA")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘projectLSA/DESCRIPTION’ ... OK +* checking for file ‘MDgof/DESCRIPTION’ ... OK ... -* this is package ‘projectLSA’ version ‘0.0.6’ +* this is package ‘MDgof’ version ‘1.0.0’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘semPlot’ +Packages required but not available: 'copula', 'MD2sample' See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -6729,7 +6028,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/projectLSA/old/projectLSA.Rcheck’ +* using log directory ‘/tmp/workdir/MDgof/old/MDgof.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -6738,13 +6037,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘projectLSA/DESCRIPTION’ ... OK +* checking for file ‘MDgof/DESCRIPTION’ ... OK ... -* this is package ‘projectLSA’ version ‘0.0.6’ +* this is package ‘MDgof’ version ‘1.0.0’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘semPlot’ +Packages required but not available: 'copula', 'MD2sample' See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -6756,17 +6055,17 @@ Status: 1 ERROR ``` -# psychonetrics +# measureR
-* Version: 0.13.2 -* GitHub: https://github.com/SachaEpskamp/psychonetrics -* Source code: https://github.com/cran/psychonetrics -* Date/Publication: 2025-10-22 05:10:02 UTC -* Number of recursive dependencies: 140 +* Version: 0.0.2 +* GitHub: https://github.com/hdmeasure/measureR +* Source code: https://github.com/cran/measureR +* Date/Publication: 2026-02-13 15:10:02 UTC +* Number of recursive dependencies: 221 -Run `revdepcheck::cloud_details(, "psychonetrics")` for more info +Run `revdepcheck::cloud_details(, "measureR")` for more info
@@ -6775,7 +6074,7 @@ Run `revdepcheck::cloud_details(, "psychonetrics")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/psychonetrics/new/psychonetrics.Rcheck’ +* using log directory ‘/tmp/workdir/measureR/new/measureR.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -6784,18 +6083,18 @@ Run `revdepcheck::cloud_details(, "psychonetrics")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘psychonetrics/DESCRIPTION’ ... OK +* checking for file ‘measureR/DESCRIPTION’ ... OK ... -* checking line endings in C/C++/Fortran sources/headers ... OK -* checking line endings in Makefiles ... OK -* checking compilation flags in Makevars ... OK -* checking for GNU extensions in Makefiles ... OK -* checking for portable use of $(BLAS_LIBS) and $(LAPACK_LIBS) ... OK -* checking use of PKG_*FLAGS in Makefiles ... OK -* checking compiled code ... OK -* checking examples ... OK +* this is package ‘measureR’ version ‘0.0.2’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'semPlot', 'semptools' + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 NOTEs +Status: 1 ERROR @@ -6805,7 +6104,7 @@ Status: 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/psychonetrics/old/psychonetrics.Rcheck’ +* using log directory ‘/tmp/workdir/measureR/old/measureR.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -6814,34 +6113,35 @@ Status: 2 NOTEs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘psychonetrics/DESCRIPTION’ ... OK +* checking for file ‘measureR/DESCRIPTION’ ... OK ... -* checking line endings in C/C++/Fortran sources/headers ... OK -* checking line endings in Makefiles ... OK -* checking compilation flags in Makevars ... OK -* checking for GNU extensions in Makefiles ... OK -* checking for portable use of $(BLAS_LIBS) and $(LAPACK_LIBS) ... OK -* checking use of PKG_*FLAGS in Makefiles ... OK -* checking compiled code ... OK -* checking examples ... OK +* this is package ‘measureR’ version ‘0.0.2’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'semPlot', 'semptools' + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 NOTEs +Status: 1 ERROR ``` -# pubh +# metrica
-* Version: NA -* GitHub: NA -* Source code: https://github.com/cran/pubh -* Number of recursive dependencies: 166 +* Version: 2.1.1 +* GitHub: https://github.com/adriancorrendo/metrica +* Source code: https://github.com/cran/metrica +* Date/Publication: 2026-03-18 06:12:46 UTC +* Number of recursive dependencies: 85 -Run `revdepcheck::cloud_details(, "pubh")` for more info +Run `revdepcheck::cloud_details(, "metrica")` for more info
@@ -6850,7 +6150,27 @@ Run `revdepcheck::cloud_details(, "pubh")` for more info ### Devel ``` +* using log directory ‘/tmp/workdir/metrica/new/metrica.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘metrica/DESCRIPTION’ ... OK +... +* this is package ‘metrica’ version ‘2.1.1’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘energy’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR @@ -6860,102 +6180,120 @@ Run `revdepcheck::cloud_details(, "pubh")` for more info ### CRAN ``` +* using log directory ‘/tmp/workdir/metrica/old/metrica.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘metrica/DESCRIPTION’ ... OK +... +* this is package ‘metrica’ version ‘2.1.1’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘energy’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR ``` -# qad +# mgc
-* Version: 1.0.6 -* GitHub: https://github.com/griefl/qad -* Source code: https://github.com/cran/qad -* Date/Publication: 2025-10-01 15:30:02 UTC -* Number of recursive dependencies: 92 +* Version: 2.0.2 +* GitHub: https://github.com/neurodata/r-mgc +* Source code: https://github.com/cran/mgc +* Date/Publication: 2020-06-23 12:50:18 UTC +* Number of recursive dependencies: 66 -Run `revdepcheck::cloud_details(, "qad")` for more info +Run `revdepcheck::cloud_details(, "mgc")` for more info
-## In both - -* checking whether package ‘qad’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/qad/new/qad.Rcheck/00install.out’ for details. - ``` - -## Installation +## Error before installation ### Devel ``` -* installing *source* package ‘qad’ ... -** package ‘qad’ successfully unpacked and MD5 sums checked -** using staged installation -** libs -using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c code.cpp -o code.o -g++ -std=gnu++17 -shared -L/opt/R/4.4.0/lib/R/lib -L/usr/local/lib -o qad.so RcppExports.o code.o -L/opt/R/4.4.0/lib/R/lib -lR -installing to /tmp/workdir/qad/new/qad.Rcheck/00LOCK-qad/00new/qad/libs -** R +* using log directory ‘/tmp/workdir/mgc/new/mgc.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘mgc/DESCRIPTION’ ... OK ... -** 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘qad’ -* removing ‘/tmp/workdir/qad/new/qad.Rcheck/qad’ +* this is package ‘mgc’ version ‘2.0.2’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘energy’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + ``` ### CRAN ``` -* installing *source* package ‘qad’ ... -** package ‘qad’ successfully unpacked and MD5 sums checked -** using staged installation -** libs -using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c RcppExports.cpp -o RcppExports.o -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I/usr/local/include -fpic -g -O2 -c code.cpp -o code.o -g++ -std=gnu++17 -shared -L/opt/R/4.4.0/lib/R/lib -L/usr/local/lib -o qad.so RcppExports.o code.o -L/opt/R/4.4.0/lib/R/lib -lR -installing to /tmp/workdir/qad/old/qad.Rcheck/00LOCK-qad/00new/qad/libs -** R +* using log directory ‘/tmp/workdir/mgc/old/mgc.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘mgc/DESCRIPTION’ ... OK ... -** 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘qad’ -* removing ‘/tmp/workdir/qad/old/qad.Rcheck/qad’ +* this is package ‘mgc’ version ‘2.0.2’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘energy’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + ``` -# QuadratiK +# micemd
-* Version: 1.1.3 -* GitHub: https://github.com/ropensci/QuadratiK -* Source code: https://github.com/cran/QuadratiK -* Date/Publication: 2025-02-04 21:10:02 UTC -* Number of recursive dependencies: 157 +* Version: 1.10.1 +* GitHub: NA +* Source code: https://github.com/cran/micemd +* Date/Publication: 2025-08-27 15:10:02 UTC +* Number of recursive dependencies: 165 -Run `revdepcheck::cloud_details(, "QuadratiK")` for more info +Run `revdepcheck::cloud_details(, "micemd")` for more info
@@ -6964,7 +6302,7 @@ Run `revdepcheck::cloud_details(, "QuadratiK")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/QuadratiK/new/QuadratiK.Rcheck’ +* using log directory ‘/tmp/workdir/micemd/new/micemd.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -6973,18 +6311,18 @@ Run `revdepcheck::cloud_details(, "QuadratiK")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘QuadratiK/DESCRIPTION’ ... OK +* checking for file ‘micemd/DESCRIPTION’ ... OK ... ---- finished re-building ‘wireless_clustering.Rmd’ - -SUMMARY: processing the following file failed: - ‘uniformity.Rmd’ - -Error: Vignette re-building failed. -Execution halted - +* 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 ‘micemd’ can be installed ... ERROR +Installation failed. +See ‘/tmp/workdir/micemd/new/micemd.Rcheck/00install.out’ for details. * DONE -Status: 1 ERROR, 2 NOTEs +Status: 1 ERROR @@ -6994,7 +6332,7 @@ Status: 1 ERROR, 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/QuadratiK/old/QuadratiK.Rcheck’ +* using log directory ‘/tmp/workdir/micemd/old/micemd.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -7003,35 +6341,35 @@ Status: 1 ERROR, 2 NOTEs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘QuadratiK/DESCRIPTION’ ... OK +* checking for file ‘micemd/DESCRIPTION’ ... OK ... ---- finished re-building ‘wireless_clustering.Rmd’ - -SUMMARY: processing the following file failed: - ‘uniformity.Rmd’ - -Error: Vignette re-building failed. -Execution halted - +* 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 ‘micemd’ can be installed ... ERROR +Installation failed. +See ‘/tmp/workdir/micemd/old/micemd.Rcheck/00install.out’ for details. * DONE -Status: 1 ERROR, 2 NOTEs +Status: 1 ERROR ``` -# quollr +# MiscMetabar
-* Version: 1.0.6 -* GitHub: https://github.com/jayanilakshika/quollr -* Source code: https://github.com/cran/quollr -* Date/Publication: 2025-12-18 10:10:02 UTC -* Number of recursive dependencies: 129 +* Version: 0.14.4 +* GitHub: https://github.com/adrientaudiere/MiscMetabar +* Source code: https://github.com/cran/MiscMetabar +* Date/Publication: 2025-09-30 15:30:02 UTC +* Number of recursive dependencies: 424 -Run `revdepcheck::cloud_details(, "quollr")` for more info +Run `revdepcheck::cloud_details(, "MiscMetabar")` for more info
@@ -7040,7 +6378,7 @@ Run `revdepcheck::cloud_details(, "quollr")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/quollr/new/quollr.Rcheck’ +* using log directory ‘/tmp/workdir/MiscMetabar/new/MiscMetabar.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -7049,18 +6387,18 @@ Run `revdepcheck::cloud_details(, "quollr")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘quollr/DESCRIPTION’ ... OK +* checking for file ‘MiscMetabar/DESCRIPTION’ ... OK ... -* checking files in ‘vignettes’ ... OK * checking examples ... OK * checking for unstated dependencies in ‘tests’ ... OK * checking tests ... OK + Running ‘spelling.R’ Running ‘testthat.R’ * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * DONE -Status: 1 NOTE +Status: 3 NOTEs @@ -7070,7 +6408,7 @@ Status: 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/quollr/old/quollr.Rcheck’ +* using log directory ‘/tmp/workdir/MiscMetabar/old/MiscMetabar.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -7079,35 +6417,35 @@ Status: 1 NOTE * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘quollr/DESCRIPTION’ ... OK +* checking for file ‘MiscMetabar/DESCRIPTION’ ... OK ... -* checking files in ‘vignettes’ ... OK * checking examples ... OK * checking for unstated dependencies in ‘tests’ ... OK * checking tests ... OK + Running ‘spelling.R’ Running ‘testthat.R’ * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * DONE -Status: 1 NOTE +Status: 3 NOTEs ``` -# rattle +# MixedIndTests
-* Version: 5.5.1 +* Version: 1.2.0 * GitHub: NA -* Source code: https://github.com/cran/rattle -* Date/Publication: 2022-03-21 13:10:02 UTC -* Number of recursive dependencies: 224 +* Source code: https://github.com/cran/MixedIndTests +* Date/Publication: 2024-02-14 00:04:09 UTC +* Number of recursive dependencies: 40 -Run `revdepcheck::cloud_details(, "rattle")` for more info +Run `revdepcheck::cloud_details(, "MixedIndTests")` for more info
@@ -7116,7 +6454,7 @@ Run `revdepcheck::cloud_details(, "rattle")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/rattle/new/rattle.Rcheck’ +* using log directory ‘/tmp/workdir/MixedIndTests/new/MixedIndTests.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -7125,18 +6463,18 @@ Run `revdepcheck::cloud_details(, "rattle")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘rattle/DESCRIPTION’ ... OK +* checking for file ‘MixedIndTests/DESCRIPTION’ ... OK ... ---- failed re-building ‘rattle.Rnw’ - -SUMMARY: processing the following file failed: - ‘rattle.Rnw’ - -Error: Vignette re-building failed. -Execution halted +* this is package ‘MixedIndTests’ version ‘1.2.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 1 WARNING, 3 NOTEs +Status: 1 ERROR @@ -7146,7 +6484,7 @@ Status: 1 WARNING, 3 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/rattle/old/rattle.Rcheck’ +* using log directory ‘/tmp/workdir/MixedIndTests/old/MixedIndTests.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -7155,116 +6493,74 @@ Status: 1 WARNING, 3 NOTEs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘rattle/DESCRIPTION’ ... OK +* checking for file ‘MixedIndTests/DESCRIPTION’ ... OK ... ---- failed re-building ‘rattle.Rnw’ - -SUMMARY: processing the following file failed: - ‘rattle.Rnw’ - -Error: Vignette re-building failed. -Execution halted +* this is package ‘MixedIndTests’ version ‘1.2.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 1 WARNING, 3 NOTEs +Status: 1 ERROR ``` -# RCTrep +# MixMashNet
-* Version: 1.2.0 -* GitHub: https://github.com/duolajiang/RCTrep -* Source code: https://github.com/cran/RCTrep -* Date/Publication: 2023-11-02 14:40:02 UTC -* Number of recursive dependencies: 188 +* Version: 0.6.0 +* GitHub: https://github.com/ARCbiostat/MixMashNet +* Source code: https://github.com/cran/MixMashNet +* Date/Publication: 2026-03-03 10:40:09 UTC +* Number of recursive dependencies: 201 -Run `revdepcheck::cloud_details(, "RCTrep")` for more info +Run `revdepcheck::cloud_details(, "MixMashNet")` for more info
-## In both - -* checking whether package ‘RCTrep’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/RCTrep/new/RCTrep.Rcheck/00install.out’ for details. - ``` - -## Installation +## Error before installation ### Devel ``` -* installing *source* package ‘RCTrep’ ... -** package ‘RCTrep’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** data -*** moving datasets to lazyload DB -Warning: namespace ‘RCTrep’ is not available and has been replaced -by .GlobalEnv when processing object ‘quasar.obj’ -Warning: namespace ‘RCTrep’ is not available and has been replaced -by .GlobalEnv when processing object ‘quasar.obj’ -** 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘RCTrep’ -* removing ‘/tmp/workdir/RCTrep/new/RCTrep.Rcheck/RCTrep’ - - -``` -### CRAN - -``` -* installing *source* package ‘RCTrep’ ... -** package ‘RCTrep’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** data -*** moving datasets to lazyload DB -Warning: namespace ‘RCTrep’ is not available and has been replaced -by .GlobalEnv when processing object ‘quasar.obj’ -Warning: namespace ‘RCTrep’ is not available and has been replaced -by .GlobalEnv when processing object ‘quasar.obj’ -** 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘RCTrep’ -* removing ‘/tmp/workdir/RCTrep/old/RCTrep.Rcheck/RCTrep’ - - -``` -# ReporterScore +* using log directory ‘/tmp/workdir/MixMashNet/new/MixMashNet.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘MixMashNet/DESCRIPTION’ ... OK +... +* this is package ‘MixMashNet’ version ‘0.6.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘EGAnet’ -
+See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR -* Version: 0.1.9 -* GitHub: https://github.com/Asa12138/ReporterScore -* Source code: https://github.com/cran/ReporterScore -* Date/Publication: 2024-11-28 14:10:06 UTC -* Number of recursive dependencies: 265 -Run `revdepcheck::cloud_details(, "ReporterScore")` for more info -
-## Error before installation -### Devel +``` +### CRAN ``` -* using log directory ‘/tmp/workdir/ReporterScore/new/ReporterScore.Rcheck’ +* using log directory ‘/tmp/workdir/MixMashNet/old/MixMashNet.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -7273,13 +6569,59 @@ Run `revdepcheck::cloud_details(, "ReporterScore")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ReporterScore/DESCRIPTION’ ... OK +* checking for file ‘MixMashNet/DESCRIPTION’ ... OK +... +* this is package ‘MixMashNet’ version ‘0.6.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘EGAnet’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +# modelbased + +
+ +* Version: 0.14.0 +* GitHub: https://github.com/easystats/modelbased +* Source code: https://github.com/cran/modelbased +* Date/Publication: 2026-02-17 14:00:02 UTC +* Number of recursive dependencies: 252 + +Run `revdepcheck::cloud_details(, "modelbased")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/modelbased/new/modelbased.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘modelbased/DESCRIPTION’ ... OK ... -* checking data for non-ASCII characters ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking installed files from ‘inst/doc’ ... OK * checking files in ‘vignettes’ ... OK * checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK @@ -7294,7 +6636,7 @@ Status: 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/ReporterScore/old/ReporterScore.Rcheck’ +* using log directory ‘/tmp/workdir/modelbased/old/modelbased.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -7303,13 +6645,13 @@ Status: 1 NOTE * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ReporterScore/DESCRIPTION’ ... OK +* checking for file ‘modelbased/DESCRIPTION’ ... OK ... -* checking data for non-ASCII characters ... OK -* checking data for ASCII and uncompressed saves ... OK -* checking installed files from ‘inst/doc’ ... OK * checking files in ‘vignettes’ ... OK * checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK @@ -7321,17 +6663,17 @@ Status: 1 NOTE ``` -# Revticulate +# ModStatR
-* Version: 1.0.0 -* GitHub: NA -* Source code: https://github.com/cran/Revticulate -* Date/Publication: 2022-03-15 23:30:07 UTC -* Number of recursive dependencies: 176 +* Version: 1.4.1 +* GitHub: https://github.com/fbertran/ModStatR +* Source code: https://github.com/cran/ModStatR +* Date/Publication: 2025-09-12 22:50:26 UTC +* Number of recursive dependencies: 310 -Run `revdepcheck::cloud_details(, "Revticulate")` for more info +Run `revdepcheck::cloud_details(, "ModStatR")` for more info
@@ -7340,7 +6682,7 @@ Run `revdepcheck::cloud_details(, "Revticulate")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/Revticulate/new/Revticulate.Rcheck’ +* using log directory ‘/tmp/workdir/ModStatR/new/ModStatR.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -7349,18 +6691,18 @@ Run `revdepcheck::cloud_details(, "Revticulate")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘Revticulate/DESCRIPTION’ ... OK +* checking for file ‘ModStatR/DESCRIPTION’ ... OK ... -* checking Rd metadata ... OK -* checking Rd cross-references ... OK -* checking for missing documentation entries ... 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 package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘gsl’ + +Packages suggested but not available for checking: 'MBESS', 'MVN' + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 NOTEs +Status: 1 ERROR @@ -7370,7 +6712,7 @@ Status: 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/Revticulate/old/Revticulate.Rcheck’ +* using log directory ‘/tmp/workdir/ModStatR/old/ModStatR.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -7379,93 +6721,35 @@ Status: 2 NOTEs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘Revticulate/DESCRIPTION’ ... OK +* checking for file ‘ModStatR/DESCRIPTION’ ... OK ... -* checking Rd metadata ... OK -* checking Rd cross-references ... OK -* checking for missing documentation entries ... 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 -* DONE -Status: 2 NOTEs - - - - - -``` -# RGENERATEPREC - -
- -* Version: 1.3.2 -* GitHub: NA -* Source code: https://github.com/cran/RGENERATEPREC -* Date/Publication: 2025-07-30 16:10:02 UTC -* Number of recursive dependencies: 119 - -Run `revdepcheck::cloud_details(, "RGENERATEPREC")` for more info - -
- -## In both - -* checking whether package ‘RGENERATEPREC’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/RGENERATEPREC/new/RGENERATEPREC.Rcheck/00install.out’ for details. - ``` - -## Installation +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘gsl’ -### Devel +Packages suggested but not available for checking: 'MBESS', 'MVN' -``` -* installing *source* package ‘RGENERATEPREC’ ... -** package ‘RGENERATEPREC’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** inst -** byte-compile and prepare package for lazy loading -Error: package or namespace load failed for ‘copula’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]): - there is no package called ‘gsl’ -Execution halted -ERROR: lazy loading failed for package ‘RGENERATEPREC’ -* removing ‘/tmp/workdir/RGENERATEPREC/new/RGENERATEPREC.Rcheck/RGENERATEPREC’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR -``` -### CRAN -``` -* installing *source* package ‘RGENERATEPREC’ ... -** package ‘RGENERATEPREC’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** inst -** byte-compile and prepare package for lazy loading -Error: package or namespace load failed for ‘copula’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]): - there is no package called ‘gsl’ -Execution halted -ERROR: lazy loading failed for package ‘RGENERATEPREC’ -* removing ‘/tmp/workdir/RGENERATEPREC/old/RGENERATEPREC.Rcheck/RGENERATEPREC’ ``` -# ridgetorus +# morepls
-* Version: 1.0.3 -* GitHub: https://github.com/egarpor/ridgetorus -* Source code: https://github.com/cran/ridgetorus -* Date/Publication: 2025-07-27 17:00:02 UTC -* Number of recursive dependencies: 128 +* Version: 0.2.1 +* GitHub: NA +* Source code: https://github.com/cran/morepls +* Date/Publication: 2025-05-29 10:10:02 UTC +* Number of recursive dependencies: 40 -Run `revdepcheck::cloud_details(, "ridgetorus")` for more info +Run `revdepcheck::cloud_details(, "morepls")` for more info
@@ -7474,7 +6758,7 @@ Run `revdepcheck::cloud_details(, "ridgetorus")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/ridgetorus/new/ridgetorus.Rcheck’ +* using log directory ‘/tmp/workdir/morepls/new/morepls.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -7483,18 +6767,18 @@ Run `revdepcheck::cloud_details(, "ridgetorus")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ridgetorus/DESCRIPTION’ ... OK +* checking for file ‘morepls/DESCRIPTION’ ... OK ... -* this is package ‘ridgetorus’ version ‘1.0.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sphunif’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. ++ ncomp = 5, ++ data = yarn, ++ validation = "CV", ++ method = "oscorespls") +> plo_vip(pls) +Error in plo_vip(pls) : + plsVarSel package should be installed to use this type of plot +Execution halted * DONE -Status: 1 ERROR +Status: 1 ERROR, 2 NOTEs @@ -7504,7 +6788,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/ridgetorus/old/ridgetorus.Rcheck’ +* using log directory ‘/tmp/workdir/morepls/old/morepls.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -7513,35 +6797,35 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ridgetorus/DESCRIPTION’ ... OK +* checking for file ‘morepls/DESCRIPTION’ ... OK ... -* this is package ‘ridgetorus’ version ‘1.0.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘sphunif’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. ++ ncomp = 5, ++ data = yarn, ++ validation = "CV", ++ method = "oscorespls") +> plo_vip(pls) +Error in plo_vip(pls) : + plsVarSel package should be installed to use this type of plot +Execution halted * DONE -Status: 1 ERROR +Status: 1 ERROR, 2 NOTEs ``` -# RMOPI +# mulgar
-* Version: 1.1 -* GitHub: NA -* Source code: https://github.com/cran/RMOPI -* Date/Publication: 2022-08-22 12:50:08 UTC -* Number of recursive dependencies: 95 +* Version: 1.0.5 +* GitHub: https://github.com/dicook/mulgar +* Source code: https://github.com/cran/mulgar +* Date/Publication: 2025-04-07 02:30:02 UTC +* Number of recursive dependencies: 74 -Run `revdepcheck::cloud_details(, "RMOPI")` for more info +Run `revdepcheck::cloud_details(, "mulgar")` for more info
@@ -7550,7 +6834,7 @@ Run `revdepcheck::cloud_details(, "RMOPI")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/RMOPI/new/RMOPI.Rcheck’ +* using log directory ‘/tmp/workdir/mulgar/new/mulgar.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -7559,18 +6843,18 @@ Run `revdepcheck::cloud_details(, "RMOPI")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘RMOPI/DESCRIPTION’ ... OK +* checking for file ‘mulgar/DESCRIPTION’ ... 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 ‘RMOPI’ can be installed ... ERROR -Installation failed. -See ‘/tmp/workdir/RMOPI/new/RMOPI.Rcheck/00install.out’ for details. +* 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 LazyData ... OK +* checking data for ASCII and uncompressed saves ... OK +* checking examples ... OK * DONE -Status: 1 ERROR +Status: OK @@ -7580,7 +6864,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/RMOPI/old/RMOPI.Rcheck’ +* using log directory ‘/tmp/workdir/mulgar/old/mulgar.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -7589,87 +6873,70 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘RMOPI/DESCRIPTION’ ... OK +* checking for file ‘mulgar/DESCRIPTION’ ... 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 ‘RMOPI’ can be installed ... ERROR -Installation failed. -See ‘/tmp/workdir/RMOPI/old/RMOPI.Rcheck/00install.out’ for details. +* 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 LazyData ... OK +* checking data for ASCII and uncompressed saves ... OK +* checking examples ... OK * DONE -Status: 1 ERROR +Status: OK ``` -# rmsb +# MultANOVA
-* Version: 1.1-2 +* Version: NA * GitHub: NA -* Source code: https://github.com/cran/rmsb -* Date/Publication: 2025-04-13 16:30:02 UTC -* Number of recursive dependencies: 135 +* Source code: https://github.com/cran/MultANOVA +* Number of recursive dependencies: 20 -Run `revdepcheck::cloud_details(, "rmsb")` for more info +Run `revdepcheck::cloud_details(, "MultANOVA")` for more info
-## In both - -* checking whether package ‘rmsb’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/rmsb/new/rmsb.Rcheck/00install.out’ for details. - ``` - -## Installation +## Error before installation ### Devel ``` -* installing *source* package ‘rmsb’ ... -** package ‘rmsb’ successfully unpacked and MD5 sums checked -** using staged installation -Error in loadNamespace(x) : there is no package called ‘rstantools’ -Calls: loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: configuration failed for package ‘rmsb’ -* removing ‘/tmp/workdir/rmsb/new/rmsb.Rcheck/rmsb’ + + + + ``` ### CRAN ``` -* installing *source* package ‘rmsb’ ... -** package ‘rmsb’ successfully unpacked and MD5 sums checked -** using staged installation -Error in loadNamespace(x) : there is no package called ‘rstantools’ -Calls: loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: configuration failed for package ‘rmsb’ -* removing ‘/tmp/workdir/rmsb/old/rmsb.Rcheck/rmsb’ + + + + ``` -# rSDR +# multinma
-* Version: 1.0.3.0 -* GitHub: NA -* Source code: https://github.com/cran/rSDR -* Date/Publication: 2025-11-10 00:10:02 UTC -* Number of recursive dependencies: 158 +* Version: 0.9.0 +* GitHub: https://github.com/dmphillippo/multinma +* Source code: https://github.com/cran/multinma +* Date/Publication: 2026-04-13 19:10:07 UTC +* Number of recursive dependencies: 152 -Run `revdepcheck::cloud_details(, "rSDR")` for more info +Run `revdepcheck::cloud_details(, "GRIDCOPULA")` for more info
@@ -7678,7 +6945,7 @@ Run `revdepcheck::cloud_details(, "rSDR")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/rSDR/new/rSDR.Rcheck’ +* using log directory ‘/tmp/workdir/multinma/new/multinma.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -7687,16 +6954,16 @@ Run `revdepcheck::cloud_details(, "rSDR")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘rSDR/DESCRIPTION’ ... OK +* checking for file ‘multinma/DESCRIPTION’ ... OK ... ---- failed re-building ‘rSDR_vignette.Rmd’ - -SUMMARY: processing the following file failed: - ‘rSDR_vignette.Rmd’ - -Error: Vignette re-building failed. -Execution halted +* this is package ‘multinma’ version ‘0.9.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE Status: 1 ERROR @@ -7708,7 +6975,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/rSDR/old/rSDR.Rcheck’ +* using log directory ‘/tmp/workdir/multinma/old/multinma.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -7717,16 +6984,16 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘rSDR/DESCRIPTION’ ... OK +* checking for file ‘multinma/DESCRIPTION’ ... OK ... ---- failed re-building ‘rSDR_vignette.Rmd’ - -SUMMARY: processing the following file failed: - ‘rSDR_vignette.Rmd’ - -Error: Vignette re-building failed. -Execution halted +* this is package ‘multinma’ version ‘0.9.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE Status: 1 ERROR @@ -7735,95 +7002,92 @@ Status: 1 ERROR ``` -# rshift +# MultiResponseR
-* Version: 3.1.2 -* GitHub: https://github.com/alexhroom/rshift -* Source code: https://github.com/cran/rshift -* Date/Publication: 2025-04-06 18:40:02 UTC -* Number of recursive dependencies: 31 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/MultiResponseR +* Number of recursive dependencies: 69 -Run `revdepcheck::cloud_details(, "rshift")` for more info +Run `revdepcheck::cloud_details(, "MultiResponseR")` for more info
-## In both - -* checking whether package ‘rshift’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/rshift/new/rshift.Rcheck/00install.out’ for details. - ``` - -## Installation +## Error before installation ### Devel ``` -* installing *source* package ‘rshift’ ... -** package ‘rshift’ successfully unpacked and MD5 sums checked -** using staged installation -Using cargo 1.75.0 -Using rustc 1.75.0 (82e1608df 2023-12-21) (built from a source tarball) -Building for CRAN. -Writing `src/Makevars`. -`tools/config.R` has finished. -** libs -using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +* using log directory ‘/tmp/workdir/OpenMx/new/OpenMx.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘OpenMx/DESCRIPTION’ ... OK ... -export CARGO_HOME=/tmp/workdir/rshift/new/rshift.Rcheck/00_pkg_src/rshift/src/.cargo && \ -export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.cargo/bin" && \ -RUSTFLAGS=" --print=native-static-libs" cargo build -j 2 --offline --lib --release --manifest-path=./rust/Cargo.toml --target-dir ./rust/target -error: failed to parse lock file at: /tmp/workdir/rshift/new/rshift.Rcheck/00_pkg_src/rshift/src/rust/Cargo.lock +* 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 ‘OpenMx’ can be installed ... ERROR +Installation failed. +See ‘/tmp/workdir/OpenMx/new/OpenMx.Rcheck/00install.out’ for details. +* DONE +Status: 1 ERROR, 1 NOTE + + -Caused by: - lock file version 4 requires `-Znext-lockfile-bump` -make: *** [Makevars:28: rust/target/release/librshift.a] Error 101 -ERROR: compilation failed for package ‘rshift’ -* removing ‘/tmp/workdir/rshift/new/rshift.Rcheck/rshift’ ``` ### CRAN ``` -* installing *source* package ‘rshift’ ... -** package ‘rshift’ successfully unpacked and MD5 sums checked -** using staged installation -Using cargo 1.75.0 -Using rustc 1.75.0 (82e1608df 2023-12-21) (built from a source tarball) -Building for CRAN. -Writing `src/Makevars`. -`tools/config.R` has finished. -** libs -using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +* using log directory ‘/tmp/workdir/OpenMx/old/OpenMx.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘OpenMx/DESCRIPTION’ ... OK ... -export CARGO_HOME=/tmp/workdir/rshift/old/rshift.Rcheck/00_pkg_src/rshift/src/.cargo && \ -export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.cargo/bin" && \ -RUSTFLAGS=" --print=native-static-libs" cargo build -j 2 --offline --lib --release --manifest-path=./rust/Cargo.toml --target-dir ./rust/target -error: failed to parse lock file at: /tmp/workdir/rshift/old/rshift.Rcheck/00_pkg_src/rshift/src/rust/Cargo.lock +* 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 ‘OpenMx’ can be installed ... ERROR +Installation failed. +See ‘/tmp/workdir/OpenMx/old/OpenMx.Rcheck/00install.out’ for details. +* DONE +Status: 1 ERROR, 1 NOTE + + -Caused by: - lock file version 4 requires `-Znext-lockfile-bump` -make: *** [Makevars:28: rust/target/release/librshift.a] Error 101 -ERROR: compilation failed for package ‘rshift’ -* removing ‘/tmp/workdir/rshift/old/rshift.Rcheck/rshift’ ``` -# RSP +# MVN
-* Version: 0.5 -* GitHub: NA -* Source code: https://github.com/cran/RSP -* Date/Publication: 2026-01-21 08:00:26 UTC -* Number of recursive dependencies: 255 +* Version: 6.3 +* GitHub: https://github.com/selcukorkmaz/MVN +* Source code: https://github.com/cran/MVN +* Date/Publication: 2026-01-13 06:10:41 UTC +* Number of recursive dependencies: 159 -Run `revdepcheck::cloud_details(, "RSP")` for more info +Run `revdepcheck::cloud_details(, "MVN")` for more info
@@ -7832,7 +7096,7 @@ Run `revdepcheck::cloud_details(, "RSP")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/RSP/new/RSP.Rcheck’ +* using log directory ‘/tmp/workdir/MVN/new/MVN.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -7841,13 +7105,13 @@ Run `revdepcheck::cloud_details(, "RSP")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘RSP/DESCRIPTION’ ... OK +* checking for file ‘MVN/DESCRIPTION’ ... OK ... -* this is package ‘RSP’ version ‘0.5’ +* this is package ‘MVN’ version ‘6.3’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'MVN', 'semPlot' +Package required but not available: ‘energy’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -7862,7 +7126,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/RSP/old/RSP.Rcheck’ +* using log directory ‘/tmp/workdir/MVN/old/MVN.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -7871,13 +7135,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘RSP/DESCRIPTION’ ... OK +* checking for file ‘MVN/DESCRIPTION’ ... OK ... -* this is package ‘RSP’ version ‘0.5’ +* this is package ‘MVN’ version ‘6.3’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'MVN', 'semPlot' +Package required but not available: ‘energy’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -7889,47 +7153,2599 @@ Status: 1 ERROR ``` -# rstanarm +# negligible
-* Version: 2.32.2 -* GitHub: https://github.com/stan-dev/rstanarm -* Source code: https://github.com/cran/rstanarm -* Date/Publication: 2025-09-30 08:00:02 UTC -* Number of recursive dependencies: 141 +* Version: 0.1.11 +* GitHub: NA +* Source code: https://github.com/cran/negligible +* Date/Publication: 2026-01-08 20:20:02 UTC +* Number of recursive dependencies: 110 -Run `revdepcheck::cloud_details(, "rstanarm")` for more info +Run `revdepcheck::cloud_details(, "negligible")` for more info
-## In both - -* checking whether package ‘rstanarm’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/rstanarm/new/rstanarm.Rcheck/00install.out’ for details. - ``` - -## Installation +## Error before installation ### Devel ``` -* installing *source* package ‘rstanarm’ ... -** package ‘rstanarm’ successfully unpacked and MD5 sums checked -** using staged installation -** libs -using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -using C++17 +* using log directory ‘/tmp/workdir/negligible/new/negligible.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘negligible/DESCRIPTION’ ... OK +... +* this is package ‘negligible’ version ‘0.1.11’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘MBESS’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I"../inst/include" -I"/usr/local/lib/R/site-library/StanHeaders/include/src" -DBOOST_DISABLE_ASSERTS -DEIGEN_NO_DEBUG -DBOOST_MATH_OVERFLOW_ERROR_POLICY=errno_on_error -DUSE_STANC3 -D_HAS_AUTO_PTR_ETC=0 -I'/usr/local/lib/R/site-library/StanHeaders/include' -I'/usr/local/lib/R/site-library/rstan/include' -I'/usr/local/lib/R/site-library/BH/include' -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppEigen/include' -I'/usr/local/lib/R/site-library/RcppParallel/include' -I/usr/local/include -I'/usr/local/lib/R/site-library/RcppParallel/include' -D_REENTRANT -DSTAN_THREADS -fpic -g -O2 -c init.cpp -o init.o -... - | ^~~~~~~~~ -stanExports_jm.h: In constructor ‘model_jm_namespace::model_jm::model_jm(stan::io::var_context&, unsigned int, std::ostream*)’: -stanExports_jm.h:6883: note: variable tracking size limit exceeded with ‘-fvar-tracking-assignments’, retrying without + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/negligible/old/negligible.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘negligible/DESCRIPTION’ ... OK +... +* this is package ‘negligible’ version ‘0.1.11’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘MBESS’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +# numbat + +
+ +* Version: 1.5.2 +* GitHub: https://github.com/kharchenkolab/numbat +* Source code: https://github.com/cran/numbat +* Date/Publication: 2026-02-04 08:20:15 UTC +* Number of recursive dependencies: 140 + +Run `revdepcheck::cloud_details(, "numbat")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/numbat/new/numbat.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘numbat/DESCRIPTION’ ... OK +... +* this is package ‘numbat’ version ‘1.5.2’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'ggtree', 'scistreer' + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/numbat/old/numbat.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘numbat/DESCRIPTION’ ... OK +... +* this is package ‘numbat’ version ‘1.5.2’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'ggtree', 'scistreer' + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +# OlinkAnalyze + +
+ +* Version: 5.0.0 +* GitHub: https://github.com/Olink-Proteomics/OlinkRPackage +* Source code: https://github.com/cran/OlinkAnalyze +* Date/Publication: 2026-03-28 12:00:02 UTC +* Number of recursive dependencies: 221 + +Run `revdepcheck::cloud_details(, "OlinkAnalyze")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/OlinkAnalyze/new/OlinkAnalyze.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘OlinkAnalyze/DESCRIPTION’ ... OK +... +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 NOTE + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/OlinkAnalyze/old/OlinkAnalyze.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘OlinkAnalyze/DESCRIPTION’ ... OK +... +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 NOTE + + + + + +``` +# OpenMx + +
+ +* Version: 2.22.11 +* GitHub: https://github.com/OpenMx/OpenMx +* Source code: https://github.com/cran/OpenMx +* Date/Publication: 2026-03-08 06:10:55 UTC +* Number of recursive dependencies: 99 + +Run `revdepcheck::cloud_details(, "OpenMx")` for more info + +
+ +## In both + +* checking whether package ‘OpenMx’ can be installed ... ERROR + ``` + Installation failed. + See ‘/tmp/workdir/OpenMx/new/OpenMx.Rcheck/00install.out’ for details. + ``` + +## Installation + +### Devel + +``` +* installing *source* package ‘OpenMx’ ... +** package ‘OpenMx’ successfully unpacked and MD5 sums checked +** using staged installation +NOTE: ./configure is not an autoconf generated script. +Change default C/C++ compiler and default compile flags by editing ~/.R/Makevars +** libs +using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +using Fortran compiler: ‘GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +using C++17 +... + | ^~~~ +/tmp/r-deps/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixMatrix.h:51:58: warning: ignoring attributes on template argument ‘Eigen::internal::unpacket_traits<__vector(2) double>::half’ {aka ‘__m128d’} [-Wignored-attributes] +/tmp/r-deps/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixMatrix.h:52:64: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__m128d’} [-Wignored-attributes] + 52 | QuarterPacketSize = unpacket_traits::size, + | ^~~~ +/tmp/r-deps/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixMatrix.h:52:64: warning: ignoring attributes on template argument ‘Eigen::internal::unpacket_traits<__vector(2) double>::half’ {aka ‘__m128d’} [-Wignored-attributes] +/tmp/r-deps/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixMatrix.h:52:64: warning: ignoring attributes on template argument ‘Eigen::internal::unpacket_traits<__vector(2) double>::half’ {aka ‘__m128d’} [-Wignored-attributes] +make: *** [/opt/R/4.4.0/lib/R/etc/Makeconf:204: omxData.o] Error 1 +ERROR: compilation failed for package ‘OpenMx’ +* removing ‘/tmp/workdir/OpenMx/new/OpenMx.Rcheck/OpenMx’ + + +``` +### CRAN + +``` +* installing *source* package ‘OpenMx’ ... +** package ‘OpenMx’ successfully unpacked and MD5 sums checked +** using staged installation +NOTE: ./configure is not an autoconf generated script. +Change default C/C++ compiler and default compile flags by editing ~/.R/Makevars +** libs +using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +using Fortran compiler: ‘GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +using C++17 +... + | ^~~~ +/tmp/r-deps/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixMatrix.h:51:58: warning: ignoring attributes on template argument ‘Eigen::internal::unpacket_traits<__vector(2) double>::half’ {aka ‘__m128d’} [-Wignored-attributes] +/tmp/r-deps/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixMatrix.h:52:64: warning: ignoring attributes on template argument ‘Eigen::internal::packet_traits::type’ {aka ‘__m128d’} [-Wignored-attributes] + 52 | QuarterPacketSize = unpacket_traits::size, + | ^~~~ +/tmp/r-deps/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixMatrix.h:52:64: warning: ignoring attributes on template argument ‘Eigen::internal::unpacket_traits<__vector(2) double>::half’ {aka ‘__m128d’} [-Wignored-attributes] +/tmp/r-deps/RcppEigen/include/Eigen/src/Core/products/SelfadjointMatrixMatrix.h:52:64: warning: ignoring attributes on template argument ‘Eigen::internal::unpacket_traits<__vector(2) double>::half’ {aka ‘__m128d’} [-Wignored-attributes] +make: *** [/opt/R/4.4.0/lib/R/etc/Makeconf:204: omxData.o] Error 1 +ERROR: compilation failed for package ‘OpenMx’ +* removing ‘/tmp/workdir/OpenMx/old/OpenMx.Rcheck/OpenMx’ + + +``` +# ordPanel + +
+ +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/ordPanel +* Number of recursive dependencies: 82 + +Run `revdepcheck::cloud_details(, "ordPanel")` for more info + +
+ +## Error before installation + +### Devel + +``` + + + + + + +``` +### CRAN + +``` + + + + + + +``` +# outstandR + +
+ +* Version: 1.0.0 +* GitHub: https://github.com/StatisticsHealthEconomics/outstandR +* Source code: https://github.com/cran/outstandR +* Date/Publication: 2026-01-21 20:00:02 UTC +* Number of recursive dependencies: 153 + +Run `revdepcheck::cloud_details(, "outstandR")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/outstandR/new/outstandR.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘outstandR/DESCRIPTION’ ... OK +... +* this is package ‘outstandR’ version ‘1.0.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/outstandR/old/outstandR.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘outstandR/DESCRIPTION’ ... OK +... +* this is package ‘outstandR’ version ‘1.0.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +# pandemonium + +
+ +* Version: 0.2.4 +* GitHub: NA +* Source code: https://github.com/cran/pandemonium +* Date/Publication: 2025-11-03 08:30:02 UTC +* Number of recursive dependencies: 213 + +Run `revdepcheck::cloud_details(, "pandemonium")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/pandemonium/new/pandemonium.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘pandemonium/DESCRIPTION’ ... OK +... +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: OK + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/pandemonium/old/pandemonium.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘pandemonium/DESCRIPTION’ ... OK +... +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: OK + + + + + +``` +# parameters + +
+ +* Version: 0.28.3 +* GitHub: https://github.com/easystats/parameters +* Source code: https://github.com/cran/parameters +* Date/Publication: 2025-11-25 11:10:02 UTC +* Number of recursive dependencies: 472 + +Run `revdepcheck::cloud_details(, "parameters")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/parameters/new/parameters.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘parameters/DESCRIPTION’ ... OK +... +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 2 NOTEs + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/parameters/old/parameters.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘parameters/DESCRIPTION’ ... OK +... +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 2 NOTEs + + + + + +``` +# paths + +
+ +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/paths +* Number of recursive dependencies: 94 + +Run `revdepcheck::cloud_details(, "paths")` for more info + +
+ +## Error before installation + +### Devel + +``` + + + + + + +``` +### CRAN + +``` + + + + + + +``` +# pctax + +
+ +* Version: 0.1.7 +* GitHub: https://github.com/Asa12138/pctax +* Source code: https://github.com/cran/pctax +* Date/Publication: 2026-02-09 08:20:08 UTC +* Number of recursive dependencies: 280 + +Run `revdepcheck::cloud_details(, "pctax")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/pctax/new/pctax.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘pctax/DESCRIPTION’ ... OK +... +* checking LazyData ... OK +* checking data for ASCII and uncompressed saves ... 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 ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 3 NOTEs + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/pctax/old/pctax.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘pctax/DESCRIPTION’ ... OK +... +* checking LazyData ... OK +* checking data for ASCII and uncompressed saves ... 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 ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 3 NOTEs + + + + + +``` +# pcutils + +
+ +* Version: 0.2.8 +* GitHub: https://github.com/Asa12138/pcutils +* Source code: https://github.com/cran/pcutils +* Date/Publication: 2025-03-27 06:10:02 UTC +* Number of recursive dependencies: 310 + +Run `revdepcheck::cloud_details(, "pcutils")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/pcutils/new/pcutils.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘pcutils/DESCRIPTION’ ... OK +... +* 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 +* DONE +Status: 1 NOTE + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/pcutils/old/pcutils.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘pcutils/DESCRIPTION’ ... OK +... +* 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 +* DONE +Status: 1 NOTE + + + + + +``` +# phylosem + +
+ +* Version: 1.1.4 +* GitHub: https://github.com/James-Thorson-NOAA/phylosem +* Source code: https://github.com/cran/phylosem +* Date/Publication: 2024-04-02 21:15:03 UTC +* Number of recursive dependencies: 220 + +Run `revdepcheck::cloud_details(, "phylosem")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/phylosem/new/phylosem.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘phylosem/DESCRIPTION’ ... OK +... +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 2 NOTEs + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/phylosem/old/phylosem.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘phylosem/DESCRIPTION’ ... OK +... +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 2 NOTEs + + + + + +``` +# plot3logit + +
+ +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/plot3logit +* Number of recursive dependencies: 114 + +Run `revdepcheck::cloud_details(, "plot3logit")` for more info + +
+ +## Error before installation + +### Devel + +``` + + + + + + +``` +### CRAN + +``` + + + + + + +``` +# polarisR + +
+ +* Version: 0.1.4 +* GitHub: https://github.com/Divendra2006/polarisR +* Source code: https://github.com/cran/polarisR +* Date/Publication: 2025-09-23 14:10:02 UTC +* Number of recursive dependencies: 145 + +Run `revdepcheck::cloud_details(, "polarisR")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/polarisR/new/polarisR.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘polarisR/DESCRIPTION’ ... OK +... +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘spelling.R’ + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 NOTE + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/polarisR/old/polarisR.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘polarisR/DESCRIPTION’ ... OK +... +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘spelling.R’ + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 NOTE + + + + + +``` +# predictionInterval + +
+ +* Version: 1.0.0 +* GitHub: NA +* Source code: https://github.com/cran/predictionInterval +* Date/Publication: 2016-08-20 15:39:24 +* Number of recursive dependencies: 50 + +Run `revdepcheck::cloud_details(, "predictionInterval")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/predictionInterval/new/predictionInterval.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘predictionInterval/DESCRIPTION’ ... OK +... +* checking extension type ... Package +* this is package ‘predictionInterval’ version ‘1.0.0’ +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘MBESS’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/predictionInterval/old/predictionInterval.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘predictionInterval/DESCRIPTION’ ... OK +... +* checking extension type ... Package +* this is package ‘predictionInterval’ version ‘1.0.0’ +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘MBESS’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +# prefviz + +
+ +* Version: 0.1.1 +* GitHub: https://github.com/numbats/prefviz +* Source code: https://github.com/cran/prefviz +* Date/Publication: 2026-04-13 11:50:02 UTC +* Number of recursive dependencies: 107 + +Run `revdepcheck::cloud_details(, "prefviz")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/prefviz/new/prefviz.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘prefviz/DESCRIPTION’ ... OK +... +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: OK + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/prefviz/old/prefviz.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘prefviz/DESCRIPTION’ ... OK +... +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: OK + + + + + +``` +# projectLSA + +
+ +* Version: 0.0.8 +* GitHub: https://github.com/hdmeasure/projectLSA +* Source code: https://github.com/cran/projectLSA +* Date/Publication: 2026-02-07 23:20:03 UTC +* Number of recursive dependencies: 258 + +Run `revdepcheck::cloud_details(, "projectLSA")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/projectLSA/new/projectLSA.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘projectLSA/DESCRIPTION’ ... OK +... +* this is package ‘projectLSA’ version ‘0.0.8’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'semPlot', 'semptools' + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/projectLSA/old/projectLSA.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘projectLSA/DESCRIPTION’ ... OK +... +* this is package ‘projectLSA’ version ‘0.0.8’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'semPlot', 'semptools' + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +# psychonetrics + +
+ +* Version: 0.15 +* GitHub: https://github.com/SachaEpskamp/psychonetrics +* Source code: https://github.com/cran/psychonetrics +* Date/Publication: 2026-02-27 06:40:02 UTC +* Number of recursive dependencies: 140 + +Run `revdepcheck::cloud_details(, "psychonetrics")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/psychonetrics/new/psychonetrics.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘psychonetrics/DESCRIPTION’ ... OK +... +* checking line endings in C/C++/Fortran sources/headers ... OK +* checking line endings in Makefiles ... OK +* checking compilation flags in Makevars ... OK +* checking for GNU extensions in Makefiles ... OK +* checking for portable use of $(BLAS_LIBS) and $(LAPACK_LIBS) ... OK +* checking use of PKG_*FLAGS in Makefiles ... OK +* checking compiled code ... OK +* checking examples ... OK +* DONE +Status: 2 NOTEs + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/psychonetrics/old/psychonetrics.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘psychonetrics/DESCRIPTION’ ... OK +... +* checking line endings in C/C++/Fortran sources/headers ... OK +* checking line endings in Makefiles ... OK +* checking compilation flags in Makevars ... OK +* checking for GNU extensions in Makefiles ... OK +* checking for portable use of $(BLAS_LIBS) and $(LAPACK_LIBS) ... OK +* checking use of PKG_*FLAGS in Makefiles ... OK +* checking compiled code ... OK +* checking examples ... OK +* DONE +Status: 2 NOTEs + + + + + +``` +# pubh + +
+ +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/pubh +* Number of recursive dependencies: 161 + +Run `revdepcheck::cloud_details(, "pubh")` for more info + +
+ +## Error before installation + +### Devel + +``` + + + + + + +``` +### CRAN + +``` + + + + + + +``` +# pvars + +
+ +* Version: 1.1.1 +* GitHub: https://github.com/Lenni89/pvars +* Source code: https://github.com/cran/pvars +* Date/Publication: 2025-10-23 15:50:02 UTC +* Number of recursive dependencies: 127 + +Run `revdepcheck::cloud_details(, "pvars")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/pvars/new/pvars.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘pvars/DESCRIPTION’ ... OK +... +* this is package ‘pvars’ version ‘1.1.1’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'svars', 'copula' + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/pvars/old/pvars.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘pvars/DESCRIPTION’ ... OK +... +* this is package ‘pvars’ version ‘1.1.1’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'svars', 'copula' + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +# qad + +
+ +* Version: 1.0.6 +* GitHub: https://github.com/griefl/qad +* Source code: https://github.com/cran/qad +* Date/Publication: 2025-10-01 15:30:02 UTC +* Number of recursive dependencies: 93 + +Run `revdepcheck::cloud_details(, "qad")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/qad/new/qad.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘qad/DESCRIPTION’ ... OK +... +* this is package ‘qad’ version ‘1.0.6’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/qad/old/qad.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘qad/DESCRIPTION’ ... OK +... +* this is package ‘qad’ version ‘1.0.6’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +# qmd + +
+ +* Version: 1.1.3 +* GitHub: NA +* Source code: https://github.com/cran/qmd +* Date/Publication: 2025-07-02 08:30:02 UTC +* Number of recursive dependencies: 77 + +Run `revdepcheck::cloud_details(, "qmd")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/qmd/new/qmd.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘qmd/DESCRIPTION’ ... OK +... +* this is package ‘qmd’ version ‘1.1.3’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘qad’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/qmd/old/qmd.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘qmd/DESCRIPTION’ ... OK +... +* this is package ‘qmd’ version ‘1.1.3’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘qad’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +# QuadratiK + +
+ +* Version: 1.1.3 +* GitHub: https://github.com/ropensci/QuadratiK +* Source code: https://github.com/cran/QuadratiK +* Date/Publication: 2025-02-04 21:10:02 UTC +* Number of recursive dependencies: 151 + +Run `revdepcheck::cloud_details(, "QuadratiK")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/QuadratiK/new/QuadratiK.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘QuadratiK/DESCRIPTION’ ... OK +... +--- finished re-building ‘wireless_clustering.Rmd’ + +SUMMARY: processing the following file failed: + ‘uniformity.Rmd’ + +Error: Vignette re-building failed. +Execution halted + +* DONE +Status: 1 ERROR, 2 NOTEs + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/QuadratiK/old/QuadratiK.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘QuadratiK/DESCRIPTION’ ... OK +... +--- finished re-building ‘wireless_clustering.Rmd’ + +SUMMARY: processing the following file failed: + ‘uniformity.Rmd’ + +Error: Vignette re-building failed. +Execution halted + +* DONE +Status: 1 ERROR, 2 NOTEs + + + + + +``` +# quollr + +
+ +* Version: 1.0.6 +* GitHub: https://github.com/jayanilakshika/quollr +* Source code: https://github.com/cran/quollr +* Date/Publication: 2025-12-18 10:10:02 UTC +* Number of recursive dependencies: 129 + +Run `revdepcheck::cloud_details(, "quollr")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/quollr/new/quollr.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘quollr/DESCRIPTION’ ... OK +... +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 NOTE + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/quollr/old/quollr.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘quollr/DESCRIPTION’ ... OK +... +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 NOTE + + + + + +``` +# rattle + +
+ +* Version: 5.6.2 +* GitHub: NA +* Source code: https://github.com/cran/rattle +* Date/Publication: 2026-02-08 21:00:02 UTC +* Number of recursive dependencies: 214 + +Run `revdepcheck::cloud_details(, "rattle")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/rattle/new/rattle.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘rattle/DESCRIPTION’ ... OK +... +--- failed re-building ‘rattle.Rnw’ + +SUMMARY: processing the following file failed: + ‘rattle.Rnw’ + +Error: Vignette re-building failed. +Execution halted + +* DONE +Status: 1 WARNING, 2 NOTEs + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/rattle/old/rattle.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘rattle/DESCRIPTION’ ... OK +... +--- failed re-building ‘rattle.Rnw’ + +SUMMARY: processing the following file failed: + ‘rattle.Rnw’ + +Error: Vignette re-building failed. +Execution halted + +* DONE +Status: 1 WARNING, 2 NOTEs + + + + + +``` +# RCTrep + +
+ +* Version: 1.2.0 +* GitHub: https://github.com/duolajiang/RCTrep +* Source code: https://github.com/cran/RCTrep +* Date/Publication: 2023-11-02 14:40:02 UTC +* Number of recursive dependencies: 183 + +Run `revdepcheck::cloud_details(, "RCTrep")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/RCTrep/new/RCTrep.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘RCTrep/DESCRIPTION’ ... OK +... +* this is package ‘RCTrep’ version ‘1.2.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/RCTrep/old/RCTrep.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘RCTrep/DESCRIPTION’ ... OK +... +* this is package ‘RCTrep’ version ‘1.2.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +# ReporterScore + +
+ +* Version: 0.2.5 +* GitHub: https://github.com/Asa12138/ReporterScore +* Source code: https://github.com/cran/ReporterScore +* Date/Publication: 2026-02-20 14:50:14 UTC +* Number of recursive dependencies: 261 + +Run `revdepcheck::cloud_details(, "ReporterScore")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/ReporterScore/new/ReporterScore.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘ReporterScore/DESCRIPTION’ ... OK +... +* checking data for non-ASCII characters ... OK +* checking data for ASCII and uncompressed saves ... 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 ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 NOTE + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/ReporterScore/old/ReporterScore.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘ReporterScore/DESCRIPTION’ ... OK +... +* checking data for non-ASCII characters ... OK +* checking data for ASCII and uncompressed saves ... 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 ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 NOTE + + + + + +``` +# Revticulate + +
+ +* Version: 1.0.0 +* GitHub: NA +* Source code: https://github.com/cran/Revticulate +* Date/Publication: 2022-03-15 23:30:07 UTC +* Number of recursive dependencies: 176 + +Run `revdepcheck::cloud_details(, "Revticulate")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/Revticulate/new/Revticulate.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘Revticulate/DESCRIPTION’ ... OK +... +* checking Rd metadata ... OK +* checking Rd cross-references ... OK +* checking for missing documentation entries ... 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 +* DONE +Status: 2 NOTEs + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/Revticulate/old/Revticulate.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘Revticulate/DESCRIPTION’ ... OK +... +* checking Rd metadata ... OK +* checking Rd cross-references ... OK +* checking for missing documentation entries ... 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 +* DONE +Status: 2 NOTEs + + + + + +``` +# RGENERATEPREC + +
+ +* Version: 1.3.2 +* GitHub: NA +* Source code: https://github.com/cran/RGENERATEPREC +* Date/Publication: 2025-07-30 16:10:02 UTC +* Number of recursive dependencies: 120 + +Run `revdepcheck::cloud_details(, "RGENERATEPREC")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/RGENERATEPREC/new/RGENERATEPREC.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘RGENERATEPREC/DESCRIPTION’ ... OK +... +* checking extension type ... Package +* this is package ‘RGENERATEPREC’ version ‘1.3.2’ +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/RGENERATEPREC/old/RGENERATEPREC.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘RGENERATEPREC/DESCRIPTION’ ... OK +... +* checking extension type ... Package +* this is package ‘RGENERATEPREC’ version ‘1.3.2’ +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘copula’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +# ridgetorus + +
+ +* Version: 1.0.3 +* GitHub: https://github.com/egarpor/ridgetorus +* Source code: https://github.com/cran/ridgetorus +* Date/Publication: 2025-07-27 17:00:02 UTC +* Number of recursive dependencies: 127 + +Run `revdepcheck::cloud_details(, "ridgetorus")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/ridgetorus/new/ridgetorus.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘ridgetorus/DESCRIPTION’ ... OK +... +* this is package ‘ridgetorus’ version ‘1.0.3’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sphunif’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/ridgetorus/old/ridgetorus.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘ridgetorus/DESCRIPTION’ ... OK +... +* this is package ‘ridgetorus’ version ‘1.0.3’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘sphunif’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +# rmedsem + +
+ +* Version: 1.0.0 +* GitHub: https://github.com/ihrke/rmedsem +* Source code: https://github.com/cran/rmedsem +* Date/Publication: 2026-03-16 16:50:02 UTC +* Number of recursive dependencies: 192 + +Run `revdepcheck::cloud_details(, "rmedsem")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/rmedsem/new/rmedsem.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘rmedsem/DESCRIPTION’ ... 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/rmedsem/old/rmedsem.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘rmedsem/DESCRIPTION’ ... 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 + + + + + +``` +# RMOPI + +
+ +* Version: 1.1 +* GitHub: NA +* Source code: https://github.com/cran/RMOPI +* Date/Publication: 2022-08-22 12:50:08 UTC +* Number of recursive dependencies: 95 + +Run `revdepcheck::cloud_details(, "RMOPI")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/RMOPI/new/RMOPI.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘RMOPI/DESCRIPTION’ ... 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 ‘RMOPI’ can be installed ... ERROR +Installation failed. +See ‘/tmp/workdir/RMOPI/new/RMOPI.Rcheck/00install.out’ for details. +* DONE +Status: 1 ERROR + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/RMOPI/old/RMOPI.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘RMOPI/DESCRIPTION’ ... 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 ‘RMOPI’ can be installed ... ERROR +Installation failed. +See ‘/tmp/workdir/RMOPI/old/RMOPI.Rcheck/00install.out’ for details. +* DONE +Status: 1 ERROR + + + + + +``` +# rmsb + +
+ +* Version: 1.1-2 +* GitHub: NA +* Source code: https://github.com/cran/rmsb +* Date/Publication: 2025-04-13 16:30:02 UTC +* Number of recursive dependencies: 135 + +Run `revdepcheck::cloud_details(, "rmsb")` for more info + +
+ +## In both + +* checking whether package ‘rmsb’ can be installed ... ERROR + ``` + Installation failed. + See ‘/tmp/workdir/rmsb/new/rmsb.Rcheck/00install.out’ for details. + ``` + +## Installation + +### Devel + +``` +* installing *source* package ‘rmsb’ ... +** package ‘rmsb’ successfully unpacked and MD5 sums checked +** using staged installation +Error in loadNamespace(x) : there is no package called ‘rstantools’ +Calls: loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: configuration failed for package ‘rmsb’ +* removing ‘/tmp/workdir/rmsb/new/rmsb.Rcheck/rmsb’ + + +``` +### CRAN + +``` +* installing *source* package ‘rmsb’ ... +** package ‘rmsb’ successfully unpacked and MD5 sums checked +** using staged installation +Error in loadNamespace(x) : there is no package called ‘rstantools’ +Calls: loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: configuration failed for package ‘rmsb’ +* removing ‘/tmp/workdir/rmsb/old/rmsb.Rcheck/rmsb’ + + +``` +# rSDR + +
+ +* Version: 1.0.3.0 +* GitHub: NA +* Source code: https://github.com/cran/rSDR +* Date/Publication: 2025-11-10 00:10:02 UTC +* Number of recursive dependencies: 153 + +Run `revdepcheck::cloud_details(, "rSDR")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/rSDR/new/rSDR.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘rSDR/DESCRIPTION’ ... OK +... +--- failed re-building ‘rSDR_vignette.Rmd’ + +SUMMARY: processing the following file failed: + ‘rSDR_vignette.Rmd’ + +Error: Vignette re-building failed. +Execution halted + +* DONE +Status: 1 ERROR + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/rSDR/old/rSDR.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘rSDR/DESCRIPTION’ ... OK +... +--- failed re-building ‘rSDR_vignette.Rmd’ + +SUMMARY: processing the following file failed: + ‘rSDR_vignette.Rmd’ + +Error: Vignette re-building failed. +Execution halted + +* DONE +Status: 1 ERROR + + + + + +``` +# rshift + +
+ +* Version: 3.1.2 +* GitHub: https://github.com/alexhroom/rshift +* Source code: https://github.com/cran/rshift +* Date/Publication: 2025-04-06 18:40:02 UTC +* Number of recursive dependencies: 31 + +Run `revdepcheck::cloud_details(, "rshift")` for more info + +
+ +## In both + +* checking whether package ‘rshift’ can be installed ... ERROR + ``` + Installation failed. + See ‘/tmp/workdir/rshift/new/rshift.Rcheck/00install.out’ for details. + ``` + +## Installation + +### Devel + +``` +* installing *source* package ‘rshift’ ... +** package ‘rshift’ successfully unpacked and MD5 sums checked +** using staged installation +Using cargo 1.75.0 +Using rustc 1.75.0 (82e1608df 2023-12-21) (built from a source tarball) +Building for CRAN. +Writing `src/Makevars`. +`tools/config.R` has finished. +** libs +using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +... +export CARGO_HOME=/tmp/workdir/rshift/new/rshift.Rcheck/00_pkg_src/rshift/src/.cargo && \ +export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.cargo/bin" && \ +RUSTFLAGS=" --print=native-static-libs" cargo build -j 2 --offline --lib --release --manifest-path=./rust/Cargo.toml --target-dir ./rust/target +error: failed to parse lock file at: /tmp/workdir/rshift/new/rshift.Rcheck/00_pkg_src/rshift/src/rust/Cargo.lock + +Caused by: + lock file version 4 requires `-Znext-lockfile-bump` +make: *** [Makevars:28: rust/target/release/librshift.a] Error 101 +ERROR: compilation failed for package ‘rshift’ +* removing ‘/tmp/workdir/rshift/new/rshift.Rcheck/rshift’ + + +``` +### CRAN + +``` +* installing *source* package ‘rshift’ ... +** package ‘rshift’ successfully unpacked and MD5 sums checked +** using staged installation +Using cargo 1.75.0 +Using rustc 1.75.0 (82e1608df 2023-12-21) (built from a source tarball) +Building for CRAN. +Writing `src/Makevars`. +`tools/config.R` has finished. +** libs +using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +... +export CARGO_HOME=/tmp/workdir/rshift/old/rshift.Rcheck/00_pkg_src/rshift/src/.cargo && \ +export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.cargo/bin" && \ +RUSTFLAGS=" --print=native-static-libs" cargo build -j 2 --offline --lib --release --manifest-path=./rust/Cargo.toml --target-dir ./rust/target +error: failed to parse lock file at: /tmp/workdir/rshift/old/rshift.Rcheck/00_pkg_src/rshift/src/rust/Cargo.lock + +Caused by: + lock file version 4 requires `-Znext-lockfile-bump` +make: *** [Makevars:28: rust/target/release/librshift.a] Error 101 +ERROR: compilation failed for package ‘rshift’ +* removing ‘/tmp/workdir/rshift/old/rshift.Rcheck/rshift’ + + +``` +# RSP + +
+ +* Version: 0.5 +* GitHub: NA +* Source code: https://github.com/cran/RSP +* Date/Publication: 2026-01-21 08:00:26 UTC +* Number of recursive dependencies: 256 + +Run `revdepcheck::cloud_details(, "RSP")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/RSP/new/RSP.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘RSP/DESCRIPTION’ ... OK +... +* this is package ‘RSP’ version ‘0.5’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'MVN', 'semPlot' + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/RSP/old/RSP.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘RSP/DESCRIPTION’ ... OK +... +* this is package ‘RSP’ version ‘0.5’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'MVN', 'semPlot' + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +# rstanarm + +
+ +* Version: 2.32.2 +* GitHub: https://github.com/stan-dev/rstanarm +* Source code: https://github.com/cran/rstanarm +* Date/Publication: 2025-09-30 08:00:02 UTC +* Number of recursive dependencies: 141 + +Run `revdepcheck::cloud_details(, "rstanarm")` for more info + +
+ +## In both + +* checking whether package ‘rstanarm’ can be installed ... ERROR + ``` + Installation failed. + See ‘/tmp/workdir/rstanarm/new/rstanarm.Rcheck/00install.out’ for details. + ``` + +## Installation + +### Devel + +``` +* installing *source* package ‘rstanarm’ ... +** package ‘rstanarm’ successfully unpacked and MD5 sums checked +** using staged installation +** libs +using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +using C++17 + + +g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I"../inst/include" -I"/tmp/r-deps/StanHeaders/include/src" -DBOOST_DISABLE_ASSERTS -DEIGEN_NO_DEBUG -DBOOST_MATH_OVERFLOW_ERROR_POLICY=errno_on_error -DUSE_STANC3 -D_HAS_AUTO_PTR_ETC=0 -I'/tmp/r-deps/StanHeaders/include' -I'/tmp/r-deps/rstan/include' -I'/tmp/r-deps/BH/include' -I'/tmp/r-deps/Rcpp/include' -I'/tmp/r-deps/RcppEigen/include' -I'/tmp/r-deps/RcppParallel/include' -I/usr/local/include -I'/tmp/r-deps/RcppParallel/include' -D_REENTRANT -DSTAN_THREADS -fpic -g -O2 -c init.cpp -o init.o + +... + | ^~~~~~~~~ +stanExports_jm.h: In constructor ‘model_jm_namespace::model_jm::model_jm(stan::io::var_context&, unsigned int, std::ostream*)’: +stanExports_jm.h:6883: note: variable tracking size limit exceeded with ‘-fvar-tracking-assignments’, retrying without 6883 | model_jm(stan::io::var_context& context__, unsigned int random_seed__ = 0, | g++: fatal error: Killed signal terminated program cc1plus @@ -7940,44 +9756,839 @@ ERROR: compilation failed for package ‘rstanarm’ ``` -### CRAN +### CRAN + +``` +* installing *source* package ‘rstanarm’ ... +** package ‘rstanarm’ successfully unpacked and MD5 sums checked +** using staged installation +** libs +using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +using C++17 + + +g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I"../inst/include" -I"/tmp/r-deps/StanHeaders/include/src" -DBOOST_DISABLE_ASSERTS -DEIGEN_NO_DEBUG -DBOOST_MATH_OVERFLOW_ERROR_POLICY=errno_on_error -DUSE_STANC3 -D_HAS_AUTO_PTR_ETC=0 -I'/tmp/r-deps/StanHeaders/include' -I'/tmp/r-deps/rstan/include' -I'/tmp/r-deps/BH/include' -I'/tmp/r-deps/Rcpp/include' -I'/tmp/r-deps/RcppEigen/include' -I'/tmp/r-deps/RcppParallel/include' -I/usr/local/include -I'/tmp/r-deps/RcppParallel/include' -D_REENTRANT -DSTAN_THREADS -fpic -g -O2 -c init.cpp -o init.o + +... + | ^~~~~~~~~ +stanExports_jm.h: In constructor ‘model_jm_namespace::model_jm::model_jm(stan::io::var_context&, unsigned int, std::ostream*)’: +stanExports_jm.h:6883: note: variable tracking size limit exceeded with ‘-fvar-tracking-assignments’, retrying without + 6883 | model_jm(stan::io::var_context& context__, unsigned int random_seed__ = 0, + | +g++: fatal error: Killed signal terminated program cc1plus +compilation terminated. +make: *** [/opt/R/4.4.0/lib/R/etc/Makeconf:202: stanExports_jm.o] Error 1 +ERROR: compilation failed for package ‘rstanarm’ +* removing ‘/tmp/workdir/rstanarm/old/rstanarm.Rcheck/rstanarm’ + + +``` +# RulesTools + +
+ +* Version: 0.1.1 +* GitHub: https://github.com/nikolett0203/RulesTools +* Source code: https://github.com/cran/RulesTools +* Date/Publication: 2025-01-28 15:50:06 UTC +* Number of recursive dependencies: 114 + +Run `revdepcheck::cloud_details(, "RulesTools")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/RulesTools/new/RulesTools.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘RulesTools/DESCRIPTION’ ... OK +... +* this is package ‘RulesTools’ version ‘0.1.1’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'arules', 'eulerr' + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/RulesTools/old/RulesTools.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘RulesTools/DESCRIPTION’ ... OK +... +* this is package ‘RulesTools’ version ‘0.1.1’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'arules', 'eulerr' + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +# SCpubr + +
+ +* Version: 3.0.1 +* GitHub: https://github.com/enblacar/SCpubr +* Source code: https://github.com/cran/SCpubr +* Date/Publication: 2026-01-09 15:10:18 UTC +* Number of recursive dependencies: 291 + +Run `revdepcheck::cloud_details(, "SCpubr")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/SCpubr/new/SCpubr.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘SCpubr/DESCRIPTION’ ... OK +... +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 NOTE + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/SCpubr/old/SCpubr.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘SCpubr/DESCRIPTION’ ... OK +... +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 NOTE + + + + + +``` +# semtree + +
+ +* Version: 0.9.23 +* GitHub: https://github.com/brandmaier/semtree +* Source code: https://github.com/cran/semtree +* Date/Publication: 2025-11-26 16:40:02 UTC +* Number of recursive dependencies: 107 + +Run `revdepcheck::cloud_details(, "semtree")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/semtree/new/semtree.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘semtree/DESCRIPTION’ ... OK +... +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘OpenMx’ + +Package suggested but not available for checking: ‘ctsemOMX’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/semtree/old/semtree.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘semtree/DESCRIPTION’ ... OK +... +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘OpenMx’ + +Package suggested but not available for checking: ‘ctsemOMX’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR + + + + + +``` +# Signac + +
+ +* Version: 1.17.1 +* GitHub: https://github.com/stuart-lab/signac +* Source code: https://github.com/cran/Signac +* Date/Publication: 2026-04-06 18:10:07 UTC +* Number of recursive dependencies: 228 + +Run `revdepcheck::cloud_details(, "Signac")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/Signac/new/Signac.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘Signac/DESCRIPTION’ ... 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 +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* DONE +Status: 3 NOTEs + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/Signac/old/Signac.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘Signac/DESCRIPTION’ ... 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 +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* DONE +Status: 3 NOTEs + + + + + +``` +# simcausal + +
+ +* Version: 0.5.7 +* GitHub: https://github.com/osofr/simcausal +* Source code: https://github.com/cran/simcausal +* Date/Publication: 2024-10-19 14:30:02 UTC +* Number of recursive dependencies: 76 + +Run `revdepcheck::cloud_details(, "simcausal")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/simcausal/new/simcausal.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘simcausal/DESCRIPTION’ ... OK +... +--- failed re-building ‘simcausalVignette.Rnw’ + +SUMMARY: processing the following file failed: + ‘simcausalVignette.Rnw’ + +Error: Vignette re-building failed. +Execution halted + +* DONE +Status: 1 WARNING, 1 NOTE + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/simcausal/old/simcausal.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘simcausal/DESCRIPTION’ ... OK +... +--- failed re-building ‘simcausalVignette.Rnw’ + +SUMMARY: processing the following file failed: + ‘simcausalVignette.Rnw’ + +Error: Vignette re-building failed. +Execution halted + +* DONE +Status: 1 WARNING, 1 NOTE + + + + + +``` +# SimDesign + +
+ +* Version: 2.25 +* GitHub: https://github.com/philchalmers/SimDesign +* Source code: https://github.com/cran/SimDesign +* Date/Publication: 2026-03-31 05:10:37 UTC +* Number of recursive dependencies: 147 + +Run `revdepcheck::cloud_details(, "SimDesign")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/SimDesign/new/SimDesign.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘SimDesign/DESCRIPTION’ ... OK +... +* checking LazyData ... OK +* checking data for ASCII and uncompressed saves ... 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 ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 2 NOTEs + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/SimDesign/old/SimDesign.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘SimDesign/DESCRIPTION’ ... OK +... +* checking LazyData ... OK +* checking data for ASCII and uncompressed saves ... 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 ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 2 NOTEs + + + + + +``` +# spareg + +
+ +* Version: 1.1.1 +* GitHub: https://github.com/lauravana/spareg +* Source code: https://github.com/cran/spareg +* Date/Publication: 2025-08-19 08:30:02 UTC +* Number of recursive dependencies: 127 + +Run `revdepcheck::cloud_details(, "spareg")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/spareg/new/spareg.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘spareg/DESCRIPTION’ ... OK +... +--- failed re-building 'spareg.Rnw' + +SUMMARY: processing the following file failed: + 'spareg.Rnw' + +Error: Vignette re-building failed. +Execution halted + +* DONE +Status: 2 ERRORs + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/spareg/old/spareg.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘spareg/DESCRIPTION’ ... OK +... +--- failed re-building 'spareg.Rnw' + +SUMMARY: processing the following file failed: + 'spareg.Rnw' + +Error: Vignette re-building failed. +Execution halted + +* DONE +Status: 2 ERRORs + + + + + +``` +# sparsevar + +
+ +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/sparsevar +* Number of recursive dependencies: 72 + +Run `revdepcheck::cloud_details(, "sparsevar")` for more info + +
+ +## Error before installation + +### Devel + +``` + + + + + + +``` +### CRAN + +``` + + + + + + +``` +# spinebil + +
+ +* Version: 1.0.5 +* GitHub: https://github.com/uschiLaa/spinebil +* Source code: https://github.com/cran/spinebil +* Date/Publication: 2025-10-17 06:00:02 UTC +* Number of recursive dependencies: 109 + +Run `revdepcheck::cloud_details(, "spinebil")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/spinebil/new/spinebil.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘spinebil/DESCRIPTION’ ... OK +... +* checking Rd contents ... OK +* checking for unstated dependencies in examples ... 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 ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: OK + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/spinebil/old/spinebil.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘spinebil/DESCRIPTION’ ... OK +... +* checking Rd contents ... OK +* checking for unstated dependencies in examples ... 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 ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: OK + + + + + +``` +# spinifex + +
+ +* Version: 0.3.10 +* GitHub: https://github.com/nspyrison/spinifex +* Source code: https://github.com/cran/spinifex +* Date/Publication: 2025-09-18 05:10:02 UTC +* Number of recursive dependencies: 174 + +Run `revdepcheck::cloud_details(, "spinifex")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/spinifex/new/spinifex.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘spinifex/DESCRIPTION’ ... OK +... +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘spelling.R’ + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: OK + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/spinifex/old/spinifex.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘spinifex/DESCRIPTION’ ... OK +... +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘spelling.R’ + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: OK + + + + + +``` +# Spower + +
+ +* Version: 0.6 +* GitHub: https://github.com/philchalmers/Spower +* Source code: https://github.com/cran/Spower +* Date/Publication: 2026-02-13 17:40:10 UTC +* Number of recursive dependencies: 166 + +Run `revdepcheck::cloud_details(, "Spower")` for more info + +
+ +## Error before installation + +### Devel ``` -* installing *source* package ‘rstanarm’ ... -** package ‘rstanarm’ successfully unpacked and MD5 sums checked -** using staged installation -** libs -using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -using C++17 +* using log directory ‘/tmp/workdir/Spower/new/Spower.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘Spower/DESCRIPTION’ ... OK +... +* checking Rd contents ... OK +* checking for unstated dependencies in examples ... 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 ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 NOTE + + + -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I"../inst/include" -I"/usr/local/lib/R/site-library/StanHeaders/include/src" -DBOOST_DISABLE_ASSERTS -DEIGEN_NO_DEBUG -DBOOST_MATH_OVERFLOW_ERROR_POLICY=errno_on_error -DUSE_STANC3 -D_HAS_AUTO_PTR_ETC=0 -I'/usr/local/lib/R/site-library/StanHeaders/include' -I'/usr/local/lib/R/site-library/rstan/include' -I'/usr/local/lib/R/site-library/BH/include' -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppEigen/include' -I'/usr/local/lib/R/site-library/RcppParallel/include' -I/usr/local/include -I'/usr/local/lib/R/site-library/RcppParallel/include' -D_REENTRANT -DSTAN_THREADS -fpic -g -O2 -c init.cpp -o init.o +``` +### CRAN +``` +* using log directory ‘/tmp/workdir/Spower/old/Spower.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘Spower/DESCRIPTION’ ... OK ... - | ^~~~~~~~~ -stanExports_jm.h: In constructor ‘model_jm_namespace::model_jm::model_jm(stan::io::var_context&, unsigned int, std::ostream*)’: -stanExports_jm.h:6883: note: variable tracking size limit exceeded with ‘-fvar-tracking-assignments’, retrying without - 6883 | model_jm(stan::io::var_context& context__, unsigned int random_seed__ = 0, - | -g++: fatal error: Killed signal terminated program cc1plus -compilation terminated. -make: *** [/opt/R/4.4.0/lib/R/etc/Makeconf:202: stanExports_jm.o] Error 1 -ERROR: compilation failed for package ‘rstanarm’ -* removing ‘/tmp/workdir/rstanarm/old/rstanarm.Rcheck/rstanarm’ +* checking Rd contents ... OK +* checking for unstated dependencies in examples ... 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 ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 NOTE + + + ``` -# RulesTools +# sprtt
-* Version: 0.1.1 -* GitHub: https://github.com/nikolett0203/RulesTools -* Source code: https://github.com/cran/RulesTools -* Date/Publication: 2025-01-28 15:50:06 UTC -* Number of recursive dependencies: 114 +* Version: 0.2.0 +* GitHub: https://github.com/MeikeSteinhilber/sprtt +* Source code: https://github.com/cran/sprtt +* Date/Publication: 2023-07-06 13:50:02 UTC +* Number of recursive dependencies: 147 -Run `revdepcheck::cloud_details(, "RulesTools")` for more info +Run `revdepcheck::cloud_details(, "sprtt")` for more info
@@ -7986,7 +10597,7 @@ Run `revdepcheck::cloud_details(, "RulesTools")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/RulesTools/new/RulesTools.Rcheck’ +* using log directory ‘/tmp/workdir/sprtt/new/sprtt.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -7995,13 +10606,13 @@ Run `revdepcheck::cloud_details(, "RulesTools")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘RulesTools/DESCRIPTION’ ... OK +* checking for file ‘sprtt/DESCRIPTION’ ... OK ... -* this is package ‘RulesTools’ version ‘0.1.1’ +* this is package ‘sprtt’ version ‘0.2.0’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'arules', 'eulerr' +Package required but not available: ‘MBESS’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -8016,7 +10627,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/RulesTools/old/RulesTools.Rcheck’ +* using log directory ‘/tmp/workdir/sprtt/old/sprtt.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8025,13 +10636,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘RulesTools/DESCRIPTION’ ... OK +* checking for file ‘sprtt/DESCRIPTION’ ... OK ... -* this is package ‘RulesTools’ version ‘0.1.1’ +* this is package ‘sprtt’ version ‘0.2.0’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'arules', 'eulerr' +Package required but not available: ‘MBESS’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -8043,17 +10654,163 @@ Status: 1 ERROR ``` -# SCpubr +# SRscore + +
+ +* Version: 0.1.2 +* GitHub: NA +* Source code: https://github.com/cran/SRscore +* Date/Publication: 2026-01-08 18:50:19 UTC +* Number of recursive dependencies: 167 + +Run `revdepcheck::cloud_details(, "SRscore")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/SRscore/new/SRscore.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘SRscore/DESCRIPTION’ ... OK +... +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 NOTE + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/SRscore/old/SRscore.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘SRscore/DESCRIPTION’ ... OK +... +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 NOTE + + + + + +``` +# SSVS + +
+ +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/SSVS +* Number of recursive dependencies: 155 + +Run `revdepcheck::cloud_details(, "SSVS")` for more info + +
+ +## Error before installation + +### Devel + +``` + + + + + + +``` +### CRAN + +``` + + + + + + +``` +# StatTeacherAssistant + +
+ +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/StatTeacherAssistant +* Number of recursive dependencies: 123 + +Run `revdepcheck::cloud_details(, "StatTeacherAssistant")` for more info + +
+ +## Error before installation + +### Devel + +``` + + + + + + +``` +### CRAN + +``` + + + + + + +``` +# STCCGEV
-* Version: 3.0.1 -* GitHub: https://github.com/enblacar/SCpubr -* Source code: https://github.com/cran/SCpubr -* Date/Publication: 2026-01-09 15:10:18 UTC -* Number of recursive dependencies: 292 +* Version: 1.0.0 +* GitHub: NA +* Source code: https://github.com/cran/STCCGEV +* Date/Publication: 2025-03-27 17:30:04 UTC +* Number of recursive dependencies: 72 -Run `revdepcheck::cloud_details(, "SCpubr")` for more info +Run `revdepcheck::cloud_details(, "STCCGEV")` for more info
@@ -8062,7 +10819,7 @@ Run `revdepcheck::cloud_details(, "SCpubr")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/SCpubr/new/SCpubr.Rcheck’ +* using log directory ‘/tmp/workdir/STCCGEV/new/STCCGEV.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8071,18 +10828,18 @@ Run `revdepcheck::cloud_details(, "SCpubr")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘SCpubr/DESCRIPTION’ ... OK +* checking for file ‘STCCGEV/DESCRIPTION’ ... OK ... -* checking files in ‘vignettes’ ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK +* this is package ‘STCCGEV’ version ‘1.0.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'bsts', 'copula' + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 1 NOTE +Status: 1 ERROR @@ -8092,7 +10849,7 @@ Status: 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/SCpubr/old/SCpubr.Rcheck’ +* using log directory ‘/tmp/workdir/STCCGEV/old/STCCGEV.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8101,35 +10858,35 @@ Status: 1 NOTE * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘SCpubr/DESCRIPTION’ ... OK +* checking for file ‘STCCGEV/DESCRIPTION’ ... OK ... -* checking files in ‘vignettes’ ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK +* this is package ‘STCCGEV’ version ‘1.0.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'bsts', 'copula' + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 1 NOTE +Status: 1 ERROR ``` -# semtree +# STCYP
-* Version: 0.9.23 -* GitHub: https://github.com/brandmaier/semtree -* Source code: https://github.com/cran/semtree -* Date/Publication: 2025-11-26 16:40:02 UTC -* Number of recursive dependencies: 125 +* Version: 1.0.0 +* GitHub: NA +* Source code: https://github.com/cran/STCYP +* Date/Publication: 2025-09-09 14:40:23 UTC +* Number of recursive dependencies: 71 -Run `revdepcheck::cloud_details(, "semtree")` for more info +Run `revdepcheck::cloud_details(, "STCYP")` for more info
@@ -8138,7 +10895,7 @@ Run `revdepcheck::cloud_details(, "semtree")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/semtree/new/semtree.Rcheck’ +* using log directory ‘/tmp/workdir/STCYP/new/STCYP.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8147,13 +10904,13 @@ Run `revdepcheck::cloud_details(, "semtree")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘semtree/DESCRIPTION’ ... OK +* checking for file ‘STCYP/DESCRIPTION’ ... OK ... +* this is package ‘STCYP’ version ‘1.0.0’ +* package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘OpenMx’ - -Package suggested but not available for checking: ‘ctsemOMX’ +Packages required but not available: 'bsts', 'copula' See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -8168,7 +10925,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/semtree/old/semtree.Rcheck’ +* using log directory ‘/tmp/workdir/STCYP/old/STCYP.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8177,13 +10934,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘semtree/DESCRIPTION’ ... OK +* checking for file ‘STCYP/DESCRIPTION’ ... OK ... +* this is package ‘STCYP’ version ‘1.0.0’ +* package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘OpenMx’ - -Package suggested but not available for checking: ‘ctsemOMX’ +Packages required but not available: 'bsts', 'copula' See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -8195,17 +10952,16 @@ Status: 1 ERROR ``` -# Signac +# stelfi
-* Version: 1.16.0 -* GitHub: https://github.com/stuart-lab/signac -* Source code: https://github.com/cran/Signac -* Date/Publication: 2025-10-10 09:10:07 UTC -* Number of recursive dependencies: 230 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/stelfi +* Number of recursive dependencies: 100 -Run `revdepcheck::cloud_details(, "Signac")` for more info +Run `revdepcheck::cloud_details(, "stelfi")` for more info
@@ -8214,27 +10970,7 @@ Run `revdepcheck::cloud_details(, "Signac")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/Signac/new/Signac.Rcheck’ -* using R version 4.4.0 (2024-04-24) -* using platform: x86_64-pc-linux-gnu -* R was compiled by - gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 - GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 -* running under: Ubuntu 24.04.3 LTS -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘Signac/DESCRIPTION’ ... 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 -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* DONE -Status: 3 NOTEs + @@ -8244,44 +10980,24 @@ Status: 3 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/Signac/old/Signac.Rcheck’ -* using R version 4.4.0 (2024-04-24) -* using platform: x86_64-pc-linux-gnu -* R was compiled by - gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 - GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 -* running under: Ubuntu 24.04.3 LTS -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘Signac/DESCRIPTION’ ... 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 -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* DONE -Status: 3 NOTEs + ``` -# spareg +# streamDAG
-* Version: 1.1.1 -* GitHub: https://github.com/lauravana/spareg -* Source code: https://github.com/cran/spareg -* Date/Publication: 2025-08-19 08:30:02 UTC -* Number of recursive dependencies: 133 +* Version: 1.6 +* GitHub: NA +* Source code: https://github.com/cran/streamDAG +* Date/Publication: 2025-10-16 15:30:02 UTC +* Number of recursive dependencies: 142 -Run `revdepcheck::cloud_details(, "spareg")` for more info +Run `revdepcheck::cloud_details(, "streamDAG")` for more info
@@ -8290,7 +11006,7 @@ Run `revdepcheck::cloud_details(, "spareg")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/spareg/new/spareg.Rcheck’ +* using log directory ‘/tmp/workdir/streamDAG/new/streamDAG.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8299,18 +11015,16 @@ Run `revdepcheck::cloud_details(, "spareg")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘spareg/DESCRIPTION’ ... OK -... ---- failed re-building 'spareg.Rnw' - -SUMMARY: processing the following file failed: - 'spareg.Rnw' - -Error: Vignette re-building failed. -Execution halted +* checking for file ‘streamDAG/DESCRIPTION’ ... OK +* this is package ‘streamDAG’ version ‘1.6’ +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘asbio’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 ERRORs +Status: 1 ERROR @@ -8320,7 +11034,7 @@ Status: 2 ERRORs ### CRAN ``` -* using log directory ‘/tmp/workdir/spareg/old/spareg.Rcheck’ +* using log directory ‘/tmp/workdir/streamDAG/old/streamDAG.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8329,35 +11043,33 @@ Status: 2 ERRORs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘spareg/DESCRIPTION’ ... OK -... ---- failed re-building 'spareg.Rnw' - -SUMMARY: processing the following file failed: - 'spareg.Rnw' - -Error: Vignette re-building failed. -Execution halted +* checking for file ‘streamDAG/DESCRIPTION’ ... OK +* this is package ‘streamDAG’ version ‘1.6’ +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘asbio’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 2 ERRORs +Status: 1 ERROR ``` -# spinebil +# SurprisalAnalysis
-* Version: 1.0.5 -* GitHub: https://github.com/uschiLaa/spinebil -* Source code: https://github.com/cran/spinebil -* Date/Publication: 2025-10-17 06:00:02 UTC -* Number of recursive dependencies: 109 +* Version: 3.0.0 +* GitHub: NA +* Source code: https://github.com/cran/SurprisalAnalysis +* Date/Publication: 2026-01-08 03:30:02 UTC +* Number of recursive dependencies: 217 -Run `revdepcheck::cloud_details(, "spinebil")` for more info +Run `revdepcheck::cloud_details(, "SurprisalAnalysis")` for more info
@@ -8366,7 +11078,7 @@ Run `revdepcheck::cloud_details(, "spinebil")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/spinebil/new/spinebil.Rcheck’ +* using log directory ‘/tmp/workdir/SurprisalAnalysis/new/SurprisalAnalysis.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8375,18 +11087,18 @@ Run `revdepcheck::cloud_details(, "spinebil")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘spinebil/DESCRIPTION’ ... OK +* checking for file ‘SurprisalAnalysis/DESCRIPTION’ ... OK ... -* checking Rd contents ... OK -* checking for unstated dependencies in examples ... 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 ... OK -* checking re-building of vignette outputs ... OK +* this is package ‘SurprisalAnalysis’ version ‘3.0.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘clusterProfiler’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: OK +Status: 1 ERROR @@ -8396,7 +11108,7 @@ Status: OK ### CRAN ``` -* using log directory ‘/tmp/workdir/spinebil/old/spinebil.Rcheck’ +* using log directory ‘/tmp/workdir/SurprisalAnalysis/old/SurprisalAnalysis.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8405,35 +11117,35 @@ Status: OK * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘spinebil/DESCRIPTION’ ... OK +* checking for file ‘SurprisalAnalysis/DESCRIPTION’ ... OK ... -* checking Rd contents ... OK -* checking for unstated dependencies in examples ... 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 ... OK -* checking re-building of vignette outputs ... OK +* this is package ‘SurprisalAnalysis’ version ‘3.0.0’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘clusterProfiler’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: OK +Status: 1 ERROR ``` -# spinifex +# Surrogate
-* Version: 0.3.10 -* GitHub: https://github.com/nspyrison/spinifex -* Source code: https://github.com/cran/spinifex -* Date/Publication: 2025-09-18 05:10:02 UTC -* Number of recursive dependencies: 173 +* Version: 3.4.1 +* GitHub: https://github.com/florianstijven/Surrogate-development +* Source code: https://github.com/cran/Surrogate +* Date/Publication: 2025-04-29 04:40:02 UTC +* Number of recursive dependencies: 193 -Run `revdepcheck::cloud_details(, "spinifex")` for more info +Run `revdepcheck::cloud_details(, "Surrogate")` for more info
@@ -8442,7 +11154,7 @@ Run `revdepcheck::cloud_details(, "spinifex")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/spinifex/new/spinifex.Rcheck’ +* using log directory ‘/tmp/workdir/Surrogate/new/Surrogate.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8451,18 +11163,18 @@ Run `revdepcheck::cloud_details(, "spinifex")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘spinifex/DESCRIPTION’ ... OK -... -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘spelling.R’ - Running ‘testthat.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK +* checking for file ‘Surrogate/DESCRIPTION’ ... OK +... +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘MBESS’ + +Package suggested but not available for checking: ‘copula’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: OK +Status: 1 ERROR @@ -8472,7 +11184,7 @@ Status: OK ### CRAN ``` -* using log directory ‘/tmp/workdir/spinifex/old/spinifex.Rcheck’ +* using log directory ‘/tmp/workdir/Surrogate/old/Surrogate.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8481,35 +11193,35 @@ Status: OK * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘spinifex/DESCRIPTION’ ... OK +* checking for file ‘Surrogate/DESCRIPTION’ ... OK ... -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘spelling.R’ - Running ‘testthat.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘MBESS’ + +Package suggested but not available for checking: ‘copula’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: OK +Status: 1 ERROR ``` -# sprtt +# svars
-* Version: 0.2.0 -* GitHub: https://github.com/MeikeSteinhilber/sprtt -* Source code: https://github.com/cran/sprtt -* Date/Publication: 2023-07-06 13:50:02 UTC -* Number of recursive dependencies: 147 +* Version: 1.3.12 +* GitHub: NA +* Source code: https://github.com/cran/svars +* Date/Publication: 2025-08-24 17:30:02 UTC +* Number of recursive dependencies: 85 -Run `revdepcheck::cloud_details(, "sprtt")` for more info +Run `revdepcheck::cloud_details(, "svars")` for more info
@@ -8518,7 +11230,7 @@ Run `revdepcheck::cloud_details(, "sprtt")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/sprtt/new/sprtt.Rcheck’ +* using log directory ‘/tmp/workdir/svars/new/svars.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8527,13 +11239,13 @@ Run `revdepcheck::cloud_details(, "sprtt")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘sprtt/DESCRIPTION’ ... OK +* checking for file ‘svars/DESCRIPTION’ ... OK ... -* this is package ‘sprtt’ version ‘0.2.0’ +* this is package ‘svars’ version ‘1.3.12’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘MBESS’ +Package required but not available: ‘copula’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -8548,7 +11260,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/sprtt/old/sprtt.Rcheck’ +* using log directory ‘/tmp/workdir/svars/old/svars.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8557,13 +11269,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘sprtt/DESCRIPTION’ ... OK +* checking for file ‘svars/DESCRIPTION’ ... OK ... -* this is package ‘sprtt’ version ‘0.2.0’ +* this is package ‘svars’ version ‘1.3.12’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘MBESS’ +Package required but not available: ‘copula’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -8575,17 +11287,95 @@ Status: 1 ERROR ``` -# SRscore +# TCIU
-* Version: 0.1.2 +* Version: 1.2.8 +* GitHub: https://github.com/SOCR/TCIU +* Source code: https://github.com/cran/TCIU +* Date/Publication: 2026-01-26 03:30:02 UTC +* Number of recursive dependencies: 161 + +Run `revdepcheck::cloud_details(, "TCIU")` for more info + +
+ +## In both + +* checking whether package ‘TCIU’ can be installed ... ERROR + ``` + Installation failed. + See ‘/tmp/workdir/TCIU/new/TCIU.Rcheck/00install.out’ for details. + ``` + +## Installation + +### Devel + +``` +* installing *source* package ‘TCIU’ ... +** package ‘TCIU’ successfully unpacked and MD5 sums checked +** using staged installation +** libs +using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +using Fortran compiler: ‘GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c GLS.c -o GLS.o +gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c RC_interface.c -o RC_interface.o +gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c complex_Sig_gen.c -o complex_Sig_gen.o +gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c complex_Sig_sig2I.c -o complex_Sig_sig2I.o +... +*** 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 ‘gsl’ +Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: lazy loading failed for package ‘TCIU’ +* removing ‘/tmp/workdir/TCIU/new/TCIU.Rcheck/TCIU’ + + +``` +### CRAN + +``` +* installing *source* package ‘TCIU’ ... +** package ‘TCIU’ successfully unpacked and MD5 sums checked +** using staged installation +** libs +using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +using Fortran compiler: ‘GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ +gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c GLS.c -o GLS.o +gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c RC_interface.c -o RC_interface.o +gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c complex_Sig_gen.c -o complex_Sig_gen.o +gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c complex_Sig_sig2I.c -o complex_Sig_sig2I.o +... +*** 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 ‘gsl’ +Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: lazy loading failed for package ‘TCIU’ +* removing ‘/tmp/workdir/TCIU/old/TCIU.Rcheck/TCIU’ + + +``` +# TDAkit + +
+ +* Version: 0.1.3 * GitHub: NA -* Source code: https://github.com/cran/SRscore -* Date/Publication: 2026-01-08 18:50:19 UTC -* Number of recursive dependencies: 168 +* Source code: https://github.com/cran/TDAkit +* Date/Publication: 2025-09-21 22:10:13 UTC +* Number of recursive dependencies: 82 -Run `revdepcheck::cloud_details(, "SRscore")` for more info +Run `revdepcheck::cloud_details(, "TDAkit")` for more info
@@ -8594,7 +11384,7 @@ Run `revdepcheck::cloud_details(, "SRscore")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/SRscore/new/SRscore.Rcheck’ +* using log directory ‘/tmp/workdir/TDAkit/new/TDAkit.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8603,18 +11393,18 @@ Run `revdepcheck::cloud_details(, "SRscore")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘SRscore/DESCRIPTION’ ... OK +* checking for file ‘TDAkit/DESCRIPTION’ ... OK ... -* checking files in ‘vignettes’ ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK +* this is package ‘TDAkit’ version ‘0.1.3’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘energy’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 1 NOTE +Status: 1 ERROR @@ -8624,7 +11414,7 @@ Status: 1 NOTE ### CRAN ``` -* using log directory ‘/tmp/workdir/SRscore/old/SRscore.Rcheck’ +* using log directory ‘/tmp/workdir/TDAkit/old/TDAkit.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8633,34 +11423,35 @@ Status: 1 NOTE * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘SRscore/DESCRIPTION’ ... OK +* checking for file ‘TDAkit/DESCRIPTION’ ... OK ... -* checking files in ‘vignettes’ ... OK -* checking examples ... OK -* checking for unstated dependencies in ‘tests’ ... OK -* checking tests ... OK - Running ‘testthat.R’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK +* this is package ‘TDAkit’ version ‘0.1.3’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘energy’ + +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. * DONE -Status: 1 NOTE +Status: 1 ERROR ``` -# StatTeacherAssistant +# TELP
-* Version: NA +* Version: 1.0.3 * GitHub: NA -* Source code: https://github.com/cran/StatTeacherAssistant -* Number of recursive dependencies: 123 +* Source code: https://github.com/cran/TELP +* Date/Publication: 2025-05-09 15:00:05 UTC +* Number of recursive dependencies: 109 -Run `revdepcheck::cloud_details(, "StatTeacherAssistant")` for more info +Run `revdepcheck::cloud_details(, "TELP")` for more info
@@ -8669,7 +11460,27 @@ Run `revdepcheck::cloud_details(, "StatTeacherAssistant")` for more info ### Devel ``` +* using log directory ‘/tmp/workdir/TELP/new/TELP.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘TELP/DESCRIPTION’ ... OK +... +* checking extension type ... Package +* this is package ‘TELP’ version ‘1.0.3’ +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'arules', 'arulesViz' +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR @@ -8679,23 +11490,44 @@ Run `revdepcheck::cloud_details(, "StatTeacherAssistant")` for more info ### CRAN ``` +* using log directory ‘/tmp/workdir/TELP/old/TELP.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘TELP/DESCRIPTION’ ... OK +... +* checking extension type ... Package +* this is package ‘TELP’ version ‘1.0.3’ +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Packages required but not available: 'arules', 'arulesViz' +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR ``` -# stelfi +# tepr
-* Version: NA +* Version: 1.1.15 * GitHub: NA -* Source code: https://github.com/cran/stelfi -* Number of recursive dependencies: 101 +* Source code: https://github.com/cran/tepr +* Date/Publication: 2026-03-06 10:20:02 UTC +* Number of recursive dependencies: 123 -Run `revdepcheck::cloud_details(, "stelfi")` for more info +Run `revdepcheck::cloud_details(, "tepr")` for more info
@@ -8704,7 +11536,27 @@ Run `revdepcheck::cloud_details(, "stelfi")` for more info ### Devel ``` +* using log directory ‘/tmp/workdir/tepr/new/tepr.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘tepr/DESCRIPTION’ ... OK +... +* this is package ‘tepr’ version ‘1.1.15’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘rtracklayer’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR @@ -8714,24 +11566,44 @@ Run `revdepcheck::cloud_details(, "stelfi")` for more info ### CRAN ``` +* using log directory ‘/tmp/workdir/tepr/old/tepr.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘tepr/DESCRIPTION’ ... OK +... +* this is package ‘tepr’ version ‘1.1.15’ +* package encoding: UTF-8 +* checking package namespace information ... OK +* checking package dependencies ... ERROR +Package required but not available: ‘rtracklayer’ +See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ +manual. +* DONE +Status: 1 ERROR ``` -# streamDAG +# TestAnaAPP
-* Version: 1.6 -* GitHub: NA -* Source code: https://github.com/cran/streamDAG -* Date/Publication: 2025-10-16 15:30:02 UTC -* Number of recursive dependencies: 142 +* Version: 1.1.2 +* GitHub: https://github.com/jiangyouxiang/TestAnaAPP +* Source code: https://github.com/cran/TestAnaAPP +* Date/Publication: 2024-11-09 04:00:02 UTC +* Number of recursive dependencies: 274 -Run `revdepcheck::cloud_details(, "streamDAG")` for more info +Run `revdepcheck::cloud_details(, "TestAnaAPP")` for more info
@@ -8740,7 +11612,7 @@ Run `revdepcheck::cloud_details(, "streamDAG")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/streamDAG/new/streamDAG.Rcheck’ +* using log directory ‘/tmp/workdir/TestAnaAPP/new/TestAnaAPP.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8749,11 +11621,13 @@ Run `revdepcheck::cloud_details(, "streamDAG")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘streamDAG/DESCRIPTION’ ... OK -* this is package ‘streamDAG’ version ‘1.6’ +* checking for file ‘TestAnaAPP/DESCRIPTION’ ... OK +... +* this is package ‘TestAnaAPP’ version ‘1.1.2’ +* package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘asbio’ +Package required but not available: ‘semPlot’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -8768,7 +11642,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/streamDAG/old/streamDAG.Rcheck’ +* using log directory ‘/tmp/workdir/TestAnaAPP/old/TestAnaAPP.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8777,11 +11651,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘streamDAG/DESCRIPTION’ ... OK -* this is package ‘streamDAG’ version ‘1.6’ +* checking for file ‘TestAnaAPP/DESCRIPTION’ ... OK +... +* this is package ‘TestAnaAPP’ version ‘1.1.2’ +* package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘asbio’ +Package required but not available: ‘semPlot’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -8793,17 +11669,17 @@ Status: 1 ERROR ``` -# SurprisalAnalysis +# tidybins
-* Version: 3.0.0 -* GitHub: NA -* Source code: https://github.com/cran/SurprisalAnalysis -* Date/Publication: 2026-01-08 03:30:02 UTC -* Number of recursive dependencies: 223 +* Version: 0.1.2 +* GitHub: https://github.com/Harrison4192/tidybins +* Source code: https://github.com/cran/tidybins +* Date/Publication: 2026-03-05 12:30:02 UTC +* Number of recursive dependencies: 222 -Run `revdepcheck::cloud_details(, "SurprisalAnalysis")` for more info +Run `revdepcheck::cloud_details(, "tidybins")` for more info
@@ -8812,7 +11688,7 @@ Run `revdepcheck::cloud_details(, "SurprisalAnalysis")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/SurprisalAnalysis/new/SurprisalAnalysis.Rcheck’ +* using log directory ‘/tmp/workdir/tidybins/new/tidybins.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8821,18 +11697,18 @@ Run `revdepcheck::cloud_details(, "SurprisalAnalysis")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘SurprisalAnalysis/DESCRIPTION’ ... OK +* checking for file ‘tidybins/DESCRIPTION’ ... OK ... -* this is package ‘SurprisalAnalysis’ version ‘3.0.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘clusterProfiler’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. +* checking Rd contents ... OK +* checking for unstated dependencies in examples ... 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 ... OK +* checking re-building of vignette outputs ... OK * DONE -Status: 1 ERROR +Status: 3 NOTEs @@ -8842,7 +11718,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/SurprisalAnalysis/old/SurprisalAnalysis.Rcheck’ +* using log directory ‘/tmp/workdir/tidybins/old/tidybins.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8851,35 +11727,35 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘SurprisalAnalysis/DESCRIPTION’ ... OK +* checking for file ‘tidybins/DESCRIPTION’ ... OK ... -* this is package ‘SurprisalAnalysis’ version ‘3.0.0’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘clusterProfiler’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. +* checking Rd contents ... OK +* checking for unstated dependencies in examples ... 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 ... OK +* checking re-building of vignette outputs ... OK * DONE -Status: 1 ERROR +Status: 3 NOTEs ``` -# Surrogate +# tidycomm
-* Version: 3.4.1 -* GitHub: https://github.com/florianstijven/Surrogate-development -* Source code: https://github.com/cran/Surrogate -* Date/Publication: 2025-04-29 04:40:02 UTC -* Number of recursive dependencies: 193 +* Version: 0.4.2 +* GitHub: https://github.com/tidycomm/tidycomm +* Source code: https://github.com/cran/tidycomm +* Date/Publication: 2025-08-27 12:00:02 UTC +* Number of recursive dependencies: 148 -Run `revdepcheck::cloud_details(, "Surrogate")` for more info +Run `revdepcheck::cloud_details(, "tidycomm")` for more info
@@ -8888,7 +11764,7 @@ Run `revdepcheck::cloud_details(, "Surrogate")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/Surrogate/new/Surrogate.Rcheck’ +* using log directory ‘/tmp/workdir/tidycomm/new/tidycomm.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8897,9 +11773,9 @@ Run `revdepcheck::cloud_details(, "Surrogate")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘Surrogate/DESCRIPTION’ ... OK +* checking for file ‘tidycomm/DESCRIPTION’ ... OK ... -* this is package ‘Surrogate’ version ‘3.4.1’ +* this is package ‘tidycomm’ version ‘0.4.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -8918,7 +11794,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/Surrogate/old/Surrogate.Rcheck’ +* using log directory ‘/tmp/workdir/tidycomm/old/tidycomm.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -8927,9 +11803,9 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘Surrogate/DESCRIPTION’ ... OK +* checking for file ‘tidycomm/DESCRIPTION’ ... OK ... -* this is package ‘Surrogate’ version ‘3.4.1’ +* this is package ‘tidycomm’ version ‘0.4.2’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR @@ -8945,173 +11821,93 @@ Status: 1 ERROR ``` -# svars +# tidylearn
-* Version: 1.3.12 -* GitHub: NA -* Source code: https://github.com/cran/svars -* Date/Publication: 2025-08-24 17:30:02 UTC -* Number of recursive dependencies: 85 +* Version: 0.3.0 +* GitHub: https://github.com/ces0491/tidylearn +* Source code: https://github.com/cran/tidylearn +* Date/Publication: 2026-04-09 09:30:02 UTC +* Number of recursive dependencies: 272 -Run `revdepcheck::cloud_details(, "svars")` for more info +Run `revdepcheck::cloud_details(, "tidylearn")` for more info
-## In both - -* checking whether package ‘svars’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/svars/new/svars.Rcheck/00install.out’ for details. - ``` - -## Installation +## Error before installation ### Devel ``` -* installing *source* package ‘svars’ ... -** package ‘svars’ successfully unpacked and MD5 sums checked -** using staged installation -** libs -using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -using C++17 -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c ChangesInVolatility.cpp -o ChangesInVolatility.o -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c GARCH.cpp -o GARCH.o -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c IRF.cpp -o IRF.o -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c NonGaussianML.cpp -o NonGaussianML.o -... -** data -*** moving datasets to lazyload DB -** inst -** byte-compile and prepare package for lazy loading -Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : - there is no package called ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘svars’ -* removing ‘/tmp/workdir/svars/new/svars.Rcheck/svars’ - - -``` -### CRAN - -``` -* installing *source* package ‘svars’ ... -** package ‘svars’ successfully unpacked and MD5 sums checked -** using staged installation -** libs -using C++ compiler: ‘g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -using C++17 -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c ChangesInVolatility.cpp -o ChangesInVolatility.o -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c GARCH.cpp -o GARCH.o -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c IRF.cpp -o IRF.o -g++ -std=gnu++17 -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I'/usr/local/lib/R/site-library/Rcpp/include' -I'/usr/local/lib/R/site-library/RcppArmadillo/include' -I/usr/local/include -fopenmp -fpic -g -O2 -c NonGaussianML.cpp -o NonGaussianML.o +* using log directory ‘/tmp/workdir/tidylearn/new/tidylearn.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘tidylearn/DESCRIPTION’ ... OK ... -** 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘svars’ -* removing ‘/tmp/workdir/svars/old/svars.Rcheck/svars’ - - -``` -# TCIU - -
- -* Version: 1.2.8 -* GitHub: https://github.com/SOCR/TCIU -* Source code: https://github.com/cran/TCIU -* Date/Publication: 2026-01-26 03:30:02 UTC -* Number of recursive dependencies: 166 - -Run `revdepcheck::cloud_details(, "TCIU")` for more info - -
- -## In both - -* checking whether package ‘TCIU’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/TCIU/new/TCIU.Rcheck/00install.out’ for details. - ``` +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 NOTE -## Installation -### Devel -``` -* installing *source* package ‘TCIU’ ... -** package ‘TCIU’ successfully unpacked and MD5 sums checked -** using staged installation -** libs -using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -using Fortran compiler: ‘GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c GLS.c -o GLS.o -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c RC_interface.c -o RC_interface.o -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c complex_Sig_gen.c -o complex_Sig_gen.o -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c complex_Sig_sig2I.c -o complex_Sig_sig2I.o -... -*** 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘TCIU’ -* removing ‘/tmp/workdir/TCIU/new/TCIU.Rcheck/TCIU’ ``` ### CRAN ``` -* installing *source* package ‘TCIU’ ... -** package ‘TCIU’ successfully unpacked and MD5 sums checked -** using staged installation -** libs -using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -using Fortran compiler: ‘GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’ -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c GLS.c -o GLS.o -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c RC_interface.c -o RC_interface.o -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c complex_Sig_gen.c -o complex_Sig_gen.o -gcc -I"/opt/R/4.4.0/lib/R/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -c complex_Sig_sig2I.c -o complex_Sig_sig2I.o -... -*** 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 ‘gsl’ -Calls: ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: lazy loading failed for package ‘TCIU’ -* removing ‘/tmp/workdir/TCIU/old/TCIU.Rcheck/TCIU’ +* using log directory ‘/tmp/workdir/tidylearn/old/tidylearn.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘tidylearn/DESCRIPTION’ ... OK +... +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 NOTE + + + ``` -# TDAkit +# tidySEM
-* Version: 0.1.3 -* GitHub: NA -* Source code: https://github.com/cran/TDAkit -* Date/Publication: 2025-09-21 22:10:13 UTC -* Number of recursive dependencies: 81 +* Version: 0.2.10 +* GitHub: https://github.com/cjvanlissa/tidySEM +* Source code: https://github.com/cran/tidySEM +* Date/Publication: 2026-01-11 06:10:10 UTC +* Number of recursive dependencies: 226 -Run `revdepcheck::cloud_details(, "TDAkit")` for more info +Run `revdepcheck::cloud_details(, "tidySEM")` for more info
@@ -9120,7 +11916,7 @@ Run `revdepcheck::cloud_details(, "TDAkit")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/TDAkit/new/TDAkit.Rcheck’ +* using log directory ‘/tmp/workdir/tidySEM/new/tidySEM.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -9129,18 +11925,18 @@ Run `revdepcheck::cloud_details(, "TDAkit")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘TDAkit/DESCRIPTION’ ... OK +* checking for file ‘tidySEM/DESCRIPTION’ ... OK ... -* this is package ‘TDAkit’ version ‘0.1.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘energy’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK * DONE -Status: 1 ERROR +Status: 2 NOTEs @@ -9150,7 +11946,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/TDAkit/old/TDAkit.Rcheck’ +* using log directory ‘/tmp/workdir/tidySEM/old/tidySEM.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -9159,35 +11955,35 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘TDAkit/DESCRIPTION’ ... OK +* checking for file ‘tidySEM/DESCRIPTION’ ... OK ... -* this is package ‘TDAkit’ version ‘0.1.3’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘energy’ - -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK * DONE -Status: 1 ERROR +Status: 2 NOTEs ``` -# TELP +# tinyarray
-* Version: 1.0.3 -* GitHub: NA -* Source code: https://github.com/cran/TELP -* Date/Publication: 2025-05-09 15:00:05 UTC -* Number of recursive dependencies: 109 +* Version: 2.4.3 +* GitHub: https://github.com/xjsun1221/tinyarray +* Source code: https://github.com/cran/tinyarray +* Date/Publication: 2025-03-05 13:20:02 UTC +* Number of recursive dependencies: 254 -Run `revdepcheck::cloud_details(, "TELP")` for more info +Run `revdepcheck::cloud_details(, "tinyarray")` for more info
@@ -9196,7 +11992,7 @@ Run `revdepcheck::cloud_details(, "TELP")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/TELP/new/TELP.Rcheck’ +* using log directory ‘/tmp/workdir/tinyarray/new/tinyarray.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -9205,13 +12001,13 @@ Run `revdepcheck::cloud_details(, "TELP")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘TELP/DESCRIPTION’ ... OK +* checking for file ‘tinyarray/DESCRIPTION’ ... OK ... -* checking extension type ... Package -* this is package ‘TELP’ version ‘1.0.3’ +* this is package ‘tinyarray’ version ‘2.4.3’ +* package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'arules', 'arulesViz' +Package required but not available: ‘clusterProfiler’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -9226,7 +12022,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/TELP/old/TELP.Rcheck’ +* using log directory ‘/tmp/workdir/tinyarray/old/tinyarray.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -9235,13 +12031,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘TELP/DESCRIPTION’ ... OK +* checking for file ‘tinyarray/DESCRIPTION’ ... OK ... -* checking extension type ... Package -* this is package ‘TELP’ version ‘1.0.3’ +* this is package ‘tinyarray’ version ‘2.4.3’ +* package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Packages required but not available: 'arules', 'arulesViz' +Package required but not available: ‘clusterProfiler’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -9253,17 +12049,17 @@ Status: 1 ERROR ``` -# TestAnaAPP +# tourr
-* Version: 1.1.2 -* GitHub: https://github.com/jiangyouxiang/TestAnaAPP -* Source code: https://github.com/cran/TestAnaAPP -* Date/Publication: 2024-11-09 04:00:02 UTC -* Number of recursive dependencies: 273 +* Version: 1.2.6 +* GitHub: https://github.com/ggobi/tourr +* Source code: https://github.com/cran/tourr +* Date/Publication: 2025-07-13 23:50:02 UTC +* Number of recursive dependencies: 116 -Run `revdepcheck::cloud_details(, "TestAnaAPP")` for more info +Run `revdepcheck::cloud_details(, "tourr")` for more info
@@ -9272,7 +12068,7 @@ Run `revdepcheck::cloud_details(, "TestAnaAPP")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/TestAnaAPP/new/TestAnaAPP.Rcheck’ +* using log directory ‘/tmp/workdir/tourr/new/tourr.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -9281,13 +12077,13 @@ Run `revdepcheck::cloud_details(, "TestAnaAPP")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘TestAnaAPP/DESCRIPTION’ ... OK +* checking for file ‘tourr/DESCRIPTION’ ... OK ... -* this is package ‘TestAnaAPP’ version ‘1.1.2’ +* this is package ‘tourr’ version ‘1.2.6’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘semPlot’ +Package required but not available: ‘energy’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -9302,7 +12098,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/TestAnaAPP/old/TestAnaAPP.Rcheck’ +* using log directory ‘/tmp/workdir/tourr/old/tourr.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -9311,13 +12107,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘TestAnaAPP/DESCRIPTION’ ... OK +* checking for file ‘tourr/DESCRIPTION’ ... OK ... -* this is package ‘TestAnaAPP’ version ‘1.1.2’ +* this is package ‘tourr’ version ‘1.2.6’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘semPlot’ +Package required but not available: ‘energy’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -9329,17 +12125,17 @@ Status: 1 ERROR ``` -# tidycomm +# TransProR
-* Version: 0.4.2 -* GitHub: https://github.com/tidycomm/tidycomm -* Source code: https://github.com/cran/tidycomm -* Date/Publication: 2025-08-27 12:00:02 UTC -* Number of recursive dependencies: 153 +* Version: 1.0.7 +* GitHub: https://github.com/SSSYDYSSS/TransProR +* Source code: https://github.com/cran/TransProR +* Date/Publication: 2025-09-12 12:10:02 UTC +* Number of recursive dependencies: 201 -Run `revdepcheck::cloud_details(, "tidycomm")` for more info +Run `revdepcheck::cloud_details(, "TransProR")` for more info
@@ -9348,7 +12144,7 @@ Run `revdepcheck::cloud_details(, "tidycomm")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/tidycomm/new/tidycomm.Rcheck’ +* using log directory ‘/tmp/workdir/TransProR/new/TransProR.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -9357,13 +12153,13 @@ Run `revdepcheck::cloud_details(, "tidycomm")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘tidycomm/DESCRIPTION’ ... OK +* checking for file ‘TransProR/DESCRIPTION’ ... OK ... -* this is package ‘tidycomm’ version ‘0.4.2’ -* package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘MBESS’ +Package required but not available: ‘ggtree’ + +Package suggested but not available for checking: ‘ggtreeExtra’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -9378,7 +12174,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/tidycomm/old/tidycomm.Rcheck’ +* using log directory ‘/tmp/workdir/TransProR/old/TransProR.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -9387,13 +12183,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘tidycomm/DESCRIPTION’ ... OK +* checking for file ‘TransProR/DESCRIPTION’ ... OK ... -* this is package ‘tidycomm’ version ‘0.4.2’ -* package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘MBESS’ +Package required but not available: ‘ggtree’ + +Package suggested but not available for checking: ‘ggtreeExtra’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -9405,17 +12201,69 @@ Status: 1 ERROR ``` -# tidySEM +# TriDimRegression
-* Version: 0.2.10 -* GitHub: https://github.com/cjvanlissa/tidySEM -* Source code: https://github.com/cran/tidySEM -* Date/Publication: 2026-01-11 06:10:10 UTC -* Number of recursive dependencies: 232 +* Version: 1.0.3 +* GitHub: https://github.com/alexander-pastukhov/tridim-regression +* Source code: https://github.com/cran/TriDimRegression +* Date/Publication: 2025-10-09 16:50:02 UTC +* Number of recursive dependencies: 91 -Run `revdepcheck::cloud_details(, "tidySEM")` for more info +Run `revdepcheck::cloud_details(, "TriDimRegression")` for more info + +
+ +## In both + +* checking whether package ‘TriDimRegression’ can be installed ... ERROR + ``` + Installation failed. + See ‘/tmp/workdir/TriDimRegression/new/TriDimRegression.Rcheck/00install.out’ for details. + ``` + +## Installation + +### Devel + +``` +* installing *source* package ‘TriDimRegression’ ... +** package ‘TriDimRegression’ successfully unpacked and MD5 sums checked +** using staged installation +Error in loadNamespace(x) : there is no package called ‘rstantools’ +Calls: loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: configuration failed for package ‘TriDimRegression’ +* removing ‘/tmp/workdir/TriDimRegression/new/TriDimRegression.Rcheck/TriDimRegression’ + + +``` +### CRAN + +``` +* installing *source* package ‘TriDimRegression’ ... +** package ‘TriDimRegression’ successfully unpacked and MD5 sums checked +** using staged installation +Error in loadNamespace(x) : there is no package called ‘rstantools’ +Calls: loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart +Execution halted +ERROR: configuration failed for package ‘TriDimRegression’ +* removing ‘/tmp/workdir/TriDimRegression/old/TriDimRegression.Rcheck/TriDimRegression’ + + +``` +# ufs + +
+ +* Version: 25.7.1 +* GitHub: NA +* Source code: https://github.com/cran/ufs +* Date/Publication: 2025-07-29 12:10:02 UTC +* Number of recursive dependencies: 154 + +Run `revdepcheck::cloud_details(, "ufs")` for more info
@@ -9424,7 +12272,7 @@ Run `revdepcheck::cloud_details(, "tidySEM")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/tidySEM/new/tidySEM.Rcheck’ +* using log directory ‘/tmp/workdir/ufs/new/ufs.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -9433,16 +12281,16 @@ Run `revdepcheck::cloud_details(, "tidySEM")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘tidySEM/DESCRIPTION’ ... OK +* checking for file ‘ufs/DESCRIPTION’ ... OK ... -* checking files in ‘vignettes’ ... 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 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’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK * DONE Status: 2 NOTEs @@ -9454,7 +12302,7 @@ Status: 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/tidySEM/old/tidySEM.Rcheck’ +* using log directory ‘/tmp/workdir/ufs/old/ufs.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -9463,16 +12311,16 @@ Status: 2 NOTEs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘tidySEM/DESCRIPTION’ ... OK +* checking for file ‘ufs/DESCRIPTION’ ... OK ... -* checking files in ‘vignettes’ ... 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 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’ -* checking for unstated dependencies in vignettes ... OK -* checking package vignettes ... OK -* checking re-building of vignette outputs ... OK * DONE Status: 2 NOTEs @@ -9481,17 +12329,17 @@ Status: 2 NOTEs ``` -# tinyarray +# VecDep
-* Version: 2.4.3 -* GitHub: https://github.com/xjsun1221/tinyarray -* Source code: https://github.com/cran/tinyarray -* Date/Publication: 2025-03-05 13:20:02 UTC -* Number of recursive dependencies: 264 +* Version: 0.1.3 +* GitHub: https://github.com/StevenDeKeyser98/VecDep +* Source code: https://github.com/cran/VecDep +* Date/Publication: 2024-11-14 13:50:19 UTC +* Number of recursive dependencies: 94 -Run `revdepcheck::cloud_details(, "tinyarray")` for more info +Run `revdepcheck::cloud_details(, "VecDep")` for more info
@@ -9500,7 +12348,7 @@ Run `revdepcheck::cloud_details(, "tinyarray")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/tinyarray/new/tinyarray.Rcheck’ +* using log directory ‘/tmp/workdir/VecDep/new/VecDep.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -9509,13 +12357,13 @@ Run `revdepcheck::cloud_details(, "tinyarray")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘tinyarray/DESCRIPTION’ ... OK +* checking for file ‘VecDep/DESCRIPTION’ ... OK ... -* this is package ‘tinyarray’ version ‘2.4.3’ -* package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘clusterProfiler’ +Package required but not available: ‘HAC’ + +Package suggested but not available for checking: ‘copula’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -9530,7 +12378,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/tinyarray/old/tinyarray.Rcheck’ +* using log directory ‘/tmp/workdir/VecDep/old/VecDep.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -9539,13 +12387,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘tinyarray/DESCRIPTION’ ... OK +* checking for file ‘VecDep/DESCRIPTION’ ... OK ... -* this is package ‘tinyarray’ version ‘2.4.3’ -* package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘clusterProfiler’ +Package required but not available: ‘HAC’ + +Package suggested but not available for checking: ‘copula’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -9557,17 +12405,16 @@ Status: 1 ERROR ``` -# tourr +# VizModules
-* Version: 1.2.6 -* GitHub: https://github.com/ggobi/tourr -* Source code: https://github.com/cran/tourr -* Date/Publication: 2025-07-13 23:50:02 UTC -* Number of recursive dependencies: 116 +* Version: NA +* GitHub: NA +* Source code: https://github.com/cran/VizModules +* Number of recursive dependencies: 132 -Run `revdepcheck::cloud_details(, "tourr")` for more info +Run `revdepcheck::cloud_details(, "VizModules")` for more info
@@ -9576,27 +12423,7 @@ Run `revdepcheck::cloud_details(, "tourr")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/tourr/new/tourr.Rcheck’ -* using R version 4.4.0 (2024-04-24) -* using platform: x86_64-pc-linux-gnu -* R was compiled by - gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 - GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 -* running under: Ubuntu 24.04.3 LTS -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘tourr/DESCRIPTION’ ... OK -... -* this is package ‘tourr’ version ‘1.2.6’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘energy’ -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR @@ -9606,44 +12433,24 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/tourr/old/tourr.Rcheck’ -* using R version 4.4.0 (2024-04-24) -* using platform: x86_64-pc-linux-gnu -* R was compiled by - gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 - GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 -* running under: Ubuntu 24.04.3 LTS -* using session charset: UTF-8 -* using option ‘--no-manual’ -* checking for file ‘tourr/DESCRIPTION’ ... OK -... -* this is package ‘tourr’ version ‘1.2.6’ -* package encoding: UTF-8 -* checking package namespace information ... OK -* checking package dependencies ... ERROR -Package required but not available: ‘energy’ -See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ -manual. -* DONE -Status: 1 ERROR ``` -# TransProR +# WINS
-* Version: 1.0.7 -* GitHub: https://github.com/SSSYDYSSS/TransProR -* Source code: https://github.com/cran/TransProR -* Date/Publication: 2025-09-12 12:10:02 UTC -* Number of recursive dependencies: 207 +* Version: 1.5.1 +* GitHub: NA +* Source code: https://github.com/cran/WINS +* Date/Publication: 2025-07-02 06:30:02 UTC +* Number of recursive dependencies: 109 -Run `revdepcheck::cloud_details(, "TransProR")` for more info +Run `revdepcheck::cloud_details(, "WINS")` for more info
@@ -9652,7 +12459,7 @@ Run `revdepcheck::cloud_details(, "TransProR")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/TransProR/new/TransProR.Rcheck’ +* using log directory ‘/tmp/workdir/WINS/new/WINS.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -9661,13 +12468,13 @@ Run `revdepcheck::cloud_details(, "TransProR")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘TransProR/DESCRIPTION’ ... OK +* checking for file ‘WINS/DESCRIPTION’ ... OK ... +* this is package ‘WINS’ version ‘1.5.1’ +* package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘ggtree’ - -Package suggested but not available for checking: ‘ggtreeExtra’ +Package required but not available: ‘copula’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -9682,7 +12489,7 @@ Status: 1 ERROR ### CRAN ``` -* using log directory ‘/tmp/workdir/TransProR/old/TransProR.Rcheck’ +* using log directory ‘/tmp/workdir/WINS/old/WINS.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -9691,13 +12498,13 @@ Status: 1 ERROR * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘TransProR/DESCRIPTION’ ... OK +* checking for file ‘WINS/DESCRIPTION’ ... OK ... +* this is package ‘WINS’ version ‘1.5.1’ +* package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR -Package required but not available: ‘ggtree’ - -Package suggested but not available for checking: ‘ggtreeExtra’ +Package required but not available: ‘copula’ See section ‘The DESCRIPTION file’ in the ‘Writing R Extensions’ manual. @@ -9709,69 +12516,17 @@ Status: 1 ERROR ``` -# TriDimRegression - -
- -* Version: 1.0.3 -* GitHub: https://github.com/alexander-pastukhov/tridim-regression -* Source code: https://github.com/cran/TriDimRegression -* Date/Publication: 2025-10-09 16:50:02 UTC -* Number of recursive dependencies: 91 - -Run `revdepcheck::cloud_details(, "TriDimRegression")` for more info - -
- -## In both - -* checking whether package ‘TriDimRegression’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/TriDimRegression/new/TriDimRegression.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘TriDimRegression’ ... -** package ‘TriDimRegression’ successfully unpacked and MD5 sums checked -** using staged installation -Error in loadNamespace(x) : there is no package called ‘rstantools’ -Calls: loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: configuration failed for package ‘TriDimRegression’ -* removing ‘/tmp/workdir/TriDimRegression/new/TriDimRegression.Rcheck/TriDimRegression’ - - -``` -### CRAN - -``` -* installing *source* package ‘TriDimRegression’ ... -** package ‘TriDimRegression’ successfully unpacked and MD5 sums checked -** using staged installation -Error in loadNamespace(x) : there is no package called ‘rstantools’ -Calls: loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart -Execution halted -ERROR: configuration failed for package ‘TriDimRegression’ -* removing ‘/tmp/workdir/TriDimRegression/old/TriDimRegression.Rcheck/TriDimRegression’ - - -``` -# ufs +# wmwAUC
-* Version: 25.7.1 -* GitHub: NA -* Source code: https://github.com/cran/ufs -* Date/Publication: 2025-07-29 12:10:02 UTC -* Number of recursive dependencies: 158 +* Version: 0.2.0 +* GitHub: https://github.com/grendar/wmwAUC +* Source code: https://github.com/cran/wmwAUC +* Date/Publication: 2025-12-19 14:20:02 UTC +* Number of recursive dependencies: 144 -Run `revdepcheck::cloud_details(, "ufs")` for more info +Run `revdepcheck::cloud_details(, "wmwAUC")` for more info
@@ -9780,7 +12535,7 @@ Run `revdepcheck::cloud_details(, "ufs")` for more info ### Devel ``` -* using log directory ‘/tmp/workdir/ufs/new/ufs.Rcheck’ +* using log directory ‘/tmp/workdir/wmwAUC/new/wmwAUC.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -9789,18 +12544,18 @@ Run `revdepcheck::cloud_details(, "ufs")` for more info * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ufs/DESCRIPTION’ ... OK +* checking for file ‘wmwAUC/DESCRIPTION’ ... 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 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: 2 NOTEs +Status: OK @@ -9810,7 +12565,7 @@ Status: 2 NOTEs ### CRAN ``` -* using log directory ‘/tmp/workdir/ufs/old/ufs.Rcheck’ +* using log directory ‘/tmp/workdir/wmwAUC/old/wmwAUC.Rcheck’ * using R version 4.4.0 (2024-04-24) * using platform: x86_64-pc-linux-gnu * R was compiled by @@ -9819,18 +12574,18 @@ Status: 2 NOTEs * running under: Ubuntu 24.04.3 LTS * using session charset: UTF-8 * using option ‘--no-manual’ -* checking for file ‘ufs/DESCRIPTION’ ... OK +* checking for file ‘wmwAUC/DESCRIPTION’ ... 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 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: 2 NOTEs +Status: OK @@ -10032,7 +12787,7 @@ Run `revdepcheck::cloud_details(, "xxdi")` for more info * GitHub: NA * Source code: https://github.com/cran/XYomics * Date/Publication: 2026-01-08 19:30:09 UTC -* Number of recursive dependencies: 214 +* Number of recursive dependencies: 213 Run `revdepcheck::cloud_details(, "XYomics")` for more info @@ -10099,4 +12854,80 @@ Status: 1 ERROR +``` +# zenplots + +
+ +* Version: 1.0.7 +* GitHub: https://github.com/great-northern-diver/zenplots +* Source code: https://github.com/cran/zenplots +* Date/Publication: 2025-09-09 07:50:03 UTC +* Number of recursive dependencies: 115 + +Run `revdepcheck::cloud_details(, "zenplots")` for more info + +
+ +## Error before installation + +### Devel + +``` +* using log directory ‘/tmp/workdir/zenplots/new/zenplots.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘zenplots/DESCRIPTION’ ... OK +... +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 NOTE + + + + + +``` +### CRAN + +``` +* using log directory ‘/tmp/workdir/zenplots/old/zenplots.Rcheck’ +* using R version 4.4.0 (2024-04-24) +* using platform: x86_64-pc-linux-gnu +* R was compiled by + gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 + GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 +* running under: Ubuntu 24.04.3 LTS +* using session charset: UTF-8 +* using option ‘--no-manual’ +* checking for file ‘zenplots/DESCRIPTION’ ... OK +... +* checking files in ‘vignettes’ ... OK +* checking examples ... OK +* checking for unstated dependencies in ‘tests’ ... OK +* checking tests ... OK + Running ‘testthat.R’ +* checking for unstated dependencies in vignettes ... OK +* checking package vignettes ... OK +* checking re-building of vignette outputs ... OK +* DONE +Status: 1 NOTE + + + + + ``` diff --git a/revdep/problems.md b/revdep/problems.md index bdd71fc4ff..f67032a95b 100644 --- a/revdep/problems.md +++ b/revdep/problems.md @@ -1,376 +1,3 @@ -# bfw - -
- -* Version: 0.4.2 -* GitHub: https://github.com/oeysan/bfw -* Source code: https://github.com/cran/bfw -* Date/Publication: 2022-02-22 14:20:02 UTC -* Number of recursive dependencies: 98 - -Run `revdepcheck::cloud_details(, "bfw")` for more info - -
- -## Newly broken - -* checking Rd cross-references ... WARNING - ``` - Missing link or links in Rd file 'PlotMean.Rd': - ‘[ggplot2]{ggplot2-ggproto}’ - - See section 'Cross-references' in the 'Writing R Extensions' manual. - ``` - -# crayons - -
- -* Version: 0.0.4 -* GitHub: https://github.com/christopherkenny/crayons -* Source code: https://github.com/cran/crayons -* Date/Publication: 2025-09-02 07:30:14 UTC -* Number of recursive dependencies: 20 - -Run `revdepcheck::cloud_details(, "crayons")` for more info - -
- -## Newly broken - -* checking Rd cross-references ... WARNING - ``` - Missing link or links in Rd file 'scale_crayons.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Scale}’ - - See section 'Cross-references' in the 'Writing R Extensions' manual. - ``` - -# cycleTrendR - -
- -* Version: 0.3.0 -* GitHub: https://github.com/PietroPiu-labstats/cycleTrendR -* Source code: https://github.com/cran/cycleTrendR -* Date/Publication: 2026-01-26 09:50:08 UTC -* Number of recursive dependencies: 94 - -Run `revdepcheck::cloud_details(, "cycleTrendR")` for more info - -
- -## Newly broken - -* checking tests ... ERROR - ``` - Running ‘testthat.R’ - Running the tests in ‘tests/testthat.R’ failed. - Complete output: - > # This file is part of the standard setup for testthat. - > # It is recommended that you do not modify it. - > # - > # Where should you do additional test configuration? - > # Learn more about the roles of various files in: - > # * https://r-pkgs.org/testing-design.html#sec-tests-files-overview - > # * https://testthat.r-lib.org/articles/special-files.html - ... - Error in `stats::stl(tsdata, s.window = "periodic", robust = stlrobust)`: series is not periodic or has less than two periods - Backtrace: - ▆ - 1. └─cycleTrendR::adaptive_cycle_trend_analysis(...) at test-dates_type.R:5:3 - 2. └─stats::stl(tsdata, s.window = "periodic", robust = stlrobust) - - [ FAIL 1 | WARN 4 | SKIP 0 | PASS 6 ] - Error: - ! Test failures. - Execution halted - ``` - -# eks - -
- -* Version: 1.1.2 -* GitHub: NA -* Source code: https://github.com/cran/eks -* Date/Publication: 2025-12-08 09:50:10 UTC -* Number of recursive dependencies: 80 - -Run `revdepcheck::cloud_details(, "eks")` for more info - -
- -## Newly broken - -* checking whether package ‘eks’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/eks/new/eks.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘eks’ ... -** package ‘eks’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** data -** inst -** byte-compile and prepare package for lazy loading -Error in ggplot2::ggproto("StatContourKs", ggplot2::StatContour, dropped_aes = "weight", : - Members of a object cannot have duplicate names -("dropped_aes"). -Error: unable to load R code in package ‘eks’ -Execution halted -ERROR: lazy loading failed for package ‘eks’ -* removing ‘/tmp/workdir/eks/new/eks.Rcheck/eks’ - - -``` -### CRAN - -``` -* installing *source* package ‘eks’ ... -** package ‘eks’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** data -** inst -** byte-compile and prepare package for lazy loading -** help -*** installing help indices -** building package indices -** installing vignettes -** testing if installed package can be loaded from temporary location -** testing if installed package can be loaded from final location -** testing if installed package keeps a record of temporary installation path -* DONE (eks) - - -``` -# flexoki - -
- -* Version: 0.0.2 -* GitHub: https://github.com/christopherkenny/flexoki -* Source code: https://github.com/cran/flexoki -* Date/Publication: 2025-09-03 16:20:12 UTC -* Number of recursive dependencies: 20 - -Run `revdepcheck::cloud_details(, "flexoki")` for more info - -
- -## Newly broken - -* checking Rd cross-references ... WARNING - ``` - Missing link or links in Rd file 'scale_flexoki_b.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Scale}’ - - Missing link or links in Rd file 'scale_flexoki_c.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Scale}’ - - Missing link or links in Rd file 'scale_flexoki_d.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Scale}’ - - See section 'Cross-references' in the 'Writing R Extensions' manual. - ``` - -# geomtextpath - -
- -* Version: 0.2.0 -* GitHub: https://github.com/AllanCameron/geomtextpath -* Source code: https://github.com/cran/geomtextpath -* Date/Publication: 2025-07-21 12:10:02 UTC -* Number of recursive dependencies: 84 - -Run `revdepcheck::cloud_details(, "geomtextpath")` for more info - -
- -## Newly broken - -* checking tests ... ERROR - ``` - Running ‘testthat.R’ - Running the tests in ‘tests/testthat.R’ failed. - Complete output: - > library(testthat) - > library(geomtextpath) - Loading required package: ggplot2 - > - > test_check("geomtextpath") - Saving _problems/test-textpathgrob-81.R - [ FAIL 1 | WARN 139 | SKIP 5 | PASS 464 ] - ... - Expected `class(res)` to equal `c("zeroGrob", "grob", "gDesc")`. - Differences: - `actual`: "zeroGrob" "null" "grob" "gDesc" - `expected`: "zeroGrob" "grob" "gDesc" - - - [ FAIL 1 | WARN 139 | SKIP 5 | PASS 464 ] - Error: - ! Test failures. - Execution halted - ``` - -# ggalluvial - -
- -* Version: 0.12.5 -* GitHub: https://github.com/corybrunson/ggalluvial -* Source code: https://github.com/cran/ggalluvial -* Date/Publication: 2023-02-22 09:50:02 UTC -* Number of recursive dependencies: 89 - -Run `revdepcheck::cloud_details(, "ggalluvial")` for more info - -
- -## Newly broken - -* checking Rd cross-references ... WARNING - ``` - Missing link or links in Rd file 'ggalluvial-ggproto.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::ggplot2-ggproto}’ - - See section 'Cross-references' in the 'Writing R Extensions' manual. - ``` - -# GGally - -
- -* Version: 2.4.0 -* GitHub: https://github.com/ggobi/ggally -* Source code: https://github.com/cran/GGally -* Date/Publication: 2025-08-23 07:00:02 UTC -* Number of recursive dependencies: 138 - -Run `revdepcheck::cloud_details(, "GGally")` for more info - -
- -## Newly broken - -* checking tests ... ERROR - ``` - Running ‘spelling.R’ - Running ‘testthat.R’ - Running the tests in ‘tests/testthat.R’ failed. - Complete output: - > # This file is part of the standard setup for testthat. - > # It is recommended that you do not modify it. - > # - > # Where should you do additional test configuration? - > # Learn more about the roles of various files in: - > # * https://r-pkgs.org/testing-design.html#sec-tests-files-overview - ... - Expected `ggsurv(...)` to run silently. - Actual noise: warnings. - ── Failure ('test-ggsurv.R:69:3'): stops ─────────────────────────────────────── - Expected `ggsurv(sf.kid, CI = TRUE, lty.est = 1:4)` to run silently. - Actual noise: warnings. - - [ FAIL 2 | WARN 5 | SKIP 31 | PASS 515 ] - Error: - ! Test failures. - Execution halted - ``` - -# ggarchery - -
- -* Version: 0.4.4 -* GitHub: https://github.com/mdhall272/ggarchery -* Source code: https://github.com/cran/ggarchery -* Date/Publication: 2025-07-24 13:10:08 UTC -* Number of recursive dependencies: 29 - -Run `revdepcheck::cloud_details(, "ggarchery")` for more info - -
- -## Newly broken - -* checking Rd cross-references ... WARNING - ``` - Missing link or links in Rd file 'ggarchery-ggproto.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::ggplot2-ggproto}’ - - See section 'Cross-references' in the 'Writing R Extensions' manual. - ``` - -# ggChernoff - -
- -* Version: 0.3.0 -* GitHub: https://github.com/Selbosh/ggChernoff -* Source code: https://github.com/cran/ggChernoff -* Date/Publication: 2022-11-17 13:10:01 UTC -* Number of recursive dependencies: 17 - -Run `revdepcheck::cloud_details(, "ggChernoff")` for more info - -
- -## Newly broken - -* checking whether package ‘ggChernoff’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/ggChernoff/new/ggChernoff.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘ggChernoff’ ... -** package ‘ggChernoff’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** byte-compile and prepare package for lazy loading -Error in ggproto("GeomChernoff", ggplot2::Geom, required_aes = c("x", : - Members of a object cannot have duplicate names ("draw_key"). -Error: unable to load R code in package ‘ggChernoff’ -Execution halted -ERROR: lazy loading failed for package ‘ggChernoff’ -* removing ‘/tmp/workdir/ggChernoff/new/ggChernoff.Rcheck/ggChernoff’ - - -``` -### CRAN - -``` -* installing *source* package ‘ggChernoff’ ... -** package ‘ggChernoff’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** byte-compile and prepare package for lazy loading -** help -*** installing help indices -** building package indices -** testing if installed package can be loaded from temporary location -** testing if installed package can be loaded from final location -** testing if installed package keeps a record of temporary installation path -* DONE (ggChernoff) - - -``` # ggdibbler
@@ -389,27 +16,22 @@ Run `revdepcheck::cloud_details(, "ggdibbler")` for more info * checking for code/documentation mismatches ... WARNING ``` - Codoc mismatches from Rd file 'geom_linerange_sample.Rd': - geom_linerange_sample - Code: function(mapping = NULL, data = NULL, stat = "identity_sample", + Codoc mismatches from Rd file 'geom_boxplot_sample.Rd': + stat_boxplot_sample + Code: function(mapping = NULL, data = NULL, geom = "boxplot", position = "identity", ..., times = 10, orientation = - NA, seed = NULL, lineend = "butt", arrow = NULL, - arrow.fill = NULL, na.rm = FALSE, show.legend = NA, - inherit.aes = TRUE) - Docs: function(mapping = NULL, data = NULL, stat = "identity_sample", + NA, seed = NULL, coef = 1.5, quantile.type = 7, na.rm + = FALSE, show.legend = NA, inherit.aes = TRUE) + Docs: function(mapping = NULL, data = NULL, geom = "boxplot", position = "identity", ..., times = 10, orientation = - NA, seed = NULL, lineend = "butt", na.rm = FALSE, - ... - position = "identity", ..., times = 10, seed = NULL, - curvature = 0.5, angle = 90, ncp = 5, arrow = NULL, - arrow.fill = NULL, lineend = "butt", na.rm = FALSE, + NA, seed = NULL, coef = 1.5, na.rm = FALSE, show.legend = NA, inherit.aes = TRUE) Argument names in code not in docs: - shape - Mismatches in argument names (first 3): - Position: 11 Code: shape Docs: arrow - Position: 12 Code: arrow Docs: arrow.fill - Position: 13 Code: arrow.fill Docs: lineend + quantile.type + Mismatches in argument names: + Position: 10 Code: quantile.type Docs: na.rm + Position: 11 Code: na.rm Docs: show.legend + Position: 12 Code: show.legend Docs: inherit.aes ``` ## In both @@ -428,145 +50,17 @@ Run `revdepcheck::cloud_details(, "ggdibbler")` for more info Note: found 124 marked UTF-8 strings ``` -# ggdist - -
- -* Version: 3.3.3 -* GitHub: https://github.com/mjskay/ggdist -* Source code: https://github.com/cran/ggdist -* Date/Publication: 2025-04-23 00:20:02 UTC -* Number of recursive dependencies: 126 - -Run `revdepcheck::cloud_details(, "ggdist")` for more info - -
- -## Newly broken - -* checking Rd cross-references ... WARNING - ``` - Missing link or links in Rd file 'geom_blur_dots.Rd': - ‘[ggplot2:ggplot2-ggproto]{Position}’ - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Scale}’ - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Geom}’ - - Missing link or links in Rd file 'geom_dots.Rd': - ‘[ggplot2:ggplot2-ggproto]{Position}’ - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Scale}’ - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Geom}’ - - ... - ‘[ggplot2:ggplot2-ggproto]{Geom}’ - ‘[ggplot2:ggplot2-ggproto]{Position}’ - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Scale}’ - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Stat}’ - - Missing link or links in Rd file 'sub-geometry-scales.Rd': - ‘[ggplot2:ggplot2-ggproto]{Guide}’ - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Scale}’ - - See section 'Cross-references' in the 'Writing R Extensions' manual. - ``` - -## In both - -* checking installed package size ... NOTE - ``` - installed size is 5.6Mb - sub-directories of 1Mb or more: - R 1.5Mb - doc 1.3Mb - help 1.5Mb - ``` - -# ggfields - -
- -* Version: 0.0.7 -* GitHub: https://github.com/pepijn-devries/ggfields -* Source code: https://github.com/cran/ggfields -* Date/Publication: 2025-06-19 23:00:02 UTC -* Number of recursive dependencies: 103 - -Run `revdepcheck::cloud_details(, "ggfields")` for more info - -
- -## Newly broken - -* checking Rd cross-references ... WARNING - ``` - Missing link or links in Rd file 'scale.Rd': - ‘[ggplot2:ggplot2-ggproto]{Scale}’ - - See section 'Cross-references' in the 'Writing R Extensions' manual. - ``` - -# ggformula - -
- -* Version: 1.0.1 -* GitHub: https://github.com/ProjectMOSAIC/ggformula -* Source code: https://github.com/cran/ggformula -* Date/Publication: 2026-01-17 06:10:38 UTC -* Number of recursive dependencies: 133 - -Run `revdepcheck::cloud_details(, "ggformula")` for more info - -
- -## Newly broken - -* checking examples ... ERROR - ``` - Running examples in ‘ggformula-Ex.R’ failed - The error most likely occurred in: - - > ### Name: gf_hex_interactive - > ### Title: Interactive hex plots - > ### Aliases: gf_hex_interactive - > - > ### ** Examples - > - > gf_hex_interactive(mpg ~ wt, data = mtcars, - ... - 34. │ ├─vctrs::vec_rep_each(data[c("x", "y", "radius")], times = 6L) - 35. │ ├─data[c("x", "y", "radius")] - 36. │ └─base::`[.data.frame`(data, c("x", "y", "radius")) - 37. │ └─base::stop("undefined columns selected") - 38. └─base::.handleSimpleError(...) - 39. └─rlang (local) h(simpleError(msg, call)) - 40. └─handlers[[1L]](cnd) - 41. └─cli::cli_abort(...) - 42. └─rlang::abort(...) - Execution halted - ``` - -## In both - -* checking installed package size ... NOTE - ``` - installed size is 10.3Mb - sub-directories of 1Mb or more: - R 1.5Mb - doc 2.6Mb - help 1.6Mb - ``` - -# ggfortify +# simRestore
-* Version: 0.4.19 -* GitHub: https://github.com/sinhrks/ggfortify -* Source code: https://github.com/cran/ggfortify -* Date/Publication: 2025-07-27 05:20:02 UTC -* Number of recursive dependencies: 121 +* Version: 1.1.5 +* GitHub: NA +* Source code: https://github.com/cran/simRestore +* Date/Publication: 2025-10-27 13:10:02 UTC +* Number of recursive dependencies: 78 -Run `revdepcheck::cloud_details(, "ggfortify")` for more info +Run `revdepcheck::cloud_details(, "simRestore")` for more info
@@ -574,789 +68,26 @@ Run `revdepcheck::cloud_details(, "ggfortify")` for more info * checking tests ... ERROR ``` - Running ‘test-all.R’ - Running the tests in ‘tests/test-all.R’ failed. + Running ‘testthat.R’ + Running the tests in ‘tests/testthat.R’ failed. Complete output: > library(testthat) + > library(simRestore) > - > suppressWarnings(RNGversion("3.5.0")) - > set.seed(1, sample.kind = "Rejection") - > - > test_check('ggfortify') - Loading required package: ggfortify + > test_check("simRestore") + Saving _problems/test-optimize_static-21.R + Saving _problems/test-optimize_static-22.R + [ FAIL 2 | WARN 0 | SKIP 0 | PASS 79 ] ... - 10. │ ├─base::paste(chr(...), collapse = "\n") - 11. │ └─rlang::chr(...) - 12. │ └─rlang::dots_values(...) - 13. └─lifecycle:::lifecycle_message(...) - 14. └─lifecycle:::spec(what, env, signaller = signaller) + ── Failure ('test-optimize_static.R:22:3'): simple optimization ──────────────── + Expected `length(vx$results$t)` to equal 5. + Differences: + 1/1 mismatches + [1] 4 - 5 == -1 - [ FAIL 2 | WARN 10 | SKIP 48 | PASS 715 ] + [ FAIL 2 | WARN 0 | SKIP 0 | PASS 79 ] Error: ! Test failures. Execution halted ``` -# gggda - -
- -* Version: 0.1.1 -* GitHub: https://github.com/corybrunson/gggda -* Source code: https://github.com/cran/gggda -* Date/Publication: 2025-07-19 23:50:02 UTC -* Number of recursive dependencies: 94 - -Run `revdepcheck::cloud_details(, "gggda")` for more info - -
- -## Newly broken - -* checking Rd cross-references ... WARNING - ``` - Missing link or links in Rd file 'gggda-ggproto.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::ggplot2-ggproto}’ - - See section 'Cross-references' in the 'Writing R Extensions' manual. - ``` - -# gghexsize - -
- -* Version: 0.1.0 -* GitHub: https://github.com/hrryt/gghexsize -* Source code: https://github.com/cran/gghexsize -* Date/Publication: 2025-05-13 09:00:02 UTC -* Number of recursive dependencies: 19 - -Run `revdepcheck::cloud_details(, "gghexsize")` for more info - -
- -## Newly broken - -* checking Rd cross-references ... WARNING - ``` - Missing link or links in Rd file 'scale_size_tile.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Scale}’ - - See section 'Cross-references' in the 'Writing R Extensions' manual. - ``` - -# ggiraph - -
- -* Version: 0.9.3 -* GitHub: https://github.com/davidgohel/ggiraph -* Source code: https://github.com/cran/ggiraph -* Date/Publication: 2026-01-19 09:40:02 UTC -* Number of recursive dependencies: 87 - -Run `revdepcheck::cloud_details(, "ggiraph")` for more info - -
- -## Newly broken - -* checking examples ... ERROR - ``` - Running examples in ‘ggiraph-Ex.R’ failed - The error most likely occurred in: - - > ### Name: geom_crossbar_interactive - > ### Title: Create interactive vertical intervals: lines, crossbars & - > ### errorbars - > ### Aliases: geom_crossbar_interactive geom_errorbar_interactive - > ### geom_linerange_interactive geom_pointrange_interactive - > - > ### ** Examples - ... - 20. │ └─base::lapply(...) - 21. │ └─ggplot2 (local) FUN(X[[i]], ...) - 22. │ ├─rlang::inject(self$draw_panel(data, panel_params, coord, !!!params)) - 23. │ └─self$draw_panel(...) - 24. └─base::.handleSimpleError(...) - 25. └─rlang (local) h(simpleError(msg, call)) - 26. └─handlers[[1L]](cnd) - 27. └─cli::cli_abort(...) - 28. └─rlang::abort(...) - Execution halted - ``` - -## In both - -* checking installed package size ... NOTE - ``` - installed size is 9.8Mb - sub-directories of 1Mb or more: - R 1.5Mb - examples 1.8Mb - libs 5.2Mb - ``` - -# ggpattern - -
- -* Version: 1.2.1 -* GitHub: https://github.com/trevorld/ggpattern -* Source code: https://github.com/cran/ggpattern -* Date/Publication: 2025-08-27 05:10:08 UTC -* Number of recursive dependencies: 98 - -Run `revdepcheck::cloud_details(, "ggpattern")` for more info - -
- -## Newly broken - -* checking Rd cross-references ... WARNING - ``` - Missing link or links in Rd file 'geom-docs.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Geom}’ - - Missing link or links in Rd file 'ggpattern-ggproto.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Geom}’ - - Missing link or links in Rd file 'scale_continuous.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Scale}’ - - Missing link or links in Rd file 'scale_discrete.Rd': - ... - Missing link or links in Rd file 'scale_pattern_manual.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Scale}’ - - Missing link or links in Rd file 'scale_pattern_shape.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Scale}’ - - Missing link or links in Rd file 'scale_pattern_size_continuous.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Scale}’ - - See section 'Cross-references' in the 'Writing R Extensions' manual. - ``` - -# ggpmisc - -
- -* Version: 0.6.3 -* GitHub: https://github.com/aphalo/ggpmisc -* Source code: https://github.com/cran/ggpmisc -* Date/Publication: 2025-11-29 17:10:02 UTC -* Number of recursive dependencies: 131 - -Run `revdepcheck::cloud_details(, "ggpmisc")` for more info - -
- -## Newly broken - -* checking Rd cross-references ... WARNING - ``` - Missing link or links in Rd file 'ggpmisc-ggproto.Rd': - ‘[ggplot2]{ggplot2-ggproto}’ - - See section 'Cross-references' in the 'Writing R Extensions' manual. - ``` - -# ggpp - -
- -* Version: 0.6.0 -* GitHub: https://github.com/aphalo/ggpp -* Source code: https://github.com/cran/ggpp -* Date/Publication: 2026-01-18 17:40:02 UTC -* Number of recursive dependencies: 76 - -Run `revdepcheck::cloud_details(, "ggpp")` for more info - -
- -## Newly broken - -* checking Rd cross-references ... WARNING - ``` - Missing link or links in Rd file 'ggpp-ggproto.Rd': - ‘[ggplot2]{ggplot2-ggproto}’ - - See section 'Cross-references' in the 'Writing R Extensions' manual. - ``` - -# ggraph - -
- -* Version: 2.2.2 -* GitHub: https://github.com/thomasp85/ggraph -* Source code: https://github.com/cran/ggraph -* Date/Publication: 2025-08-24 12:20:02 UTC -* Number of recursive dependencies: 113 - -Run `revdepcheck::cloud_details(, "ggraph")` for more info - -
- -## Newly broken - -* checking examples ... ERROR - ``` - Running examples in ‘ggraph-Ex.R’ failed - The error most likely occurred in: - - > ### Name: geom_axis_hive - > ### Title: Draw rectangular bars and labels on hive axes - > ### Aliases: geom_axis_hive - > - > ### ** Examples - > - > # Plot the flare import graph as a hive plot - ... - 19. │ ├─rlang::inject(self$draw_panel(data, panel_params, coord, !!!params)) - 20. │ └─self$draw_panel(data, panel_params, coord, label = TRUE, axis = TRUE) - 21. │ └─ggraph (local) draw_panel(...) - 22. │ └─data %>% group_by(.data$axis) %>% ... - 23. ├─dplyr::summarise(...) - 24. ├─dplyr::group_by(., .data$axis) - 25. └─dplyr:::group_by.data.frame(., .data$axis) - 26. └─dplyr::group_by_prepare(.data, ..., .add = .add, error_call = current_env()) - 27. └─rlang::abort(bullets, call = error_call) - Execution halted - ``` - -* checking re-building of vignette outputs ... ERROR - ``` - Error(s) in re-building vignettes: - --- re-building ‘Edges.Rmd’ using rmarkdown - - Quitting from Edges.Rmd:257-262 [unnamed-chunk-16] - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - Error in `geom_axis_hive()`: - ! Problem while converting geom to grob. - ℹ Error occurred in the 2nd layer. - Caused by error in `group_by()`: - ... - --- finished re-building ‘Nodes.Rmd’ - - --- re-building ‘tidygraph.Rmd’ using rmarkdown - --- finished re-building ‘tidygraph.Rmd’ - - SUMMARY: processing the following files failed: - ‘Edges.Rmd’ ‘Layouts.Rmd’ - - Error: Vignette re-building failed. - Execution halted - ``` - -## In both - -* checking installed package size ... NOTE - ``` - installed size is 10.1Mb - sub-directories of 1Mb or more: - R 1.5Mb - doc 4.0Mb - help 1.7Mb - libs 2.8Mb - ``` - -# ggsankeyfier - -
- -* Version: 0.1.8 -* GitHub: https://github.com/pepijn-devries/ggsankeyfier -* Source code: https://github.com/cran/ggsankeyfier -* Date/Publication: 2024-04-08 13:30:07 UTC -* Number of recursive dependencies: 71 - -Run `revdepcheck::cloud_details(, "ggsankeyfier")` for more info - -
- -## Newly broken - -* checking Rd cross-references ... WARNING - ``` - Missing link or links in Rd file 'position_sankey.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Position}’ - - Missing link or links in Rd file 'scale_waist.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Scale}’ - - See section 'Cross-references' in the 'Writing R Extensions' manual. - ``` - -# ggspectra - -
- -* Version: 0.3.17 -* GitHub: https://github.com/aphalo/ggspectra -* Source code: https://github.com/cran/ggspectra -* Date/Publication: 2025-09-24 18:20:09 UTC -* Number of recursive dependencies: 64 - -Run `revdepcheck::cloud_details(, "ggspectra")` for more info - -
- -## Newly broken - -* checking Rd cross-references ... WARNING - ``` - Missing link or links in Rd file 'gg2spectra-ggproto.Rd': - ‘[ggplot2]{ggplot2-ggproto}’ - - See section 'Cross-references' in the 'Writing R Extensions' manual. - ``` - -# ggtricks - -
- -* Version: 0.1.0 -* GitHub: https://github.com/AbdoulMa/ggtricks -* Source code: https://github.com/cran/ggtricks -* Date/Publication: 2023-05-10 16:00:05 UTC -* Number of recursive dependencies: 60 - -Run `revdepcheck::cloud_details(, "ggtricks")` for more info - -
- -## Newly broken - -* checking Rd cross-references ... WARNING - ``` - Missing link or links in Rd file 'GeomDonut.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Geom}’ - - Missing link or links in Rd file 'GeomDonutSlice.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Geom}’ - - Missing link or links in Rd file 'GeomPie.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Geom}’ - - Missing link or links in Rd file 'GeomSeriesCircles.Rd': - ... - Missing link or links in Rd file 'StatSeriesCircles.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Geom}’ - - Missing link or links in Rd file 'StatSeriesText.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Geom}’ - - Missing link or links in Rd file 'StatSlice.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Geom}’ - - See section 'Cross-references' in the 'Writing R Extensions' manual. - ``` - -# ggvfields - -
- -* Version: 1.0.0 -* GitHub: https://github.com/dusty-turner/ggvfields -* Source code: https://github.com/cran/ggvfields -* Date/Publication: 2025-03-15 17:10:05 UTC -* Number of recursive dependencies: 60 - -Run `revdepcheck::cloud_details(, "ggvfields")` for more info - -
- -## Newly broken - -* checking Rd cross-references ... WARNING - ``` - Missing link or links in Rd file 'geom_stream.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::GeomPath}’ - - See section 'Cross-references' in the 'Writing R Extensions' manual. - ``` - -# lemon - -
- -* Version: 0.5.2 -* GitHub: https://github.com/stefanedwards/lemon -* Source code: https://github.com/cran/lemon -* Date/Publication: 2025-09-04 11:50:02 UTC -* Number of recursive dependencies: 70 - -Run `revdepcheck::cloud_details(, "lemon")` for more info - -
- -## Newly broken - -* checking whether package ‘lemon’ can be installed ... ERROR - ``` - Installation failed. - See ‘/tmp/workdir/lemon/new/lemon.Rcheck/00install.out’ for details. - ``` - -## Installation - -### Devel - -``` -* installing *source* package ‘lemon’ ... -** package ‘lemon’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** inst -** byte-compile and prepare package for lazy loading -Error in ggplot2::ggproto("GeomSideRange", `_inherit` = ggplot2::Geom, : - Members of a object cannot have duplicate names -("default_aes"). -Error: unable to load R code in package ‘lemon’ -Execution halted -ERROR: lazy loading failed for package ‘lemon’ -* removing ‘/tmp/workdir/lemon/new/lemon.Rcheck/lemon’ - - -``` -### CRAN - -``` -* installing *source* package ‘lemon’ ... -** package ‘lemon’ successfully unpacked and MD5 sums checked -** using staged installation -** R -** inst -** byte-compile and prepare package for lazy loading -** help -*** installing help indices -** building package indices -** installing vignettes -** testing if installed package can be loaded from temporary location -** testing if installed package can be loaded from final location -** testing if installed package keeps a record of temporary installation path -* DONE (lemon) - - -``` -# NHSRplotthedots - -
- -* Version: 0.2.2 -* GitHub: https://github.com/nhs-r-community/NHSRplotthedots -* Source code: https://github.com/cran/NHSRplotthedots -* Date/Publication: 2025-09-29 11:00:02 UTC -* Number of recursive dependencies: 111 - -Run `revdepcheck::cloud_details(, "NHSRplotthedots")` for more info - -
- -## Newly broken - -* checking tests ... ERROR - ``` - Running ‘spelling.R’ - Running ‘testthat.R’ - Running the tests in ‘tests/testthat.R’ failed. - Complete output: - > library(testthat) - > library(NHSRplotthedots) - > - > test_check("NHSRplotthedots") - Saving _problems/test-ptd_create_ggplot-85.R - [ FAIL 1 | WARN 0 | SKIP 4 | PASS 555 ] - ... - Expected `inherits(pl, "ggplot2::labels")` to be TRUE. - Differences: - `actual`: FALSE - `expected`: TRUE - - - [ FAIL 1 | WARN 0 | SKIP 4 | PASS 555 ] - Error: - ! Test failures. - Execution halted - ``` - -# NMF - -
- -* Version: 0.28 -* GitHub: NA -* Source code: https://github.com/cran/NMF -* Date/Publication: 2024-08-22 16:20:01 UTC -* Number of recursive dependencies: 129 - -Run `revdepcheck::cloud_details(, "NMF")` for more info - -
- -## Newly broken - -* checking installed package size ... NOTE - ``` - installed size is 5.3Mb - sub-directories of 1Mb or more: - R 2.0Mb - doc 1.0Mb - help 1.5Mb - ``` - -## In both - -* checking re-building of vignette outputs ... WARNING - ``` - Error(s) in re-building vignettes: - --- re-building ‘NMF-vignette.Rnw’ using knitr - Error in citation(x) : there is no package called 'doMC' - Converted 9 of 10 package citations to BibTeX - Writing 11 Bibtex entries ... OK - Results written to file 'Rpackages.bib' - Error: processing vignette 'NMF-vignette.Rnw' failed with diagnostics: - Running 'texi2dvi' on 'NMF-vignette.tex' failed. - LaTeX errors: - ! LaTeX Error: File `a4wide.sty' not found. - ... - l.62 \usepackage - {xspace}^^M - ! ==> Fatal error occurred, no output PDF file produced! - --- failed re-building ‘heatmaps.Rnw’ - - SUMMARY: processing the following files failed: - ‘NMF-vignette.Rnw’ ‘heatmaps.Rnw’ - - Error: Vignette re-building failed. - Execution halted - ``` - -# ordr - -
- -* Version: 0.2.0 -* GitHub: https://github.com/corybrunson/ordr -* Source code: https://github.com/cran/ordr -* Date/Publication: 2025-07-10 21:40:07 UTC -* Number of recursive dependencies: 84 - -Run `revdepcheck::cloud_details(, "ordr")` for more info - -
- -## Newly broken - -* checking Rd cross-references ... WARNING - ``` - Missing link or links in Rd file 'ordr-ggproto.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::ggplot2-ggproto}’ - - See section 'Cross-references' in the 'Writing R Extensions' manual. - ``` - -## In both - -* checking data for non-ASCII characters ... NOTE - ``` - Note: found 4 marked UTF-8 strings - ``` - -# rticulate - -
- -* Version: 2.2.0 -* GitHub: https://github.com/stefanocoretta/rticulate -* Source code: https://github.com/cran/rticulate -* Date/Publication: 2025-09-07 23:30:09 UTC -* Number of recursive dependencies: 107 - -Run `revdepcheck::cloud_details(, "rticulate")` for more info - -
- -## Newly broken - -* checking re-building of vignette outputs ... ERROR - ``` - Error(s) in re-building vignettes: - --- re-building ‘filter-signals.Rmd’ using rmarkdown - --- finished re-building ‘filter-signals.Rmd’ - - --- re-building ‘kinematics.Rmd’ using rmarkdown - --- finished re-building ‘kinematics.Rmd’ - - --- re-building ‘overview.Rmd’ using rmarkdown - --- finished re-building ‘overview.Rmd’ - - ... - :1:4: unexpected numeric constant - 1: 4.0.0 - ^ - --- failed re-building ‘transform-coord.Rmd’ - - SUMMARY: processing the following file failed: - ‘transform-coord.Rmd’ - - Error: Vignette re-building failed. - Execution halted - ``` - -# simaerep - -
- -* Version: 1.0.0 -* GitHub: https://github.com/openpharma/simaerep -* Source code: https://github.com/cran/simaerep -* Date/Publication: 2025-10-28 11:40:02 UTC -* Number of recursive dependencies: 140 - -Run `revdepcheck::cloud_details(, "simaerep")` for more info - -
- -## Newly broken - -* checking tests ... ERROR - ``` - Running ‘spelling.R’ - Running ‘testthat.R’ - Running the tests in ‘tests/testthat.R’ failed. - Complete output: - > library(testthat) - > library(simaerep) - Loading required package: ggplot2 - > - > test_check("simaerep") - Saving _problems/test_plot-24.R - ... - - [ FAIL 3 | WARN 3 | SKIP 9 | PASS 139 ] - Deleting unused snapshots: 'validation/study-025-or.svg', - 'validation/study-025-ur.svg', 'validation/study-050-or.svg', - 'validation/study-050-ur.svg', 'validation/study-075-or.svg', - 'validation/study-075-ur.svg', 'validation/study-100-or.svg', and - 'validation/study-100-ur.svg' - Error: - ! Test failures. - Execution halted - ``` - -# statgenGxE - -
- -* Version: 1.0.11 -* GitHub: https://github.com/Biometris/statgenGxE -* Source code: https://github.com/cran/statgenGxE -* Date/Publication: 2025-11-12 09:20:02 UTC -* Number of recursive dependencies: 82 - -Run `revdepcheck::cloud_details(, "statgenGxE")` for more info - -
- -## Newly broken - -* checking tests ... ERROR - ``` - Running ‘testthat.R’ - Running the tests in ‘tests/testthat.R’ failed. - Complete output: - > library(testthat) - > library(statgenGxE) - > - > test_check("statgenGxE") - Saving _problems/test-plots-449.R - [ FAIL 1 | WARN 3 | SKIP 17 | PASS 491 ] - - ... - ══ Failed tests ════════════════════════════════════════════════════════════════ - ── Failure ('test-plots.R:449:3'): option colorGenoBy in megaEnv plot functions correctly ── - Expected `gbRight$layout[["name"]]` to equal `c("guides", "legend.box.background")`. - Differences: - target is NULL, current is character - - [ FAIL 1 | WARN 3 | SKIP 17 | PASS 491 ] - Error: - ! Test failures. - Execution halted - ``` - -## In both - -* checking package dependencies ... NOTE - ``` - Package suggested but not available for checking: ‘asreml’ - ``` - -# unusualprofile - -
- -* Version: 0.1.4 -* GitHub: https://github.com/wjschne/unusualprofile -* Source code: https://github.com/cran/unusualprofile -* Date/Publication: 2024-02-14 23:20:03 UTC -* Number of recursive dependencies: 97 - -Run `revdepcheck::cloud_details(, "unusualprofile")` for more info - -
- -## Newly broken - -* checking tests ... ERROR - ``` - Running ‘testthat.R’ - Running the tests in ‘tests/testthat.R’ failed. - Complete output: - > library(testthat) - > library(unusualprofile) - > - > test_check("unusualprofile") - Saving _problems/test-main-53.R - [ FAIL 1 | WARN 0 | SKIP 0 | PASS 41 ] - - ══ Failed tests ════════════════════════════════════════════════════════════════ - ── Failure ('test-main.R:44:3'): Example works ───────────────────────────────── - Expected `{ ... }` to run silently. - Actual noise: warnings. - - [ FAIL 1 | WARN 0 | SKIP 0 | PASS 41 ] - Error: - ! Test failures. - Execution halted - ``` - -# wacolors - -
- -* Version: 0.3.1 -* GitHub: https://github.com/CoryMcCartan/wacolors -* Source code: https://github.com/cran/wacolors -* Date/Publication: 2022-03-01 15:50:02 UTC -* Number of recursive dependencies: 56 - -Run `revdepcheck::cloud_details(, "wacolors")` for more info - -
- -## Newly broken - -* checking Rd cross-references ... WARNING - ``` - Missing link or links in Rd file 'scale_wa.Rd': - ‘[ggplot2:ggplot2-ggproto]{ggplot2::Scale}’ - - See section 'Cross-references' in the 'Writing R Extensions' manual. - ``` - diff --git a/tests/testthat/test-plot.R b/tests/testthat/test-plot.R index 45a3e1cede..8f6a94f56b 100644 --- a/tests/testthat/test-plot.R +++ b/tests/testthat/test-plot.R @@ -1,7 +1,7 @@ test_that("ggplot() throws informative errors", { expect_snapshot_error(ggplot(mapping = letters)) expect_snapshot_error(ggplot(data)) - expect_snapshot_warning(ggplot(foobar = "nonsense")) + expect_snapshot_warning(ggplot(NULL, foobar = "nonsense")) }) test_that("construction have user friendly errors", {