mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 00:16:22 +01:00
14 lines
364 B
Bash
Executable file
14 lines
364 B
Bash
Executable file
#!/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
|