add archive_packages()
This commit is contained in:
parent
67949c5afd
commit
7768d8a881
3 changed files with 99 additions and 4 deletions
24
man/archive_package.Rd
Normal file
24
man/archive_package.Rd
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
% Generated by roxygen2: do not edit by hand
|
||||
% Please edit documentation in R/archive_packages.R
|
||||
\name{archive_package}
|
||||
\alias{archive_package}
|
||||
\title{Archive packages in CRAN-like repositories}
|
||||
\usage{
|
||||
archive_package(
|
||||
package_name,
|
||||
build_for_minor = FALSE,
|
||||
codename = NULL,
|
||||
r_minor_version = NULL,
|
||||
local_build_root = ".",
|
||||
endpoint = "https://s3.eu-central-003.backblazeb2.com",
|
||||
region = "eu-central-003",
|
||||
bucket = "devxy-arm64-r-binaries"
|
||||
)
|
||||
}
|
||||
\description{
|
||||
Archive packages in CRAN-like repositories
|
||||
}
|
||||
\examples{
|
||||
archive_package("AATtools", codename = "rhel9")
|
||||
|
||||
}
|
||||
|
|
@ -9,7 +9,7 @@ build_binary_package(
|
|||
tag = NULL,
|
||||
codename = NULL,
|
||||
r_minor_version = NULL,
|
||||
build_for_minor = TRUE,
|
||||
build_for_minor = FALSE,
|
||||
local_build_root = "/root",
|
||||
local_clone_dir = "/tmp",
|
||||
platform = NULL,
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
process_cran_updates(
|
||||
package_name,
|
||||
tag,
|
||||
platform = platform,
|
||||
platform,
|
||||
local_clone_dir,
|
||||
interval = lubridate::today(),
|
||||
prune = TRUE,
|
||||
|
|
|
|||
Loading…
Reference in a new issue