151578
#!/bin/bash -
151578
151578
# This script is used when we build libguestfs from brew, as sometimes
151578
# we require packages which are not available in the current version
151578
# of RHEL.  Normally these updated packages would be released along
151578
# with libguestfs in the next RHEL, although unfortunately sometimes
151578
# that doesn't happen (eg. RHBZ#1199605).
151578
151578
set -x
151578
151578
pkgs="
151578
  augeas-1.4.0-5.el7
151578
  hivex-1.3.10-6.9.el7
151578
  ocaml-4.05.0-6.el7
151578
  ocaml-camlp4-4.05.0-0.4.gitfc12d8c7.el7
151578
  ocaml-fileutils-0.4.4-9.el7
151578
  ocaml-findlib-1.7.3-7.el7
151578
  ocaml-gettext-0.3.7-1.el7
151578
  ocaml-srpm-macros-5-2.el7
151578
  supermin-5.1.19-1.el7
151578
"
151578
151578
for pkg in $pkgs ; do
151578
    brew tag-pkg rhel-7.5-temp-override $pkg
151578
done
151578
151578
for pkg in $pkgs ; do
151578
    brew wait-repo rhel-7.5-build --build=$pkg
151578
done