1
0
Fork 0

the depfilter awk now installs all deps that are not optional and skips optional docs

previously docs were always skipped
Dieser Commit ist enthalten in:
Sebastian Tobie 2025-07-23 20:56:36 +02:00
Ursprung c579b3a8da
Commit b475e436dd

Datei anzeigen

@ -1,5 +1,13 @@
#!/usr/bin/awk -f
$1 ~ /^(|opt|make)depends(_x86_64)?$/ {
$1 ~ /^(make)?depends(_x86_64)?$/ {
if ($3 ~ /.+:/) {
print substr($3, 1, length($3)-1)
} else {
print $3
}
}
$1 ~ /^optdepends(_x86_64)?$/ {
if ($3 ~ /.+-doc:?/) {
next
}