chore: update local/ files

This commit is contained in:
Patrick Schratz 2024-12-13 14:34:53 +01:00
commit a78d489aac
Signed by: pat-s
GPG key ID: 3C6318841EF78925

View file

@ -1,4 +1,6 @@
### Scope: List decomisisoned CRAN packages and updates them in the metadata DB
library(dplyr)
library(bincraftR)
archived <- quickcode::archivedPkg() |>
filter(arch.status == "decom") |>
pull(name)
@ -11,6 +13,7 @@ con <- DBI::dbConnect(RPostgres::Postgres(),
)
pkgs_db <- query_metadata_table() |>
filter(removed == FALSE) |>
distinct(name) |>
pull(name)