From 06dd599975f211aff31954ba50242812bf885700 Mon Sep 17 00:00:00 2001 From: xuguangmin Date: Mon, 4 Nov 2024 15:59:10 +0800 Subject: [PATCH] Fix warning: %patchN is deprecated (7 usages found), use %patch N (or %patch -P N) --- nss.spec | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/nss.spec b/nss.spec index 7f8cc9b..5aa1ab5 100644 --- a/nss.spec +++ b/nss.spec @@ -26,7 +26,7 @@ Summary: Network Security Services Name: nss Version: %{nss_version} -Release: 7 +Release: 8 License: MPLv2.0 URL: http://www.mozilla.org/projects/security/pki/nss/ Provides: nss-system-init @@ -143,13 +143,13 @@ Help document for NSS %setup -q -n %{name}-%{nss_archive_version} pushd nss -%patch9000 -p1 -%patch9001 -p1 -%patch9002 -p1 -%patch9003 -p1 -%patch9004 -p1 -%patch9005 -p1 -%patch9006 -p1 +%patch 9000 -p1 +%patch 9001 -p1 +%patch 9002 -p1 +%patch 9003 -p1 +%patch 9004 -p1 +%patch 9005 -p1 +%patch 9006 -p1 popd %build @@ -572,6 +572,9 @@ update-crypto-policies &>/dev/null||: %doc %{_mandir}/man* %changelog +* Mon Nov 04 2024 xuguangmin - 3.94.0-8 +- Fix warning: %patchN is deprecated (7 usages found), use %patch N (or %patch -P N) + * Fri Oct 11 2024 fuanan - 3.94.0-7 - Add the crypto-policies-scripts Requires -- Gitee