Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

available_on_cran should set R_CRAN_SRC environment variable when calling tools:::CRAN_archive_db #77

Open
jabenninghoff opened this issue May 22, 2022 · 6 comments
Labels
feature a feature request or enhancement

Comments

@jabenninghoff
Copy link

jabenninghoff commented May 22, 2022

Discovered when running the following, with my system unable to connect to CRAN.R-project.org:

available::available("testpkg")
#> Error in url(sprintf("%s/%s", cran, path), open = "rb") : 
#>   cannot open the connection to 'https://CRAN.R-project.org/src/contrib/Meta/archive.rds'
#> In addition: Warning message:
#> In url(sprintf("%s/%s", cran, path), open = "rb") :
#>   URL 'https://CRAN.R-project.org/src/contrib/Meta/archive.rds': status was 'Couldn't connect to server'

Issue:

Currently, available_on_cran() calls tools:::CRAN_archive_db(). By default, tools.R uses "https://CRAN.R-project.org" (obtained from .get_standard_repository_URLs()) as the base URL to fetch, unless Sys.getenv("R_CRAN_SRC") is set.

This differs from the expected behavior, which would be to use a mirror or the value from repos.

A possible solution would be to set R_CRAN_SRC when calling tools:::CRAN_archive_db() to the repos parameter. Confirmed by setting Sys.setenv(R_CRAN_SRC = "https://cloud.r-project.org") and re-running available::available("testpkg").

@gaborcsardi
Copy link
Member

I don't know if there is a good reason for tools::: CRAN_archive_db() not using the default repo, possibly yes, because the default repo might be out of date, and for this you'd want the latest data possible.

In any case, if I understand correctly, you can already use the different mirror, by setting that env var, so I don't think any change is needed in available.

@jabenninghoff jabenninghoff changed the title available_on_cran should set R_CRAN_SRC environment variable when calling tools::: CRAN_archive_db available_on_cran should set R_CRAN_SRC environment variable when calling tools:::CRAN_archive_db May 23, 2022
@jabenninghoff
Copy link
Author

R_CRAN_SRC is undocumented, at least as far as I could find (only hit on Google is https://svn.r-project.org/R/trunk/src/library/tools/R/CRANtools.R). My thought was that available should 'just work' and handle this by setting it when calling a private function within R tools, which would be easy enough.

@gaborcsardi
Copy link
Member

There is no guarantee that setting the current repo will make it "just work". What if that is offline or slow, and the main CRAN site is online? And even if the current mirror is online, the main site has more recent data.

@gaborcsardi
Copy link
Member

Btw. pak::pkg_name_check() is an alternative of this package, and it works if CRAN is offline:

❯ pak::pkg_name_check("foo")
╔══════════════════════════════════════════════════════════════════════════════╗
║                                  –*– foo –*–                                 ║
╚══════════════════════════════════════════════════════════════════════════════╝
┌──────────────────────────────────────────────────────────────────────────────┐
│ ✔  valid name      ✔  CRAN            ✔  Bioconductor    ✔  not a profanity  │
└──────────────────────────────────────────────────────────────────────────────┘
┌ Wikipedia ───────────────────────────────────────────────────────────────────┐
│ Foobar (from Foo) The terms foobar, foo, bar, baz, and others are used as    │
│ metasyntactic variables and placeholder names in computer programming or     │
│ computer-related documentation. They have been used to name entities such    │
│ as variables, functions, and commands whose exact identity is unimportant    │
│ and serve only to demonstrate a concept.                                     │
└──────────────────────────────────────── https://en.wikipedia.org/wiki/Foobar ┘
┌ Wiktionary ──────────────────────────────────────────────────────────────────┐
│ foo Etymology 1: From Mandarin 府 (fǔ).                                      │
│ foo (plural foos)                                                            │
│ (historical, obsolete) Alternative form of fu: an administrative             │
│ subdivision of imperial China; the capital of such divisions.                │
│ Etymology 2: From Chinese 福 (fú, “fortunate; prosperity, good luck”), via   │
│ its use as 福星 (Fúxīng, “Jupiter”) in Chinese statues of the Three Lucky    │
│ …                                                                            │
└────────────────────────────────────────── https://en.wiktionary.org/wiki/foo ┘
┌ Acroynms (from Acromine) ────────────────────────────────────────────────────┐
│ No acronyms found.                                                           │
└──────────────────────────────────────────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────────────────┐
│ Sentiment: 😐 (0)                                                            │
└──────────────────────────────────────────────────────────────────────────────┘

@jabenninghoff
Copy link
Author

There is no guarantee that setting the current repo will make it "just work". What if that is offline or slow, and the main CRAN site is online? And even if the current mirror is online, the main site has more recent data.

That's fair. I guess I expected that available_on_cran would be consistent and use the repos setting for the tools:::CRAN_archive_db check as well. If available won't be changed, could the documentation be updated? I had to go digging into the R source code to find this environment variable.

@gaborcsardi
Copy link
Member

R_CRAN_SRC is now documented: wch/r-source@a0e696a

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature a feature request or enhancement
Projects
None yet
Development

No branches or pull requests

2 participants