R Under development (unstable) (2026-04-26 r89963 ucrt) -- "Unsuffered Consequences" Copyright (C) 2026 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > library("repo.data") Attaching package: 'repo.data' The following object is masked from 'package:stats': alias > > # Test that it works > cl <- cran_links() Downloading and caching CRAN's packages xrefs for this session. > repo.data:::no_internet(cl) > stopifnot(colnames(cl) == c("Package", "Source", "Anchor", "Target")) > > l <- links() > repo.data:::no_internet(l) > stopifnot(colnames(l) == c("Package", "Source", "Anchor", "Target")) > > btl <- base_targets_links() Downloading and caching R's xrefs for this session. Downloading and caching base R's aliases for this session. Warning: Packages with targets not present in a OS: 'base', 'grDevices', 'parallel' Downloading and caching CRAN aliases for this session. Warning: Packages with targets not present in a OS: 'sfsmisc' Warning messages: 1: Some pages point to different places according to the OS. 2: Some links are distinct depending on the OS. > repo.data:::no_internet(btl) > stopifnot(colnames(btl) == c("from_pkg", "from_Rd", "to_pkg", "to_target", "to_Rd", "n")) > > bpl <- base_pages_links() Warning messages: 1: Some pages point to different places according to the OS. 2: Some links are distinct depending on the OS. > repo.data:::no_internet(bpl) > stopifnot(colnames(bpl) == c("from_pkg", "from_Rd", "to_pkg", "to_Rd", "n")) > > bpkgl <- base_pkges_links() Warning messages: 1: Some pages point to different places according to the OS. 2: Some links are distinct depending on the OS. > repo.data:::no_internet(bpkgl) > stopifnot(colnames(bpkgl) == c("from_pkg", "to_pkg", "n")) > > proc.time() user system elapsed 49.98 1.79 52.12