mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
script: binpkgs-missing-rebuild script to identify missing binpkgs we actually want
This commit is contained in:
parent
4c65874add
commit
72ef4c9bd8
1 changed files with 14 additions and 0 deletions
14
scripts/binpkgs-missing-rebuild
Executable file
14
scripts/binpkgs-missing-rebuild
Executable file
|
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
binpkg_restricted="$(portageq envvar PENTOO_BINPKG_RESTRICTED)"
|
||||
for missing in $($(portageq get_repo_path / pentoo)/scripts/binpkgs-missing); do
|
||||
skip=0
|
||||
for restricted in ${binpkg_restricted}; do
|
||||
if [[ ${missing} =~ ${restricted} ]]; then
|
||||
skip=1
|
||||
break
|
||||
fi
|
||||
done
|
||||
if [ "${skip}" = "0" ]; then
|
||||
printf "${missing}\n"
|
||||
fi
|
||||
done
|
||||
Loading…
Reference in a new issue