mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-05 03:10:57 +01:00
refactor: print deprecated warning on CLI side
Some checks are pending
Debug / Get build version (push) Waiting to run
Debug / Build for linux-x86_64 (push) Blocked by required conditions
Debug / Build for macos-aarch64 (push) Blocked by required conditions
Debug / Build for macos-x86_64 (push) Blocked by required conditions
Debug / Build for windows-x86_64 (push) Blocked by required conditions
Test & Lint / lint (push) Waiting to run
Some checks are pending
Debug / Get build version (push) Waiting to run
Debug / Build for linux-x86_64 (push) Blocked by required conditions
Debug / Build for macos-aarch64 (push) Blocked by required conditions
Debug / Build for macos-x86_64 (push) Blocked by required conditions
Debug / Build for windows-x86_64 (push) Blocked by required conditions
Test & Lint / lint (push) Waiting to run
Prints the deprecated warning on the CLI side which means it'll have a more consistent look with the rest of the CLI output.
This commit is contained in:
parent
5ace844035
commit
b51c9d9571
2 changed files with 37 additions and 6 deletions
|
@ -14,7 +14,7 @@ use pesde::{
|
|||
lockfile::Lockfile,
|
||||
manifest::{target::TargetKind, Alias, DependencyType, Manifest},
|
||||
names::PackageNames,
|
||||
source::{pesde::PesdePackageSource, refs::PackageRefs},
|
||||
source::{pesde::PesdePackageSource, refs::PackageRefs, traits::PackageRef, PackageSources},
|
||||
version_matches, Project, RefreshedSources, LOCKFILE_FILE_NAME, MANIFEST_FILE_NAME,
|
||||
};
|
||||
use std::{
|
||||
|
@ -254,6 +254,41 @@ pub async fn install(
|
|||
)
|
||||
.await
|
||||
.context("failed to build dependency graph")?;
|
||||
|
||||
let mut tasks = graph
|
||||
.iter()
|
||||
.filter_map(|(id, node)| {
|
||||
let PackageSources::Pesde(source) = node.pkg_ref.source() else {
|
||||
return None;
|
||||
};
|
||||
#[allow(irrefutable_let_patterns)]
|
||||
let PackageNames::Pesde(name) = id.name().clone() else {
|
||||
panic!("unexpected package name");
|
||||
};
|
||||
let project = project.clone();
|
||||
|
||||
Some(async move {
|
||||
let file = source.read_index_file(&name, &project).await.context("failed to read package index file")?.context("package not found in index")?;
|
||||
|
||||
Ok::<_, anyhow::Error>(if file.meta.deprecated.is_empty() {
|
||||
None
|
||||
} else {
|
||||
Some((name, file.meta.deprecated))
|
||||
})
|
||||
})
|
||||
})
|
||||
.collect::<JoinSet<_>>();
|
||||
|
||||
while let Some(task) = tasks.join_next().await {
|
||||
let Some((name, reason)) = task.unwrap()? else {
|
||||
continue;
|
||||
};
|
||||
|
||||
multi.suspend(|| {
|
||||
println!("{}: package {name} is deprecated: {reason}", "warn".yellow().bold());
|
||||
});
|
||||
}
|
||||
|
||||
let graph = Arc::new(graph);
|
||||
|
||||
if options.write {
|
||||
|
|
|
@ -149,16 +149,12 @@ impl PackageSource for PesdePackageSource {
|
|||
..
|
||||
} = options;
|
||||
|
||||
let Some(IndexFile { meta, entries, .. }) =
|
||||
let Some(IndexFile { entries, .. }) =
|
||||
self.read_index_file(&specifier.name, project).await?
|
||||
else {
|
||||
return Err(errors::ResolveError::NotFound(specifier.name.to_string()));
|
||||
};
|
||||
|
||||
if !meta.deprecated.is_empty() {
|
||||
tracing::warn!("{} is deprecated: {}", specifier.name, meta.deprecated);
|
||||
}
|
||||
|
||||
tracing::debug!("{} has {} possible entries", specifier.name, entries.len());
|
||||
|
||||
Ok((
|
||||
|
|
Loading…
Add table
Reference in a new issue