From 9eb1916f1567aee8e69675db38feaf23e734e298 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 27 Aug 2021 12:55:34 +0100 Subject: [PATCH] Disable gcrypt (for real this time). This will use gnutls's internal implementation as the default crypto engine: Crypto TLS priority : "@QEMU,SYSTEM" GNUTLS support : YES GNUTLS crypto : YES libgcrypt : NO nettle : NO crypto afalg : NO rng-none : NO Linux keyring : YES Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1998452 --- qemu.spec | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/qemu.spec b/qemu.spec index 44e1ee8..af0626e 100644 --- a/qemu.spec +++ b/qemu.spec @@ -282,7 +282,7 @@ Obsoletes: %{name}-system-unicore32-core <= %{epoch}:%{version}-%{release} Summary: QEMU is a FAST! processor emulator Name: qemu Version: 6.1.0 -Release: 3%{?rcrel}%{?dist} +Release: 4%{?rcrel}%{?dist} Epoch: 2 License: GPLv2 and BSD and MIT and CC-BY URL: http://www.qemu.org/ @@ -345,7 +345,6 @@ BuildRequires: lzo-devel snappy-devel %if %{have_numactl} BuildRequires: numactl-devel %endif -BuildRequires: libgcrypt-devel # qemu-pr-helper multipath support (requires libudev too) BuildRequires: device-mapper-multipath-devel BuildRequires: systemd-devel @@ -1366,7 +1365,6 @@ run_configure \ %if %{have_fdt} --enable-fdt \ %endif - --enable-gcrypt \ --enable-gnutls \ --enable-guest-agent \ --enable-iconv \ @@ -2230,6 +2228,9 @@ useradd -r -u 107 -g qemu -G kvm -d / -s /sbin/nologin \ %changelog +* Fri Aug 27 2021 Richard W.M. Jones - 6.1.0-4 +- Disable gcrypt (for real this time). + * Fri Aug 27 2021 Richard W.M. Jones - 6.1.0-3 - Revert "Disable gcrypt" which seems to disable gnutls (RHBZ#1998452)