Skip to content

Commit

Permalink
nmu-t64: handle the c-ares rename
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastinas committed Apr 20, 2024
1 parent 56963f1 commit 783af92
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/nmu_t64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,11 @@ impl Iterator for LibraryPackageParser {
info!("Checking {}", binary_package.package);
return Some(vec![binary_package.package.clone()]);
}

// special packages
if binary_package.package == "libc-ares2" {
info!("Checking {}", binary_package.package);
return Some(vec![binary_package.package.clone()]);
}

for t64_suffix in T64_SUFFIXES {
Expand Down

0 comments on commit 783af92

Please sign in to comment.