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