Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit bdedfc5

Browse files
committed
revdep updates
1 parent 41f61df commit bdedfc5

File tree

5 files changed

+53
-95
lines changed

5 files changed

+53
-95
lines changed

.Rbuildignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ vignettes/img
1010
figure
1111
.github
1212
^CODE_OF_CONDUCT\.md$
13-
revdep
13+
^revdep$
1414
^cran-comments\.md$
1515
^\.httr-oauth$
1616
^codemeta\.json$

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@
33
.httr-oauth
44
.Rhistory
55
figure
6+
revdep/checks.noindex
7+
revdep/library.noindex
8+
revdep/data.sqlite

revdep/README.md

Lines changed: 31 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,32 @@
1-
# Setup
2-
3-
## Platform
4-
5-
|setting |value |
6-
|:--------|:-------------------------------------------|
7-
|version |R version 3.3.3 Patched (2017-03-15 r72501) |
8-
|system |x86_64, darwin13.4.0 |
9-
|ui |RStudio (1.1.204) |
10-
|language |(EN) |
11-
|collate |en_US.UTF-8 |
12-
|tz |America/Vancouver |
13-
|date |2017-04-20 |
14-
15-
## Packages
16-
17-
|package |* |version |date |source |
18-
|:-------|:--|:-------|:----------|:-------------------------|
19-
|gistr | |0.4.0 |2017-04-20 |local (ropensci/gistr@NA) |
20-
21-
# Check results
22-
6 packages
23-
24-
## geojsonio (0.3.2)
25-
Maintainer: Scott Chamberlain <myrmecocystus@gmail.com>
26-
Bug reports: https://github.com/ropensci/geojsonio/issues
27-
28-
0 errors | 0 warnings | 0 notes
29-
30-
## LDAvis (0.3.2)
31-
Maintainer: Carson Sievert <cpsievert1@gmail.com>
32-
Bug reports: https://github.com/cpsievert/LDAvis/issues
33-
34-
0 errors | 0 warnings | 0 notes
35-
36-
## mapr (0.3.4)
37-
Maintainer: Scott Chamberlain <myrmecocystus@gmail.com>
38-
Bug reports: https://github.com/ropensci/mapr/issues
39-
40-
0 errors | 0 warnings | 0 notes
41-
42-
## pleiades (0.1.0)
43-
Maintainer: Scott Chamberlain <myrmecocystus@gmail.com>
44-
Bug reports: https://github.com/ropensci/pleiades/issues
45-
46-
0 errors | 0 warnings | 0 notes
47-
48-
## rbokeh (0.5.0)
49-
Maintainer: Ryan Hafen <rhafen@gmail.com>
50-
Bug reports: https://github.com/bokeh/rbokeh/issues
51-
52-
0 errors | 0 warnings | 0 notes
53-
54-
## switchrGist (0.2.1)
55-
Maintainer: Gabriel Becker <becker.gabriel@gene.com>
56-
Bug reports: https://github.com/gmbecker/switchrGist/issues
57-
58-
0 errors | 0 warnings | 0 notes
1+
# Platform
2+
3+
|field |value |
4+
|:--------|:----------------------------|
5+
|version |R version 3.5.0 (2018-04-23) |
6+
|os |macOS High Sierra 10.13.5 |
7+
|system |x86_64, darwin15.6.0 |
8+
|ui |X11 |
9+
|language |(EN) |
10+
|collate |en_US.UTF-8 |
11+
|tz |US/Pacific |
12+
|date |2018-06-27 |
13+
14+
# Dependencies
15+
16+
|package |old |new |Δ |
17+
|:-------|:-----|:----------|:--|
18+
|gistr |0.4.0 |0.4.1.9313 |* |
19+
|rlang |NA |0.2.1 |* |
20+
21+
# Revdeps
22+
23+
## All (5)
24+
25+
|package |version |error |warning |note |
26+
|:----------------------------|:-------|:-----|:-------|:----|
27+
|geojsonio |0.6.0 | | | |
28+
|LDAvis |0.3.2 | | | |
29+
|[mapr](problems.md#mapr) |0.4.0 | | |1 |
30+
|pleiades |0.2.0 | | | |
31+
|[rbokeh](problems.md#rbokeh) |0.5.0 | | |1 |
5932

revdep/check.R

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,2 @@
1-
library("devtools")
2-
3-
res <- revdep_check(threads = 4)
4-
revdep_check_save_summary()
5-
revdep_check_print_problems()
6-
revdep_email(date = "April 20", only_problems = FALSE, draft = TRUE)
7-
8-
# pkgs <- list(
9-
# list(your_package = "downscale", your_version = "1.2-4", email = "charliem2003@gmail.com"),
10-
# list(your_package = "plotKML", your_version = "0.5-6", email = "tom.hengl@isric.org"),
11-
# list(your_package = "speciesgeocodeR", your_version = "1.0-4", email = "alexander.zizka@bioenv.gu.se"),
12-
# list(your_package = "rCAT", your_version = "0.1.5", email = "J.Moat@kew.org")
13-
# )
14-
# date = "April 18"
15-
#
16-
# str <- paste0(readLines("revdep/email.md"), collapse = "\n")
17-
# lapply(pkgs, function(x)
18-
# whisker::whisker.render(str, data = x)
19-
# )
1+
library("revdepcheck")
2+
revdep_check(num_workers = 4)

revdep/problems.md

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
1-
# Setup
1+
# mapr
22

3-
## Platform
3+
Version: 0.4.0
44

5-
|setting |value |
6-
|:--------|:-------------------------------------------|
7-
|version |R version 3.3.3 Patched (2017-03-15 r72501) |
8-
|system |x86_64, darwin13.4.0 |
9-
|ui |RStudio (1.1.204) |
10-
|language |(EN) |
11-
|collate |en_US.UTF-8 |
12-
|tz |America/Vancouver |
13-
|date |2017-04-20 |
5+
## In both
146

15-
## Packages
7+
* checking data for non-ASCII characters ... NOTE
8+
```
9+
Note: found 164 marked UTF-8 strings
10+
```
1611
17-
|package |* |version |date |source |
18-
|:-------|:--|:-------|:----------|:-------------------------|
19-
|gistr | |0.4.0 |2017-04-20 |local (ropensci/gistr@NA) |
12+
# rbokeh
2013
21-
# Check results
22-
0 packages with problems
14+
Version: 0.5.0
2315
16+
## In both
17+
18+
* checking dependencies in R code ... NOTE
19+
```
20+
Namespace in Imports field not imported from: ‘ggplot2’
21+
All declared Imports should be used.
22+
```
2423

0 commit comments

Comments
 (0)