r-lib / pkgdepends

R Package Dependency Resolution
https://r-lib.github.io/pkgdepends/
Other
102 stars 30 forks source link

binary packages install are failing when download method gets source #367

Open averissimo opened 5 months ago

averissimo commented 5 months ago

ip$install() call fails on verifying the binary package after the installation proposal download call (see below for an example)

This was detected when installing insightsengineering/teal.modules.clinical with 2 problematic binary packages nloptr and urltools (using ppm snapshot or latest).

Reproducible example

note: I think this results from a race condition when downloading the file with pkgcache::download_one_of(...) and it downloads a source archive.

config <- list(
  cran_mirror = "https://packagemanager.posit.co/cran/__linux__/noble/2024-04-19", 
  library = tempfile()
)

ip <- pkgdepends::new_pkg_installation_proposal("tern", config = config)

ip$solve()

res <- ip$get_resolution()

# Keep only Archive sources (force failure)
new_sources <- lapply(
  res$sources,
  function(x) {
    if (length(x) > 1 && any(grepl("src/contrib/Archive", x))) {
      x[grepl("src/contrib/Archive", x)]
    } else {
      x
    }
  }
)

ip$.__enclos_env__$private$plan$.__enclos_env__$private$resolution$result$sources <- new_sources

ip$download()
ip$install()
.Last.error
#> <install_input_error/rlib_error_3_0/rlib_error/error>
#> Error in `verify_extracted_package(filename, pkg_cache)` at install-binary.R:5:3:
#> ! 
#> /tmp/Rtmpaxpmb1/file4cf621cf4b41/src/contrib/x86_64-pc-linux-gnu-ubuntu-24.04/4.4/nloptr_2.0.3.tar.gz
#> is not a valid binary, it is missing nloptr/Meta/package.rds.
#> ---
#> Backtrace:
#>  1. ip$install()
#>  2. pkgdepends::install_package_plan(plan, lib = private$library, num_workers = nw, … at pkg-installation.R:466:7
#>  3. base::withCallingHandlers({ … at install-plan.R:107:3
#>  4. pkgdepends:::handle_events(state, events) at install-plan.R:120:7
#>  5. pkgdepends:::handle_event(state, i) at install-plan.R:210:3
#>  6. proc$get_result() at install-plan.R:239:3
#>  7. processx:::process_get_result(self, private) at process.R:576:18
#>  8. private$post_process() at process.R:784:5
#>  9. pkgdepends:::install_extracted_binary(filename, lib_cache, pkg_cache, lib, … at install-binary.R:140:4
#> 10. pkgdepends:::verify_extracted_package(filename, pkg_cache) at install-binary.R:5:3
#> 11. pkgdepends:::throw(pkg_error("{.path {filename}} is not a valid binary, it is missing {miss}."… at install-verify-binary.R:30:5