From 3175f924cd20e5a1173ddee904ded94aebfd1776 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E6=81=AC?= Date: Mon, 16 Dec 2024 17:54:34 +0800 Subject: [PATCH] fix build warnings: patchN is deprecated, use patch N (or %patch -P N) --- jaxb2-common-basics.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/jaxb2-common-basics.spec b/jaxb2-common-basics.spec index 6435ba2..b2c7b9e 100644 --- a/jaxb2-common-basics.spec +++ b/jaxb2-common-basics.spec @@ -1,6 +1,6 @@ Name: jaxb2-common-basics Version: 1.11.1 -Release: 1 +Release: 2 Summary: JAXB2 Basics License: BSD-2-Clause Url: https://github.com/highsource/jaxb2-basics @@ -30,7 +30,7 @@ This package contains javadoc for %{name}. %prep %setup -q -n jaxb2-basics-%{version} -%patch0 -p1 +%patch 0 -p1 find -name "*.bat" -print -delete find -name "*.class" -print -delete find -name "*.jar" -print -delete @@ -65,6 +65,9 @@ sed -i '/a1.b.a, a1/d' runtime/src/test/java/org/jvnet/jaxb2_commons/lang/tests/ %license LICENSE %changelog +* Mon Dec 16 2024 litian - 1.11.1-2 +- fix %patchN is deprecated warning + * Tue Apr 30 2024 Ge Wang - 1.11.1-1 - Update to version 1.11.1 -- Gitee