Skip to content

Commit 42e0d10

Browse files
committed
patch sQuote issue
1 parent 1dc7a41 commit 42e0d10

File tree

5 files changed

+50
-43
lines changed

5 files changed

+50
-43
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: wrapr
22
Type: Package
33
Title: Wrap R Tools for Debugging and Parametric Programming
4-
Version: 1.9.4
5-
Date: 2020-01-16
4+
Version: 1.9.5
5+
Date: 2020-01-18
66
Authors@R: c(
77
person("John", "Mount", email = "[email protected]", role = c("aut", "cre")),
88
person("Nina", "Zumel", email = "[email protected]", role = c("aut")),

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11

2+
# wrapr 1.9.5 2020-01-18
3+
4+
* remove q= from sQuote to, as that feature wasn't added until newer Rs.
5+
26
# wrapr 1.9.4 2020-01-16
37

48
* tolerance on check_equiv_frames

R/stop_if_dot_args.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ stop_if_dot_args <- function(dot_args, msg = "") {
2828
unams <- names(dot_args)[-1]
2929
uvals <- as.character(dot_args)[-1]
3030
saw_blank <- any(nchar(uvals)<=0)
31-
uvals <- sQuote(uvals, q=FALSE)
31+
uvals <- sQuote(uvals)
3232
unams[is.null(unams)] <- ""
3333
not_null <- nchar(unams)>0
3434
unams[not_null] <- paste0(unams[not_null], " = ")

cran-comments.md

Lines changed: 30 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,50 @@
11

2+
This is a quick fix to undo the check-problem my 1.9.4 release caused by using the s= option in sQuote(), which is not available in older Rs.
3+
Please consider accepting this even though it is a quick re-release.
4+
25
## Test environments
36

47
### Windows
58

69
rhub::check_for_cran()
7-
502#> setting _R_CHECK_FORCE_SUGGESTS_ to false
8-
503#> setting R_COMPILE_AND_INSTALL_PACKAGES to never
9-
504#> setting R_REMOTES_STANDALONE to true
10-
505#> setting R_REMOTES_NO_ERRORS_FROM_WARNINGS to true
11-
506#> setting _R_CHECK_FORCE_SUGGESTS_ to true
12-
507#> setting _R_CHECK_CRAN_INCOMING_USE_ASPELL_ to true
13-
508#> * using log directory 'C:/Users/USERFhYOKjJPCy/wrapr.Rcheck'
14-
509#> * using R Under development (unstable) (2020-01-07 r77637)
15-
510#> * using platform: x86_64-w64-mingw32 (64-bit)
16-
511#> * using session charset: ISO8859-1
17-
512#> * using option '--as-cran'
18-
513#> * checking for file 'wrapr/DESCRIPTION' ... OK
19-
514#> * checking extension type ... Package
20-
515#> * this is package 'wrapr' version '1.9.4'
21-
516#> * package encoding: UTF-8
22-
517#> * checking CRAN incoming feasibility ... Note_to_CRAN_maintainers
23-
518#> Maintainer: 'John Mount '
24-
560#> * checking sizes of PDF files under 'inst/doc' ... NOTE
25-
561#> Unable to find GhostScript executable to run checks on size reduction
26-
576#> Status: 1 NOTE
27-
The GhostScript note is a property of the check installation, not the package.
10+
603#> setting _R_CHECK_FORCE_SUGGESTS_ to false
11+
604#> setting R_COMPILE_AND_INSTALL_PACKAGES to never
12+
605#> setting R_REMOTES_STANDALONE to true
13+
606#> setting R_REMOTES_NO_ERRORS_FROM_WARNINGS to true
14+
607#> setting _R_CHECK_FORCE_SUGGESTS_ to true
15+
608#> setting _R_CHECK_CRAN_INCOMING_USE_ASPELL_ to true
16+
609#> * using log directory 'C:/Users/USERcbRUGPhJHI/wrapr.Rcheck'
17+
610#> * using R Under development (unstable) (2020-01-07 r77637)
18+
611#> * using platform: x86_64-w64-mingw32 (64-bit)
19+
612#> * using session charset: ISO8859-1
20+
613#> * using option '--as-cran'
21+
614#> * checking for file 'wrapr/DESCRIPTION' ... OK
22+
615#> * checking extension type ... Package
23+
616#> * this is package 'wrapr' version '1.9.5'
24+
617#> * package encoding: UTF-8
25+
618#> * checking CRAN incoming feasibility ... NOTE
26+
619#> Maintainer: 'John Mount '
27+
620#> Days since last update: 1
28+
662#> * checking sizes of PDF files under 'inst/doc' ... NOTE
29+
663#> Unable to find GhostScript executable to run checks on size reduction
30+
The GhostScript note is a property of the check installation, not the package.
31+
678#> Status: 2 NOTEs
2832

2933
### MacOS
3034

31-
R CMD check --as-cran wrapr_1.9.4.tar.gz
35+
R CMD check --as-cran wrapr_1.9.5.tar.gz
3236
* using R version 3.6.0 (2019-04-26)
3337
* using platform: x86_64-apple-darwin15.6.0 (64-bit)
3438
* using session charset: UTF-8
3539
* using option ‘--as-cran’
3640
* checking for file ‘wrapr/DESCRIPTION’ ... OK
3741
* checking extension type ... Package
38-
* this is package ‘wrapr’ version ‘1.9.4
42+
* this is package ‘wrapr’ version ‘1.9.5
3943
* package encoding: UTF-8
40-
* checking CRAN incoming feasibility ... Note_to_CRAN_maintainers
44+
* checking CRAN incoming feasibility ... NOTE
4145
Maintainer: ‘John Mount <[email protected]>’
42-
Status: OK
43-
44-
46+
Days since last update: 1
47+
Status: 1 NOTE
4548

4649
## Downstream dependencies
4750

extras/check_reverse_dependencies.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ package = "wrapr"
88
packageVersion(package)
99
```
1010

11-
## [1] '1.9.4'
11+
## [1] '1.9.5'
1212

1313
``` r
1414
date()
1515
```
1616

17-
## [1] "Thu Jan 16 16:55:41 2020"
17+
## [1] "Sat Jan 18 12:31:00 2020"
1818

1919
``` r
2020
parallelCluster <- NULL
@@ -34,7 +34,7 @@ setwd(td)
3434
print(td)
3535
```
3636

37-
## [1] "/var/folders/7q/h_jp2vj131g5799gfnpzhdp80000gn/T//Rtmp43it77"
37+
## [1] "/var/folders/7q/h_jp2vj131g5799gfnpzhdp80000gn/T//RtmpFK2g01"
3838

3939
``` r
4040
options(repos = c(CRAN="https://cloud.r-project.org"))
@@ -79,14 +79,14 @@ if(!is.null(parallelCluster)) {
7979
}
8080
```
8181

82-
## cdata_1.1.4 started at 2020-01-16 16:55:43 success at 2020-01-16 16:56:22 (1/0/0)
83-
## RcppDynProg_0.1.3 started at 2020-01-16 16:56:22 success at 2020-01-16 16:57:54 (2/0/0)
84-
## rqdatatable_1.2.5 started at 2020-01-16 16:57:54 success at 2020-01-16 16:58:24 (3/0/0)
85-
## rquery_1.4.1 started at 2020-01-16 16:58:24 success at 2020-01-16 16:59:19 (4/0/0)
86-
## seplyr_0.8.4 started at 2020-01-16 16:59:19 success at 2020-01-16 16:59:51 (5/0/0)
87-
## sigr_1.0.6 started at 2020-01-16 16:59:51 success at 2020-01-16 17:00:14 (6/0/0)
88-
## vtreat_1.5.1 started at 2020-01-16 17:00:14 success at 2020-01-16 17:01:40 (7/0/0)
89-
## WVPlots_1.2.2 started at 2020-01-16 17:01:40 success at 2020-01-16 17:03:14 (8/0/0)
82+
## cdata_1.1.4 started at 2020-01-18 12:31:03 success at 2020-01-18 12:31:32 (1/0/0)
83+
## RcppDynProg_0.1.3 started at 2020-01-18 12:31:33 success at 2020-01-18 12:32:56 (2/0/0)
84+
## rqdatatable_1.2.5 started at 2020-01-18 12:32:56 success at 2020-01-18 12:33:26 (3/0/0)
85+
## rquery_1.4.1 started at 2020-01-18 12:33:26 success at 2020-01-18 12:34:13 (4/0/0)
86+
## seplyr_0.8.5 started at 2020-01-18 12:34:13 success at 2020-01-18 12:34:44 (5/0/0)
87+
## sigr_1.0.6 started at 2020-01-18 12:34:44 success at 2020-01-18 12:35:09 (6/0/0)
88+
## vtreat_1.5.1 started at 2020-01-18 12:35:09 success at 2020-01-18 12:36:37 (7/0/0)
89+
## WVPlots_1.2.2 started at 2020-01-18 12:36:37 success at 2020-01-18 12:38:01 (8/0/0)
9090

9191
## [1] id title status
9292
## <0 rows> (or 0-length row.names)
@@ -96,8 +96,8 @@ summariseQueue(package=package, directory=td)
9696
```
9797

9898
## Test of wrapr had 8 successes, 0 failures, and 0 skipped packages.
99-
## Ran from 2020-01-16 16:55:43 to 2020-01-16 17:03:14 for 7.517 mins
100-
## Average of 56.375 secs relative to 56.216 secs using 1 runners
99+
## Ran from 2020-01-18 12:31:03 to 2020-01-18 12:38:01 for 6.967 mins
100+
## Average of 52.25 secs relative to 52.242 secs using 1 runners
101101
##
102102
## Failed packages:
103103
##

0 commit comments

Comments
 (0)