From 9402fb9374c664a28fafb9ccda2ef3db7c09964f Mon Sep 17 00:00:00 2001 From: Funda Wang Date: Thu, 29 May 2025 10:58:16 +0800 Subject: [PATCH] disable md5 and ripemd160 per upstream --- xmlsec1.spec | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/xmlsec1.spec b/xmlsec1.spec index 5ed088d..e564972 100644 --- a/xmlsec1.spec +++ b/xmlsec1.spec @@ -1,6 +1,6 @@ Name: xmlsec1 Version: 1.2.41 -Release: 2 +Release: 3 Summary: Library providing support for "XML Signature" and "XML Encryption" standards License: MIT URL: https://www.aleksey.com/xmlsec @@ -52,7 +52,13 @@ This package contains the libraries and develop content for the xmlsec library. %build autoreconf -vfi -%configure --disable-static --enable-openssl3-engines --without-gcrypt --without-gnutls +%configure \ + --disable-static \ + --enable-openssl3-engines \ + --without-gcrypt \ + --without-gnutls \ + --disable-md5 \ + --disable-ripemd160 %disable_rpath %make_build V=1 @@ -88,6 +94,10 @@ mv %{buildroot}%{_docdir}/xmlsec1/* __tmp_doc %{_mandir}/man1/*.1* %changelog +* Thu May 29 2025 Funda Wang - 1.2.41-3 +- disable md5 and ripemd160 per upstream + (https://github.com/lsh123/xmlsec/pull/848) + * Sun Apr 27 2025 Funda Wang - 1.2.41-2 - disable gcrypt backend per upstream (https://github.com/lsh123/xmlsec/pull/848) -- Gitee