-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
{PostcodesioR} and {urlshorteneR} on CRAN now
ref #505
- Loading branch information
Showing
2 changed files
with
64 additions
and
2 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
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,62 @@ | ||
# See https://github.com/cran-task-views/WebTechnologies/issues/505 | ||
|
||
# Copy from the bottom of https://cran.r-project.org/web/views/WebTechnologies.html: | ||
packages <- c( | ||
"dashR", | ||
"discgolf", | ||
"feedeR", | ||
"formr", | ||
"gdns", | ||
"ipapi", | ||
"meetupr", | ||
"mockaRoo", | ||
"nominatim", | ||
"PostcodesioR", | ||
"randNames", | ||
"rcloud", | ||
"RDoubleClick", | ||
"rydn", | ||
"securitytxt", | ||
"stackr", | ||
"twitter_ideology", | ||
"twitterreport", | ||
"urlshorteneR", | ||
"useRsnap" | ||
) | ||
|
||
packages |> | ||
rlang::set_names() |> | ||
purrr::map_lgl(available::available_on_cran) |> | ||
tibble::enframe( | ||
value = "available_on_cran" | ||
) | ||
|
||
# # A tibble: 20 × 2 | ||
# name available_on_cran | ||
# dashR TRUE | ||
# discgolf FALSE # Archived on 2022-11-06 at the maintainer's request. | ||
# feedeR FALSE # Archived on 2021-10-05 as check problems were not corrected in time. | ||
# formr TRUE | ||
# gdns FALSE # Archived on 2022-05-07 as calls defunct default.stringsAsFactors() | ||
# ipapi TRUE | ||
# meetupr TRUE | ||
# mockaRoo TRUE | ||
# nominatim TRUE | ||
# PostcodesioR FALSE # now on cran | ||
# randNames FALSE # Archived on 2022-08-22 at the maintainer's request. | ||
# rcloud TRUE | ||
# RDoubleClick TRUE | ||
# rydn TRUE | ||
# securitytxt FALSE # Archived on 2021-05-14 as check problems were not corrected in time. | ||
# stackr TRUE | ||
# twitter_ideology TRUE | ||
# twitterreport TRUE | ||
# urlshorteneR FALSE # now on cran | ||
# useRsnap TRUE | ||
|
||
# p <- packages[1] | ||
# p <- "analogsea" | ||
# address <- sprintf("https://CRAN.R-project.org/package=%s", p) | ||
# | ||
# url(address) | ||
# available::available_on_cran(p) |