From 5ca36e9dccf043f37d24d7dfab4ed002dd3ad8c4 Mon Sep 17 00:00:00 2001 From: Michal Ruprich Date: Thu, 7 Nov 2024 13:18:08 +0100 Subject: [PATCH] Resolves: RHEL-59862 - Avoid direct usage of nettle functions --- wget.spec | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/wget.spec b/wget.spec index 801295b..7b7604c 100644 --- a/wget.spec +++ b/wget.spec @@ -1,7 +1,7 @@ Summary: A utility for retrieving files using the HTTP or FTP protocols Name: wget Version: 1.24.5 -Release: 3%{?dist} +Release: 4%{?dist} License: GPL-3.0-or-later AND LGPL-2.1-or-later AND GFDL-1.3-or-later Url: http://www.gnu.org/software/wget/ Source: ftp://ftp.gnu.org/gnu/wget/wget-%{version}.tar.gz @@ -18,7 +18,7 @@ BuildRequires: perl(lib) BuildRequires: perl(English) BuildRequires: perl(HTTP::Daemon) BuildRequires: python3 -BuildRequires: gnutls-devel +BuildRequires: openssl-devel BuildRequires: pkgconfig BuildRequires: texinfo BuildRequires: gettext @@ -31,7 +31,6 @@ BuildRequires: gpgme-devel BuildRequires: gcc BuildRequires: zlib-devel BuildRequires: git-core -BuildRequires: nettle-devel %description GNU Wget is a file retrieval utility which can use either the HTTP or @@ -51,12 +50,11 @@ grep "PACKAGE_STRING='wget .* (Red Hat modified)'" configure || exit 1 %build %configure \ - --with-ssl=gnutls \ + --with-ssl=openssl \ --with-libpsl \ --enable-largefile \ --enable-opie \ --enable-digest \ - --enable-ntlm \ --enable-nls \ --enable-ipv6 \ --disable-rpath @@ -82,6 +80,9 @@ make check %{_infodir}/* %changelog +* Thu Nov 07 2024 Michal Ruprich - 1.24.5-4 +- Resolves: RHEL-59862 - Avoid direct usage of nettle functions + * Tue Nov 05 2024 Eduard Abdullin - 1.24.5-3 - Resolves: RHEL-61131 - Missing BuildRequries to nettle-devel