From 8e830350411929493ca168dd5d1dc3a91a9a63ac Mon Sep 17 00:00:00 2001 From: GreatSQL Date: Thu, 24 Apr 2025 14:28:25 +0800 Subject: [PATCH] 8.0.32-27.8: add mysql and mysqlrouter private dir into ldconfig search path --- greatsql.spec | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/greatsql.spec b/greatsql.spec index ddf7743..cc26b90 100644 --- a/greatsql.spec +++ b/greatsql.spec @@ -31,7 +31,7 @@ %global mysql_version 8.0.32 %global greatsql_version 27 %global revision aa66a385910 -%global rpm_release 7 +%global rpm_release 8 %global release %{greatsql_version}.%{rpm_release}%{?dist} @@ -74,7 +74,7 @@ %global license_type GPLv2 Name: greatsql -Summary: GreatSQL: a high performance, highly reliable, easy to use, and high security database +Summary: GreatSQL: a high performance, highly reliable, easy to use, and high security database that can be used to replace MySQL or Percona Server. Group: Applications/Databases Version: %{mysql_version} Release: %{release} @@ -189,7 +189,7 @@ BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) %global __requires_exclude %{?__requires_exclude:%__requires_exclude|}%{_privatelibs} %description -GreatSQL focuses on improving the reliability and performance of MGR, supports InnoDB parallel query and other features, and is a domestic MySQL version suitable for financial applications. It can be used as an optional replacement of MySQL or Percona Server. It is completely free and compatible with MySQL or Percona server. +GreatSQL: a high performance, highly reliable, easy to use, and high security database that can be used to replace MySQL or Percona Server. For a description of GreatSQL see https://greatsql.cn @@ -227,7 +227,7 @@ Requires(preun): /sbin/service %endif %description -n greatsql-server -GreatSQL: a high performance, highly reliable, easy to use, and high security database that can be used to replace MySQL or Percona Server. +GreatSQL database server binaries and system database setup. For a description of GreatSQL see https://greatsql.cn @@ -427,8 +427,10 @@ install -D -p -m 0644 %{_builddir}/greatsql-%{version}-%{greatsql_version}/great # Add libdir to linker install -d -m 0755 %{buildroot}%{_sysconfdir}/ld.so.conf.d -echo "%{_libdir}/mysql" > %{buildroot}%{_sysconfdir}/ld.so.conf.d/mysql-%{_arch}.conf +echo "%{_libdir}/mysql" >> %{buildroot}%{_sysconfdir}/ld.so.conf.d/mysql-%{_arch}.conf echo "%{_libdir}/mysql/private" >> %{buildroot}%{_sysconfdir}/ld.so.conf.d/mysql-%{_arch}.conf +echo "%{_libdir}/mysqlrouter" >> %{buildroot}%{_sysconfdir}/ld.so.conf.d/mysql-%{_arch}.conf +echo "%{_libdir}/mysqlrouter/private" >> %{buildroot}%{_sysconfdir}/ld.so.conf.d/mysql-%{_arch}.conf # multiarch support %ifarch %{multiarchs} @@ -889,6 +891,10 @@ fi %dir %attr(755, mysqlrouter, mysqlrouter) /var/run/mysqlrouter %changelog +* Thu Apr 24 2025 GreatSQL - 8.0.32-27.8 +- add mysql and mysqlrouter private dir into ldconfig search path +- update descriptions + * Wed Apr 23 2025 GreatSQL - 8.0.32-27.7 - add conflicts and obsoletes on greatsql-test/greatsql-icu-data-files package - remove greatsql-icu-data-files package -- Gitee