From d3a6b67e1466040e5f8fdfbcaa1db3c75f290129 Mon Sep 17 00:00:00 2001 From: Jia Chao Date: Tue, 30 May 2023 15:40:05 +0800 Subject: [PATCH] Fix: tools just need %{name}, do not care it's architecture. Signed-off-by: Jia Chao --- spdk.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/spdk.spec b/spdk.spec index 1ce766d..dd058e3 100644 --- a/spdk.spec +++ b/spdk.spec @@ -4,7 +4,7 @@ Name: spdk Version: 21.01.1 -Release: 13 +Release: 14 Summary: Set of libraries and utilities for high performance user-mode storage License: BSD and MIT URL: http://spdk.io @@ -104,9 +104,9 @@ developing applications with the Storage Performance Development Kit. %package tools Summary: Storage Performance Development Kit tools files %if "%{use_python2}" == "0" -Requires: %{name}%{?_isa} = %{package_version} python3 python3-configshell python3-pexpect +Requires: %{name} = %{package_version} python3 python3-configshell python3-pexpect %else -Requires: %{name}%{?_isa} = %{package_version} python python-configshell pexpect +Requires: %{name} = %{package_version} python python-configshell pexpect %endif BuildArch: noarch @@ -224,6 +224,9 @@ mv doc/output/html/ %{install_docdir} %changelog +* Tue May 30 2023 Jia Chao - 21.01.1-14 +- Fix: tools do not need require %{?_isa} package for it's noarch. + * Wed Mar 15 2023 tongkunkun - 21.01.1-13 - backport upstream patches -- Gitee