Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@
^LICENSE\.md$
^tools$
^revdep$
^\.Rprofile$
^r-packages$
^.*_cache$
13 changes: 13 additions & 0 deletions .Rprofile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This file is created automatically by `pak:::proj_create()`
# Please do not edit this file
{
cat("-> Setting up private project library.\n")
.libPaths(unique(c(file.path("r-packages", R.version$platform,
getRversion()[, 1:2]), .libPaths())))
if (file.exists("~/.Rprofile"))
source("~/.Rprofile")
if (interactive()) {
cat("-> Call `pak:::proj_install_dev()` to install/update dependencies.\n")
cat("-> Call `pak:::proj_load()` to load the package.\n")
}
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
.Rproj.user
/README.html
/revdep
/r-packages
*_cache
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ Suggests:
testthat,
Depends:
R (>= 3.1)
Roxygen: list(markdown = TRUE)
RoxygenNote: 6.1.1
Roxygen: list(markdown = TRUE, r6 = FALSE)
RoxygenNote: 7.0.2
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ importFrom(utils,getSrcFilename)
importFrom(utils,getSrcLocation)
importFrom(utils,head)
importFrom(utils,installed.packages)
importFrom(utils,modifyList)
importFrom(utils,read.csv)
importFrom(uuid,UUIDgenerate)
importFrom(withr,defer)
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@

# pkgcache dev

* HTTP timeouts are now much better, and by default they are defined
in terms of download speed, instead of total download time (#29).

* pkgcache now tries to download metadata from the `PACKAGES` file, if it
cannot find `PACKAGES.gz` (@timmsm, #27).

Expand Down
Loading