-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
ea4240f
commit 307430f
Showing
4 changed files
with
11 additions
and
6 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 |
---|---|---|
@@ -1,12 +1,14 @@ | ||
FROM docker.io/rhub/r-minimal:devel | ||
|
||
# for R CMD check --as-cran, also need | ||
# pandoc texlive texmf-dist-fontsextra tidyhtml tzdata | ||
RUN apk update && \ | ||
apk add --no-cache git \ | ||
&& echo 'options(repos="https://cloud.r-project.org")' >> /usr/local/lib/R/etc/Rprofile.site | ||
apk add --no-cache git gcc g++ linux-headers musl-dev | ||
|
||
COPY DESCRIPTION . | ||
|
||
RUN Rscript -e ' \ | ||
options(repos = "https://cloud.r-project.org"); \ | ||
install.packages("remotes"); \ | ||
remotes::install_deps(dependencies = "Imports") \ | ||
' |
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,8 +1,10 @@ | ||
Package: funchir | ||
Version: 0.3.0 | ||
Version: 0.3.0-1 | ||
Title: Convenience Functions by Michael Chirico | ||
Author: Michael Chirico | ||
Maintainer: Michael Chirico <[email protected]> | ||
Authors@R: person(given = "Michael", | ||
family = "Chirico", | ||
role = c("aut", "cre"), | ||
email = "[email protected]") | ||
Depends: R (>= 3.2.2) | ||
Description: YACFP (Yet Another Convenience Function Package). get_age() is a fast & accurate tool for measuring fractional years between two dates. stale_package_check() tries to identify any library() calls to unused packages. | ||
Imports: data.table | ||
|
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