summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorJonathan Lebon <jonathan@jlebon.com>2018-04-17 15:21:04 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-04-17 20:12:49 +0000
commit09dc2a87724111e83249b42dd4c4faa5dd2c2840 (patch)
treecf548f817fa79085f59889a65d3d7004c653e10e /ci
parent474556b95547d75fe1cc4c2131a878489c7a3f82 (diff)
downloadostree-09dc2a87724111e83249b42dd4c4faa5dd2c2840.tar.gz
ci: use gpgme scratch build to workaround issues
Temporarily work around gpgme issues until the package gets into stable. For more information, see: https://src.fedoraproject.org/rpms/gpgme/pull-request/3 https://github.com/ostreedev/ostree/pull/1539 Closes: #1540 Approved by: cgwalters
Diffstat (limited to 'ci')
-rw-r--r--ci/libpaprci/libbuild.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/ci/libpaprci/libbuild.sh b/ci/libpaprci/libbuild.sh
index 074494f0..9ad417b2 100644
--- a/ci/libpaprci/libbuild.sh
+++ b/ci/libpaprci/libbuild.sh
@@ -60,6 +60,12 @@ pkg_builddep() {
# This is sadly the only case where it's a different command
if test -x /usr/bin/dnf; then
dnf builddep -y "$@"
+
+ # XXX: tmp hack -- see
+ # https://github.com/ostreedev/ostree/pull/1539
+ if rpm -q gpgme | grep -q gpgme-1.9.0-6.fc27; then
+ dnf install -y https://kojipkgs.fedoraproject.org//packages/gpgme/1.10.0/4.fc27/x86_64/{gpgme{,-devel},python{2,3}-gpg}-1.10.0-4.fc27.x86_64.rpm
+ fi
else
yum-builddep -y "$@"
fi