mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-06 11:50:54 +01:00
fix: make bin linkers for non-direct dependencies
Previously, binary linkers weren't made for non-direct dependencies despite this being the documented & expected behaviour.
This commit is contained in:
parent
9a75ebf637
commit
19d6a07851
2 changed files with 27 additions and 14 deletions
|
@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
## [Unreleased]
|
||||
### Fixed
|
||||
- Fix path dependencies using project's workspace dependencies by @daimond113
|
||||
- Fix binary linkers not being created for non-direct dependencies by @daimond113
|
||||
|
||||
### Changed
|
||||
- Binary linkers are now done in Rust to simplify their implementation and cross-runtime portability by @daimond113
|
||||
|
|
|
@ -25,8 +25,9 @@ use pesde::{
|
|||
version_matches, Project, RefreshedSources, MANIFEST_FILE_NAME,
|
||||
};
|
||||
use std::{
|
||||
collections::{BTreeMap, BTreeSet, HashMap},
|
||||
collections::{BTreeMap, BTreeSet, HashMap, HashSet},
|
||||
num::NonZeroUsize,
|
||||
path::Path,
|
||||
sync::Arc,
|
||||
time::Instant,
|
||||
};
|
||||
|
@ -47,21 +48,32 @@ impl DownloadAndLinkHooks for InstallHooks {
|
|||
&self,
|
||||
graph: &DependencyGraphWithTarget,
|
||||
) -> Result<(), Self::Error> {
|
||||
let mut tasks = graph
|
||||
.values()
|
||||
.filter(|node| node.target.bin_path().is_some())
|
||||
.filter_map(|node| node.node.direct.as_ref())
|
||||
.map(|(alias, _, _)| {
|
||||
let bin_folder = self.bin_folder.clone();
|
||||
let alias = alias.clone();
|
||||
let binary_packages = graph
|
||||
.iter()
|
||||
.filter_map(|(id, node)| node.target.bin_path().is_some().then_some(id))
|
||||
.collect::<HashSet<_>>();
|
||||
|
||||
let aliases = graph
|
||||
.iter()
|
||||
.flat_map(|(_, node)| node.node.dependencies.iter())
|
||||
.filter_map(|(id, alias)| binary_packages.contains(id).then_some(alias))
|
||||
.collect::<HashSet<_>>();
|
||||
|
||||
let curr_exe: Arc<Path> = std::env::current_exe()
|
||||
.context("failed to get current executable path")?
|
||||
.as_path()
|
||||
.into();
|
||||
|
||||
let mut tasks = aliases
|
||||
.into_iter()
|
||||
.map(|alias| {
|
||||
let bin_exec_file = self
|
||||
.bin_folder
|
||||
.join(alias.as_str())
|
||||
.with_extension(std::env::consts::EXE_EXTENSION);
|
||||
let curr_exe = curr_exe.clone();
|
||||
|
||||
async move {
|
||||
let bin_exec_file = bin_folder
|
||||
.join(alias.as_str())
|
||||
.with_extension(std::env::consts::EXE_EXTENSION);
|
||||
let curr_exe =
|
||||
std::env::current_exe().context("failed to get current executable path")?;
|
||||
|
||||
// TODO: remove this in a major release
|
||||
#[cfg(unix)]
|
||||
if fs::metadata(&bin_exec_file)
|
||||
|
|
Loading…
Add table
Reference in a new issue