Some checks failed
Build Kernel / Set targets (push) Has been cancelled
Build all core packages / build (malta/be) (push) Has been cancelled
Build all core packages / build (x86/64) (push) Has been cancelled
Build host tools / build-macos-latest (push) Has been cancelled
Build host tools / build-linux-buildbot (push) Has been cancelled
Build Kernel / Build Kernel with external toolchain (push) Has been cancelled
Build Kernel / Check Kernel patches (push) Has been cancelled
Build host tools / push-tools-container (push) Has been cancelled
20 lines
364 B
Awk
20 lines
364 B
Awk
BEGIN { FS="/" }
|
|
$1 ~ /^feeds/ { FEEDS[$NF]=$0 }
|
|
$1 !~ /^feeds/ { PKGS[$NF]=$0 }
|
|
END {
|
|
# Filter-out OpenWrt packages which have a feeds equivalent
|
|
for (pkg in PKGS)
|
|
if (pkg in FEEDS) {
|
|
print PKGS[pkg] > of
|
|
delete PKGS[pkg]
|
|
}
|
|
n = asort(PKGS)
|
|
for (i=1; i <= n; i++) {
|
|
print PKGS[i]
|
|
}
|
|
n = asort(FEEDS)
|
|
for (i=1; i <= n; i++){
|
|
print FEEDS[i]
|
|
}
|
|
}
|