Title: | Internal Infrastructure for R-multiverse |
---|---|
Description: | R-multiverse requires this internal infrastructure package to automate contribution reviews and populate universes. |
Authors: | William Michael Landau [aut, cre]
|
Maintainer: | William Michael Landau <[email protected]> |
License: | MIT + file LICENSE |
Version: | 1.0.8 |
Built: | 2025-03-16 05:18:17 UTC |
Source: | https://github.com/r-multiverse/multiverse.internals |
PACKAGES
and PACKAGES.gz
metadata files.Filter the PACKAGES
and PACKAGES.gz
files to
only list certain packages.
filter_meta(path_meta, path_staging)
filter_meta(path_meta, path_staging)
path_meta |
Directory path where |
path_staging |
Path to a GitHub clone of the Staging universe. |
Other staging:
freeze_dependencies()
,
rclone_includes()
,
stage_candidates()
## Not run: path_meta <- tempfile() dir.create(path_meta) mock <- system.file( file.path("mock", "meta"), package = "multiverse.internals", mustWork = TRUE ) file.copy(mock, path_meta, recursive = TRUE) path_staging <- tempfile() url_staging <- "https://github.com/r-multiverse/staging" gert::git_clone(url = url_staging, path = path_staging) filter_meta(path_meta, path_staging) ## End(Not run)
## Not run: path_meta <- tempfile() dir.create(path_meta) mock <- system.file( file.path("mock", "meta"), package = "multiverse.internals", mustWork = TRUE ) file.copy(mock, path_meta, recursive = TRUE) path_staging <- tempfile() url_staging <- "https://github.com/r-multiverse/staging" gert::git_clone(url = url_staging, path = path_staging) filter_meta(path_meta, path_staging) ## End(Not run)
Freeze the targeted versions of base R and CRAN packages.
freeze_dependencies(path_staging, path_community)
freeze_dependencies(path_staging, path_community)
path_staging |
Character string, directory path to the source files of the Staging universe. |
path_community |
Character string, local directory path to the clone of the Community universe GitHub repository. |
freeze_dependencies()
runs during the month-long
dependency freeze phase of Staging in which base R and CRAN packages
are locked in the Staging universe until after the next Production
snapshot. This establishes checks in the Staging universe
using the exact set of dependencies that will be used in the
candidate freeze (see stage_candidates()
).
freeze_dependencies()
copies the Community repository packages.json
into the Staging repository to reset the Staging process.
It also writes a config.json
file with the date
of the targeted CRAN snapshot.
NULL
(invisibly)
Other staging:
filter_meta()
,
rclone_includes()
,
stage_candidates()
## Not run: url_staging = "https://github.com/r-multiverse/staging" url_community = "https://github.com/r-multiverse/community" path_staging <- tempfile() path_community <- tempfile() gert::git_clone(url = url_staging, path = path_staging) gert::git_clone(url = url_community, path = path_community) freeze_dependencies( path_staging = path_staging, path_community = path_community ) ## End(Not run)
## Not run: url_staging = "https://github.com/r-multiverse/staging" url_community = "https://github.com/r-multiverse/community" path_staging <- tempfile() path_community <- tempfile() gert::git_clone(url = url_staging, path = path_staging) gert::git_clone(url = url_community, path = path_community) freeze_dependencies( path_staging = path_staging, path_community = path_community ) ## End(Not run)
Summarize the status of a package in human-readable text.
interpret_status(package, status)
interpret_status(package, status)
package |
Character string, name of the package. |
status |
A list with one status entry per package. Obtained by
reading the results of |
A character string summarizing the status of a package in prose.
Other status:
update_status()
Report packages whose current versions have advisories in the R Consortium Advisory Database: https://github.com/RConsortium/r-advisory-database
issues_advisories(meta = meta_packages())
issues_advisories(meta = meta_packages())
meta |
Package metadata from |
A data frame with one row for each problematic package and columns with details.
Other issues:
issues_dependencies()
,
issues_licenses()
,
issues_r_cmd_check()
,
issues_remotes()
,
issues_version_conflicts()
,
issues_versions()
## Not run: issues_advisories() ## End(Not run)
## Not run: issues_advisories() ## End(Not run)
Flag packages which have issues in their strong dependencies
(Imports:
, Depends:
, and LinkingTo:
in the DESCRIPTION
.)
These include indirect/upstream dependencies, as well, not just
the explicit mentions in the DESCRIPTION
file.
issues_dependencies(packages, meta = meta_packages(), verbose = FALSE)
issues_dependencies(packages, meta = meta_packages(), verbose = FALSE)
packages |
Character vector of names of packages with other issues. |
meta |
Package metadata from |
verbose |
|
A data frame with one row for each package impacted by
upstream dependencies.
Each element of the dependencies
column is a
nested list describing the problems upstream.
To illustrate the structure of this list, suppose
Package tarchetypes
depends on package targets
, and packages
jagstargets
and stantargets
depend on tarchetypes
.
In addition, package targets
has a problem in R CMD check
which might cause problems in tarchetypes
and packages downstream.
status_dependencies()
represents this information in the
following list:
list( jagstargets = list(targets = "tarchetypes"), tarchetypes = list(targets = character(0)), stantargets = list(targets = "tarchetypes") )
In general, the returned list is of the form:
list( impacted_reverse_dependency = list( upstream_culprit = c("direct_dependency_1", "direct_dependency_2") ) )
where upstream_culprit
causes problems in impacted_reverse_dependency
through direct dependencies direct_dependency_1
and
direct_dependency_2
.
Other issues:
issues_advisories()
,
issues_licenses()
,
issues_r_cmd_check()
,
issues_remotes()
,
issues_version_conflicts()
,
issues_versions()
## Not run: issues_dependencies(packages = "targets") ## End(Not run)
## Not run: issues_dependencies(packages = "targets") ## End(Not run)
Report packages without standard free and open-source licenses.
issues_licenses(meta = meta_packages())
issues_licenses(meta = meta_packages())
meta |
Package metadata from |
Other issues:
issues_advisories()
,
issues_dependencies()
,
issues_r_cmd_check()
,
issues_remotes()
,
issues_version_conflicts()
,
issues_versions()
## Not run: issues_licenses() ## End(Not run)
## Not run: issues_licenses() ## End(Not run)
R CMD check
issues.Report issues from R CMD check
on R-universe.
issues_r_cmd_check(meta = meta_packages())
issues_r_cmd_check(meta = meta_packages())
meta |
Package metadata from |
issues_r_cmd_check()
reads output from
the R-universe R CMD check
results API
to scan all R-multiverse packages for status that may have
happened during building and testing.
A data frame with one row for each problematic
package and columns for the package
names and R CMD check
issues.
Functions like issues_versions()
and issues_r_cmd_check()
perform health checks for all packages in R-multiverse.
For a complete list of checks, see
the issues_*()
functions listed at
https://r-multiverse.org/multiverse.internals/reference/index.html.
record_versions()
updates the version number history
of releases in R-multiverse, and record_status()
gathers
together all the status about R-multiverse packages.
Other issues:
issues_advisories()
,
issues_dependencies()
,
issues_licenses()
,
issues_remotes()
,
issues_version_conflicts()
,
issues_versions()
## Not run: issues_r_cmd_check() ## End(Not run)
## Not run: issues_r_cmd_check() ## End(Not run)
Remotes:
fields.Report packages with Remotes:
fields in the DESCRIPTION
file.
issues_remotes(meta = meta_packages())
issues_remotes(meta = meta_packages())
meta |
Package metadata from |
Other issues:
issues_advisories()
,
issues_dependencies()
,
issues_licenses()
,
issues_r_cmd_check()
,
issues_version_conflicts()
,
issues_versions()
## Not run: issues_remotes() ## End(Not run)
## Not run: issues_remotes() ## End(Not run)
Report packages with higher versions in
different repositories.
A higher version in a different repository could cause that repository
to override R-multiverse in install.packages()
.
issues_version_conflicts(meta = meta_packages(), repo = "cran")
issues_version_conflicts(meta = meta_packages(), repo = "cran")
meta |
Package metadata from |
repo |
Character string naming the repository to compare versions. |
A data frame with one row for each problematic package and columns with details.
Other issues:
issues_advisories()
,
issues_dependencies()
,
issues_licenses()
,
issues_r_cmd_check()
,
issues_remotes()
,
issues_versions()
## Not run: issues_version_conflicts() ## End(Not run)
## Not run: issues_version_conflicts() ## End(Not run)
Check package version number history for compliance.
issues_versions(versions)
issues_versions(versions)
versions |
Character of length 1, file path to a JSON manifest tracking the history of released versions of packages. |
This function checks the version number history of packages in R-multiverse and reports any packages with issues. The current released version of a given package must be unique, and it must be greater than all the versions of all the previous package releases.
A data frame with one row for each problematic package and columns with the package names and version issues.
Other issues:
issues_advisories()
,
issues_dependencies()
,
issues_licenses()
,
issues_r_cmd_check()
,
issues_remotes()
,
issues_version_conflicts()
lines <- c( "[", " {", " \"package\": \"package_unmodified\",", " \"version_current\": \"1.0.0\",", " \"hash_current\": \"hash_1.0.0\",", " \"version_highest\": \"1.0.0\",", " \"hash_highest\": \"hash_1.0.0\"", " },", " {", " \"package\": \"version_decremented\",", " \"version_current\": \"0.0.1\",", " \"hash_current\": \"hash_0.0.1\",", " \"version_highest\": \"1.0.0\",", " \"hash_highest\": \"hash_1.0.0\"", " },", " {", " \"package\": \"version_incremented\",", " \"version_current\": \"2.0.0\",", " \"hash_current\": \"hash_2.0.0\",", " \"version_highest\": \"2.0.0\",", " \"hash_highest\": \"hash_2.0.0\"", " },", " {", " \"package\": \"version_unmodified\",", " \"version_current\": \"1.0.0\",", " \"hash_current\": \"hash_1.0.0-modified\",", " \"version_highest\": \"1.0.0\",", " \"hash_highest\": \"hash_1.0.0\"", " }", "]" ) versions <- tempfile() writeLines(lines, versions) out <- issues_versions(versions) str(out)
lines <- c( "[", " {", " \"package\": \"package_unmodified\",", " \"version_current\": \"1.0.0\",", " \"hash_current\": \"hash_1.0.0\",", " \"version_highest\": \"1.0.0\",", " \"hash_highest\": \"hash_1.0.0\"", " },", " {", " \"package\": \"version_decremented\",", " \"version_current\": \"0.0.1\",", " \"hash_current\": \"hash_0.0.1\",", " \"version_highest\": \"1.0.0\",", " \"hash_highest\": \"hash_1.0.0\"", " },", " {", " \"package\": \"version_incremented\",", " \"version_current\": \"2.0.0\",", " \"hash_current\": \"hash_2.0.0\",", " \"version_highest\": \"2.0.0\",", " \"hash_highest\": \"hash_2.0.0\"", " },", " {", " \"package\": \"version_unmodified\",", " \"version_current\": \"1.0.0\",", " \"hash_current\": \"hash_1.0.0-modified\",", " \"version_highest\": \"1.0.0\",", " \"hash_highest\": \"hash_1.0.0\"", " }", "]" ) versions <- tempfile() writeLines(lines, versions) out <- issues_versions(versions) str(out)
List package metadata in an R universe.
meta_packages(repo = "https://community.r-multiverse.org")
meta_packages(repo = "https://community.r-multiverse.org")
repo |
URL of the repository to query. |
A data frame with one row per package and columns with package metadata.
Other meta:
meta_snapshot()
## Not run: meta_packages() ## End(Not run)
## Not run: meta_packages() ## End(Not run)
Show the metadata for the current targeted Production snapshot.
meta_snapshot(today = Sys.Date())
meta_snapshot(today = Sys.Date())
today |
An object that |
A data frame with one row and columns with metadata about the targeted snapshot.
Other meta:
meta_packages()
meta_snapshot(today = Sys.Date())
meta_snapshot(today = Sys.Date())
Write text files to pass to the --include-from
flag
in Rclone when uploading snapshots.
rclone_includes(path_staging)
rclone_includes(path_staging)
path_staging |
Character string, directory path to the source files of the Staging universe. |
Other staging:
filter_meta()
,
freeze_dependencies()
,
stage_candidates()
## Not run: url_staging = "https://github.com/r-multiverse/staging" path_staging <- tempfile() path_community <- tempfile() gert::git_clone(url = url_staging, path = path_staging) stage_candidates(path_staging = path_staging) rclone_includes(path_staging) ## End(Not run)
## Not run: url_staging = "https://github.com/r-multiverse/staging" path_staging <- tempfile() path_community <- tempfile() gert::git_clone(url = url_staging, path = path_staging) stage_candidates(path_staging = path_staging) rclone_includes(path_staging) ## End(Not run)
R-multiverse packages must have valid free and
open-source (FOSS) licenses to protect the intellectual
property rights of the package owners
(c.f. https://en.wikipedia.org/wiki/Free_and_open-source_software).
record_nonstandard_licenses()
records packages with nonstandard
licenses.
record_nonstandard_licenses( repo = "https://community.r-multiverse.org", path = "nonstandard_licenses.json" )
record_nonstandard_licenses( repo = "https://community.r-multiverse.org", path = "nonstandard_licenses.json" )
repo |
Character string, URL of the repository. |
path |
Character string, output path to write JSON data with the names and licenses of packages with non-standard licenses. |
NULL
(invisibly). Called for its side effects.
Record R-multiverse package status in package-specific JSON files.
record_status( repo = "https://community.r-multiverse.org", versions = "versions.json", output = "status.json", mock = NULL, verbose = FALSE )
record_status( repo = "https://community.r-multiverse.org", versions = "versions.json", output = "status.json", mock = NULL, verbose = FALSE )
repo |
URL of the repository to query. |
versions |
Character of length 1, file path to a JSON manifest tracking the history of released versions of packages. |
output |
Character of length 1, file path to the JSON file to record
new package status. Each call to |
mock |
For testing purposes only, a named list of data frames for inputs to various intermediate functions. |
verbose |
|
NULL
(invisibly).
Functions like issues_versions()
and issues_r_cmd_check()
perform health checks for all packages in R-multiverse.
For a complete list of checks, see
the issues_*()
functions listed at
https://r-multiverse.org/multiverse.internals/reference/index.html.
record_versions()
updates the version number history
of releases in R-multiverse, and record_status()
gathers
together all the status about R-multiverse packages.
## Not run: output <- tempfile() versions <- tempfile() record_versions( versions = versions, repo = repo ) record_status( repo = repo, versions = versions, output = output ) writeLines(readLines(output)) ## End(Not run)
## Not run: output <- tempfile() versions <- tempfile() record_versions( versions = versions, repo = repo ) record_status( repo = repo, versions = versions, output = output ) writeLines(readLines(output)) ## End(Not run)
Record the manifest of versions of packages and their hashes.
record_versions( versions = "versions.json", repo = "https://community.r-multiverse.org", current = multiverse.internals::get_current_versions(repo = repo) )
record_versions( versions = "versions.json", repo = "https://community.r-multiverse.org", current = multiverse.internals::get_current_versions(repo = repo) )
versions |
Character of length 1, file path to a JSON manifest tracking the history of released versions of packages. |
repo |
URL of the repository to query. |
current |
A data frame of current versions and hashes of packages
in |
This function tracks a manifest containing the current version,
the current hash, the highest version ever released, and
the hash of the highest version ever released.
issues_versions()
uses this information
to determine whether the package complies with best
practices for version numbers.
NULL
(invisibly). Writes version information to a JSON file.
Functions like issues_versions()
and issues_r_cmd_check()
perform health checks for all packages in R-multiverse.
For a complete list of checks, see
the issues_*()
functions listed at
https://r-multiverse.org/multiverse.internals/reference/index.html.
record_versions()
updates the version number history
of releases in R-multiverse, and record_status()
gathers
together all the status about R-multiverse packages.
## Not run: output <- tempfile() versions <- tempfile() # First snapshot: record_versions( versions = versions, repo = repo ) readLines(versions) # In subsequent snapshots, we have historical information about versions. record_versions( versions = versions, repo = repo ) readLines(versions) ## End(Not run)
## Not run: output <- tempfile() versions <- tempfile() # First snapshot: record_versions( versions = versions, repo = repo ) readLines(versions) # In subsequent snapshots, we have historical information about versions. record_versions( versions = versions, repo = repo ) readLines(versions) ## End(Not run)
Review a pull request to add packages to R-multiverse.
review_pull_request( owner = "r-multiverse", repo = "contributions", number, advisories = character(0L), organizations = character(0L) )
review_pull_request( owner = "r-multiverse", repo = "contributions", number, advisories = character(0L), organizations = character(0L) )
owner |
Character of length 1, name of the package repository owner. |
repo |
URL of the repository to query. |
number |
Positive integer of length 1, index of the pull request in the repo. |
advisories |
Character vector of names of packages with advisories in the R Consortium Advisory Database. |
organizations |
Character vector of names of GitHub organizations. Pull requests from authors who are not members of at least one of these organizations will be flagged for manual review. |
NULL
(invisibly).
Other pull request reviews:
review_pull_requests()
Review pull requests which add packages to packages.json
.
review_pull_requests(owner = "r-multiverse", repo = "contributions")
review_pull_requests(owner = "r-multiverse", repo = "contributions")
owner |
Character of length 1, name of the package repository owner. |
repo |
URL of the repository to query. |
NULL
(invisibly).
Other pull request reviews:
review_pull_request()
Stage release candidates for the targeted Production snapshot.
stage_candidates(path_staging)
stage_candidates(path_staging)
path_staging |
Character string, directory path to the source files of the Staging universe. |
stage_candidates()
implements the candidate freeze
during the month-long period prior to the Production snapshot.
Packages that pass R-multiverse checks are frozen
(not allowed to update further) and staged for Production.
Packages with at least one failing not staged for Production,
and maintainers can update them with new GitHub/GitLab releases.
stage_candidates()
writes packages.json
to control
contents of the Staging universe.
NULL
(invisibly)
Other staging:
filter_meta()
,
freeze_dependencies()
,
rclone_includes()
## Not run: url_staging <- "https://github.com/r-multiverse/staging" path_staging <- tempfile() gert::git_clone(url = url_staging, path = path_staging) stage_candidates(path_staging = path_staging) ## End(Not run)
## Not run: url_staging <- "https://github.com/r-multiverse/staging" path_staging <- tempfile() gert::git_clone(url = url_staging, path = path_staging) stage_candidates(path_staging = path_staging) ## End(Not run)
Update the repository which reports the status on individual packages.
update_status(path_status, path_staging, path_community)
update_status(path_status, path_staging, path_community)
path_status |
Character string, directory path to the source files of the package status repository. |
path_staging |
Character string, local directory path to the clone of the Staging universe GitHub repository. |
path_community |
Character string, local directory path to the clone of the Community universe GitHub repository. |
Other status:
interpret_status()
## Not run: url_staging = "https://github.com/r-multiverse/staging" url_community = "https://github.com/r-multiverse/community" path_status <- tempfile() path_staging <- tempfile() path_community <- tempfile() gert::git_clone(url = url_staging, path = path_staging) gert::git_clone(url = url_community, path = path_community) update_status( path_status = path_status, path_staging = path_staging, path_community = path_community ) writeLines( readLines( file.path(path_status, "community", "multiverse.internals.html") ) ) writeLines( readLines( file.path(path_status, "community", "multiverse.internals.xml") ) ) ## End(Not run)
## Not run: url_staging = "https://github.com/r-multiverse/staging" url_community = "https://github.com/r-multiverse/community" path_status <- tempfile() path_staging <- tempfile() path_community <- tempfile() gert::git_clone(url = url_staging, path = path_staging) gert::git_clone(url = url_community, path = path_community) update_status( path_status = path_status, path_staging = path_staging, path_community = path_community ) writeLines( readLines( file.path(path_status, "community", "multiverse.internals.html") ) ) writeLines( readLines( file.path(path_status, "community", "multiverse.internals.xml") ) ) ## End(Not run)
Update the list of packages for each R-multiverse topic.
update_topics(path, repo = "https://community.r-multiverse.org", mock = NULL)
update_topics(path, repo = "https://community.r-multiverse.org", mock = NULL)
path |
Character string, local file path to the topics repository source code. |
repo |
Character string, URL of the Community universe. |
mock |
List of named objects for testing purposes only. |
NULL
(invisibly). Called for its side effects.
## Not run: path <- tempfile() gert::git_clone("https://github.com/r-multiverse/topics", path = path) update_topics(path = path, repo = "https://community.r-multiverse.org") ## End(Not run)
## Not run: path <- tempfile() gert::git_clone("https://github.com/r-multiverse/topics", path = path) update_topics(path = path, repo = "https://community.r-multiverse.org") ## End(Not run)