46b2f6
#!/bin/bash -
46b2f6
46b2f6
# This script is used when we build libguestfs from brew, as sometimes
46b2f6
# we require packages which are not available in the current version
46b2f6
# of RHEL.  Normally these updated packages would be released along
46b2f6
# with libguestfs in the next RHEL, although unfortunately sometimes
46b2f6
# that doesn't happen (eg. RHBZ#1199605).
46b2f6
46b2f6
set -x
46b2f6
46b2f6
pkgs="
46b2f6
"
46b2f6
46b2f6
for pkg in $pkgs ; do
46b2f6
    brew tag-pkg rhel-8.0-temp-override $pkg
46b2f6
done
46b2f6
46b2f6
for pkg in $pkgs ; do
46b2f6
    brew wait-repo rhel-8.0-build --build=$pkg
46b2f6
done