From 2afd0d2e7588243d4d895277456895054da5b2cc Mon Sep 17 00:00:00 2001 From: wangxiao65 Date: Thu, 19 Dec 2024 03:19:06 +0000 Subject: [PATCH] include all patches in the source package (cherry picked from commit 1f21677aac1623c077e37377dcd003e4c38f7215) --- userspace-rcu.spec | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/userspace-rcu.spec b/userspace-rcu.spec index d9d7608..026c7ea 100644 --- a/userspace-rcu.spec +++ b/userspace-rcu.spec @@ -1,15 +1,12 @@ Name: userspace-rcu Version: 0.14.0 -Release: 1 +Release: 2 Summary: Userspace read-copy-update library License: LGPLv2+ URL: http://liburcu.org Source0: http://lttng.org/files/urcu/%{name}-%{version}.tar.bz2 -Patch1 : userspace-rcu-0.13.0-sw.patch - -%ifarch loongarch64 -Patch0000: add-loongarch.patch -%endif +Patch0001: userspace-rcu-0.13.0-sw.patch +Patch0002: add-loongarch.patch BuildRequires: pkgconfig gcc gcc-c++ autoconf automake make libtool %description @@ -27,7 +24,11 @@ Requires: %{name} = %{version}-%{release} Development files for %{name} %prep -%autosetup -n %{name}-%{version} -p1 +%setup -n %{name}-%{version} +%patch -P0001 -p1 +%ifarch loonarch64 +%patch -P0002 -p1 +%endif %build autoreconf -vif @@ -69,6 +70,9 @@ make check %changelog +* Thu Dec 19 2024 wangxiao - 0.14.0-2 +- include all patches in the source package + * Wed Jan 24 2024 liuchao - 0.14.0-1 - upgrade to 0.14.0: - Fix: urcu-bp: only teardown call-rcu worker in destructor -- Gitee