Skip to content

Instantly share code, notes, and snippets.

@jeroen
Last active May 14, 2025 13:53
Show Gist options
  • Save jeroen/e8b225e9b1004a16ef90f50700352aa5 to your computer and use it in GitHub Desktop.
Save jeroen/e8b225e9b1004a16ef90f50700352aa5 to your computer and use it in GitHub Desktop.
CRAN Packages with NeedsCompilation but unknown platform (no src dir)
df <- as.data.frame(read.dcf(url('https://cran.r-universe.dev/bin/linux/noble-x86_64/4.5/src/contrib/PACKAGES')))
unknown_platform <- df$NeedsCompilation == 'yes' & !grepl('linux', df$Built)
df$Package[unknown_platform]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment