From 3c786947f7d7fb72580d4e7b20d28ae72d5bdd07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E6=81=AC?= Date: Tue, 17 Dec 2024 10:54:26 +0800 Subject: [PATCH] fix build warnings: %patchN is deprecated, use %patch N (or %patch -P N) --- jeromq.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/jeromq.spec b/jeromq.spec index 83c7143..87e7910 100644 --- a/jeromq.spec +++ b/jeromq.spec @@ -1,6 +1,6 @@ Name: jeromq Version: 0.6.0 -Release: 1 +Release: 2 Summary: Pure Java implementation of libzmq License: MPLv2.0 URL: https://github.com/zeromq/jeromq @@ -25,7 +25,7 @@ This package contains the API documentation for %{name}. %prep %setup -q -%patch0 -p1 +%patch -P 0 -p1 %pom_remove_plugin :maven-checkstyle-plugin %pom_remove_plugin biz.aQute.bnd:bnd-maven-plugin @@ -44,6 +44,9 @@ sed -i '/dependencies/, +6 d' .xmvn-reactor %license LICENSE %changelog +* Tue Dec 17 2024 litian - 0.6.0-2 +- fix %patchN is deprecated warning + * Sun Sep 29 2024 Ge Wang - 0.6.0-1 - Update to version 0.6.0 -- Gitee