Skip to content

Commit

Permalink
initial commit of revdepcheck::revdep_check() and revdepcheck::revdep…
Browse files Browse the repository at this point in the history
…_report()
  • Loading branch information
dkahle committed Jan 29, 2019
1 parent e55c0b2 commit fc5e0fd
Show file tree
Hide file tree
Showing 7 changed files with 658 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,3 +2,4 @@
.Rhistory
.RData
README_cache/
/revdep/.cache.rds
6 changes: 6 additions & 0 deletions revdep/.gitignore
@@ -1 +1,7 @@
checks
library
checks.noindex
library.noindex
data.sqlite
*.html
**/
90 changes: 90 additions & 0 deletions revdep/README.md
@@ -0,0 +1,90 @@
# Platform

|field |value |
|:--------|:----------------------------|
|version |R version 3.5.2 (2018-12-20) |
|os |macOS Mojave 10.14.2 |
|system |x86_64, darwin15.6.0 |
|ui |RStudio |
|language |(EN) |
|collate |en_US.UTF-8 |
|ctype |en_US.UTF-8 |
|tz |America/Chicago |
|date |2019-01-29 |

# Dependencies

|package |old |new |Δ |
|:-------|:-----|:---|:--|
|ggmap |2.6.2 |NA |* |

# Revdeps

## Couldn't check (4)

|package |version |error |warning |note |
|:----------------------------------------------------|:-------|:-----|:-------|:----|
|[BPEC](problems.md#bpec) |1.3.0 |1 | | |
|[DataVisualizations](problems.md#datavisualizations) |1.1.4 |1 | | |
|[momentuHMM](problems.md#momentuhmm) |1.4.3 |1 | | |
|[moveHMM](problems.md#movehmm) |1.6 |1 | | |

## Broken (1)

|package |version |error |warning |note |
|:------------------------|:-------|:------|:-------|:----|
|[ubeR](problems.md#uber) |0.1.4 |__+1__ | | |

## All (48)

|package |version |error |warning |note |
|:----------------------------------------------------|:-------|:------|:-------|:----|
|[aire.zmvm](problems.md#airezmvm) |0.8.0 |1 | |1 |
|[anipaths](problems.md#anipaths) |0.9.6 | | |1 |
|[bioRad](problems.md#biorad) |0.4.0 | | |1 |
|[BPEC](problems.md#bpec) |1.3.0 |1 | | |
|choroplethr |3.6.3 | | | |
|clifro |3.2-1 | | | |
|[countyweather](problems.md#countyweather) |0.1.0 | | |1 |
|[DataVisualizations](problems.md#datavisualizations) |1.1.4 |1 | | |
|earthtones |0.1.1 | | | |
|echor |0.1.1 | | | |
|[epiflows](problems.md#epiflows) |0.2.0 | | |1 |
|[FLightR](problems.md#flightr) |0.4.7 | | |1 |
|GADMTools |3.0-1 | | | |
|geoknife |1.6.1 | | | |
|geomnet |0.2.0 | | | |
|ggfocus |0.9 | | | |
|ggquiver |0.1.0 | | | |
|ggsn |0.4.0 | | | |
|ggsolvencyii |0.1.2 | | | |
|[ggvoronoi](problems.md#ggvoronoi) |0.8.2 |1 | | |
|[helminthR](problems.md#helminthr) |1.0.6 | | |1 |
|[hurricaneexposure](problems.md#hurricaneexposure) |0.0.1 | | |1 |
|[inlabru](problems.md#inlabru) |2.1.9 | | |2 |
|macleish |0.3.2 | | | |
|[mapr](problems.md#mapr) |0.4.0 | | |1 |
|[momentuHMM](problems.md#momentuhmm) |1.4.3 |1 | | |
|move |3.1.0 | | | |
|[moveHMM](problems.md#movehmm) |1.6 |1 | | |
|psyosphere |0.1.4 | | | |
|PWFSLSmoke |1.1.3 | | | |
|RAM |1.2.1.7 | | | |
|rnoaa |0.8.4 | | | |
|rnrfa |1.5.0 | | | |
|ropenaq |0.2.6 | | | |
|[rsinaica](problems.md#rsinaica) |0.6.0 | | |1 |
|SDLfilter |1.1.1 | | | |
|SensusR |2.3.0 | | | |
|sidier |4.0.3 | | | |
|[spew](problems.md#spew) |1.3.0 | |1 |2 |
|SWMPr |2.3.0 | | | |
|[totalcensus](problems.md#totalcensus) |0.5.1 | | |2 |
|[trackeR](problems.md#tracker) |1.2.0 | | |1 |
|tweet2r |1.1 | | | |
|[ubeR](problems.md#uber) |0.1.4 |__+1__ | | |
|[vmsbase](problems.md#vmsbase) |2.2.0 |1 | | |
|[wdpar](problems.md#wdpar) |0.0.1 | | |1 |
|[weathercan](problems.md#weathercan) |0.2.8 | | |2 |
|weatherr |0.1.2 | | | |

6 changes: 3 additions & 3 deletions revdep/check.R
@@ -1,5 +1,5 @@
library("devtools")

res <- revdep_check()
revdep_check_save_summary(res)
revdep_check_save_logs(res)
revdep_check()
revdep_check_save_summary()
revdep_check_print_problems()
Binary file modified revdep/checks.rds
Binary file not shown.
4 changes: 4 additions & 0 deletions revdep/email.yml
@@ -0,0 +1,4 @@
release_date: ???
rel_release_date: ???
my_news_url: ???
release_version: ???

0 comments on commit fc5e0fd

Please sign in to comment.