-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
77 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples | ||
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | ||
on: | ||
push: | ||
branches: [main, master] | ||
pull_request: | ||
branches: [main, master] | ||
|
||
name: R-CMD-check | ||
|
||
jobs: | ||
R-CMD-check: | ||
runs-on: ${{ matrix.config.os }} | ||
|
||
name: ${{ matrix.config.os }} (${{ matrix.config.r }}) | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
config: | ||
- {os: macos-latest, r: 'release'} | ||
- {os: windows-latest, r: 'release'} | ||
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'} | ||
- {os: ubuntu-latest, r: 'release'} | ||
- {os: ubuntu-latest, r: 'oldrel-1'} | ||
|
||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
R_KEEP_PKG_SOURCE: yes | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: r-lib/actions/setup-pandoc@v2 | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
r-version: ${{ matrix.config.r }} | ||
http-user-agent: ${{ matrix.config.http-user-agent }} | ||
use-public-rspm: true | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::rcmdcheck | ||
needs: check | ||
|
||
- uses: r-lib/actions/check-r-package@v2 | ||
with: | ||
upload-snapshots: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,32 @@ | ||
# gutenbergr 0.2.3 | ||
## gutenbergr 2.3.9100 | ||
|
||
This release is a re-submission and maintainer change after gutenbergr 0.2.1 was archived. | ||
This release is a re-submission after gutenbergr 2.3.0 was archived. | ||
|
||
## Changes | ||
|
||
Major changes: | ||
|
||
* New package maintainer: Myfanwy Johnston <[email protected]> | ||
|
||
Minor changes: | ||
|
||
* Updated package metadata. | ||
|
||
Miscellaneous: | ||
|
||
* Documentation updates and fixes throughout (updated to latest version of roxygen2, resolved missing return value and examples, removed/updated broken urls) | ||
* On advice to minimize server time in test environments, some gutenberg_download() and gutenberg_works() examples are now wrapped in donttest{}. | ||
* Some examples in `gutenberg_download()` have been updated to `@examplesIf interactive()` to address graceful failure while preserving the interactive intent of the functions. | ||
* Three badge urls in the README have been updated | ||
|
||
## Test environments | ||
|
||
* local OS X install, R 4.2.1 | ||
NOTEs: installed package size, found marked UTF-8 strings in the data directory. These strings are in the metadata from Project Gutenberg. | ||
* local OS X install, R 4.3.2 | ||
2 NOTEs: installed package size, found marked UTF-8 strings in the data directory. These strings are in the metadata from Project Gutenberg. | ||
|
||
* Windows Server 2022 x64 (build 20348) | ||
NOTE: New submission | ||
|
||
* Ubuntu Linux 20.04.1 LTS, R-release, GCC | ||
NOTEs: new submission, installed package size, examples with CPU (user + system) or elapsed time > 5s | ||
Package was archived on CRAN | ||
|
||
* Fedora Linux, R-devel, clang, gfortran | ||
NOTEs: new submission, installed package size, examples with CPU (user + system) or elapsed time > 5s, Skipping checking HTML validation: no command 'tidy' found | ||
Version contains large components (0.2.3.9100) | ||
|
||
* Windows Server 2022, 10.0.20348 | ||
NOTE: marked UTF-8 strings; see above | ||
CRAN repository db overrides: | ||
X-CRAN-Comment: Archived on 2023-08-10 for policy violation. | ||
|
||
## R CMD check results | ||
|
||
0 errors | 0 warnings | 2 notes | ||
|
||
The NOTEs are: 1) new submission after the package was archived, and 2) installed size is 5.0Mb. This due to the data requirements of the package and the text files from Project Gutenberg for use in the examples. We reduced the number of files in this release and will strive to further reduce the size of the installed package in the next release. | ||
* Package was archived on CRAN for policy violation On Internet access. | ||
* installed size is 5.3MB; sub-directories of 1Mb or more: data (4.9Mb). This due to the data requirements of the package and the text files from Project Gutenberg for use in the examples. We will strive to further reduce the size of the installed package in the next major release. |