From b03f4db6a030aa59297ae6c7ea645c6b62903435 Mon Sep 17 00:00:00 2001 From: zhangbinchen Date: Thu, 23 Dec 2021 17:59:01 +0800 Subject: [PATCH] spec : fix build - remove check_testsuite - redefine ignore_testsuite_result - like this: %{!?check_testsuite:%global ignore_testsuite_result 0} -> %global ignore_testsuite_result 0 Signed-off-by: zhangbinchen --- mysql.spec | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/mysql.spec b/mysql.spec index 9047317..8d0c462 100644 --- a/mysql.spec +++ b/mysql.spec @@ -1,3 +1,4 @@ +%define anolis_release .0.1 # SCL stuff %{?scl:%scl_package mysql} %{!?scl:%global pkg_name %{name}} @@ -11,7 +12,7 @@ %{!?runselftest:%global runselftest 1} # Set this to 1 to see which tests fail, but 0 on production ready build -%{!?check_testsuite:%global ignore_testsuite_result 0} +%global ignore_testsuite_result 0 # The last version on which the full testsuite has been run # In case of further rebuilds of that version, don't require full testsuite to be run @@ -148,7 +149,7 @@ Name: %{?scl_prefix}mysql Version: 8.0.26 -Release: 1%{?with_debug:.debug}%{?dist} +Release: 1%{anolis_release}%{?with_debug:.debug}%{?dist} Summary: MySQL client programs and shared libraries URL: http://www.mysql.com @@ -1211,6 +1212,10 @@ fi %endif %changelog +* Thu Dec 23 2021 zhangbinchen - 8.0.26-1.0.1 +- remove check_testsuite +- redefine ignore_testsuite_result + * Wed Jul 21 2021 Lars Tangvald - 8.0.26-1 - Update to MySQL 8.0.26 -- Gitee