Introduce -config subpackage and ship base config files here
This commit is contained in:
parent
f1a4e59c2d
commit
7dc500d407
@ -19,13 +19,6 @@
|
|||||||
|
|
||||||
%global skiplist platform-specific-tests.list
|
%global skiplist platform-specific-tests.list
|
||||||
|
|
||||||
# When there is already another package that ships /etc/my.cnf,
|
|
||||||
# rather include it than ship the file again, since conflicts between
|
|
||||||
# those files may create issues
|
|
||||||
# ship_my_cnf=1 means this is the only package in distro which ships
|
|
||||||
# my.cnf and my.cnf.d
|
|
||||||
%global ship_my_cnf 0
|
|
||||||
|
|
||||||
# For some use cases we do not need some parts of the package
|
# For some use cases we do not need some parts of the package
|
||||||
%bcond_without clibrary
|
%bcond_without clibrary
|
||||||
%bcond_without embedded
|
%bcond_without embedded
|
||||||
@ -36,6 +29,11 @@
|
|||||||
%bcond_without bench
|
%bcond_without bench
|
||||||
%bcond_without test
|
%bcond_without test
|
||||||
|
|
||||||
|
# When there is already another package that ships /etc/my.cnf,
|
||||||
|
# rather include it than ship the file again, since conflicts between
|
||||||
|
# those files may create issues
|
||||||
|
%bcond_with config
|
||||||
|
|
||||||
# Include files for SysV init or systemd
|
# Include files for SysV init or systemd
|
||||||
%if 0%{?fedora} >= 15
|
%if 0%{?fedora} >= 15
|
||||||
%bcond_without init_systemd
|
%bcond_without init_systemd
|
||||||
@ -61,7 +59,7 @@
|
|||||||
|
|
||||||
Name: %{pkgname}
|
Name: %{pkgname}
|
||||||
Version: 5.6.20
|
Version: 5.6.20
|
||||||
Release: 2%{?dist}
|
Release: 3%{?dist}
|
||||||
Summary: MySQL client programs and shared libraries
|
Summary: MySQL client programs and shared libraries
|
||||||
Group: Applications/Databases
|
Group: Applications/Databases
|
||||||
URL: http://www.mysql.com
|
URL: http://www.mysql.com
|
||||||
@ -180,13 +178,24 @@ MySQL server.
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%if %{with config}
|
||||||
|
%package config
|
||||||
|
Summary: The config files required by server and client
|
||||||
|
Group: Applications/Databases
|
||||||
|
|
||||||
|
%description config
|
||||||
|
The package provides the config file my.cnf and my.cnf.d directory used by any
|
||||||
|
MariaDB or MySQL program. You will need to install this package to use any
|
||||||
|
other MariaDB or MySQL package if the config files are not provided in the
|
||||||
|
package itself.
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%if %{with common}
|
%if %{with common}
|
||||||
%package common
|
%package common
|
||||||
Summary: The shared files required for MySQL server and client
|
Summary: The shared files required for MySQL server and client
|
||||||
Group: Applications/Databases
|
Group: Applications/Databases
|
||||||
%if ! %{ship_my_cnf}
|
|
||||||
Requires: %{_sysconfdir}/my.cnf
|
Requires: %{_sysconfdir}/my.cnf
|
||||||
%endif
|
|
||||||
|
|
||||||
%description common
|
%description common
|
||||||
The mysql-common package provides the essential shared files for any
|
The mysql-common package provides the essential shared files for any
|
||||||
@ -212,13 +221,11 @@ MySQL packages.
|
|||||||
Summary: The MySQL server and related files
|
Summary: The MySQL server and related files
|
||||||
Group: Applications/Databases
|
Group: Applications/Databases
|
||||||
|
|
||||||
# note: no version here = %{sameevr}
|
# note: no version here = %%{sameevr}
|
||||||
Requires: mysql-compat-client%{?_isa}
|
Requires: mysql-compat-client%{?_isa}
|
||||||
Requires: %{name}-common%{?_isa} = %{sameevr}
|
Requires: %{name}-common%{?_isa} = %{sameevr}
|
||||||
%if %{without common}
|
|
||||||
Requires: %{_sysconfdir}/my.cnf
|
Requires: %{_sysconfdir}/my.cnf
|
||||||
Requires: %{_sysconfdir}/my.cnf.d
|
Requires: %{_sysconfdir}/my.cnf.d
|
||||||
%endif
|
|
||||||
Requires: %{name}-errmsg%{?_isa} = %{sameevr}
|
Requires: %{name}-errmsg%{?_isa} = %{sameevr}
|
||||||
Requires: sh-utils
|
Requires: sh-utils
|
||||||
Requires(pre): /usr/sbin/useradd
|
Requires(pre): /usr/sbin/useradd
|
||||||
@ -491,7 +498,7 @@ touch %{buildroot}%{logfile}
|
|||||||
mkdir -p %{buildroot}%{_localstatedir}/run/%{daemon_name}
|
mkdir -p %{buildroot}%{_localstatedir}/run/%{daemon_name}
|
||||||
install -p -m 0755 -d %{buildroot}%{_localstatedir}/lib/mysql
|
install -p -m 0755 -d %{buildroot}%{_localstatedir}/lib/mysql
|
||||||
|
|
||||||
%if %{ship_my_cnf}
|
%if %{with config}
|
||||||
install -D -p -m 0644 scripts/my.cnf %{buildroot}%{_sysconfdir}/my.cnf
|
install -D -p -m 0644 scripts/my.cnf %{buildroot}%{_sysconfdir}/my.cnf
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
@ -580,8 +587,13 @@ mysql_find_rows,mysql_waitpid,mysqlaccess,mysqladmin,mysqlbinlog,mysqlcheck,\
|
|||||||
mysqldump,mysqlimport,mysqlshow,mysqlslap,my_print_defaults}.1*
|
mysqldump,mysqlimport,mysqlshow,mysqlslap,my_print_defaults}.1*
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%if %{without common}
|
%if %{with config}
|
||||||
|
mkdir -p %{buildroot}%{_sysconfdir}/my.cnf.d
|
||||||
|
%else
|
||||||
rm -f %{buildroot}%{_sysconfdir}/my.cnf
|
rm -f %{buildroot}%{_sysconfdir}/my.cnf
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{without common}
|
||||||
rm -rf %{buildroot}%{_datadir}/%{name}/charsets
|
rm -rf %{buildroot}%{_datadir}/%{name}/charsets
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
@ -715,16 +727,18 @@ fi
|
|||||||
%config(noreplace) %{_sysconfdir}/ld.so.conf.d/*
|
%config(noreplace) %{_sysconfdir}/ld.so.conf.d/*
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
%if %{with config}
|
||||||
|
%files config
|
||||||
|
# although the default my.cnf contains only server settings, we put it in the
|
||||||
|
# common package because it can be used for client settings too.
|
||||||
|
%config(noreplace) %{_sysconfdir}/my.cnf
|
||||||
|
%dir %{_sysconfdir}/my.cnf.d
|
||||||
|
%endif
|
||||||
|
|
||||||
%if %{with common}
|
%if %{with common}
|
||||||
%files common
|
%files common
|
||||||
%doc README COPYING README.mysql-license README.mysql-docs
|
%doc README COPYING README.mysql-license README.mysql-docs
|
||||||
%doc storage/innobase/COPYING.Percona storage/innobase/COPYING.Google
|
%doc storage/innobase/COPYING.Percona storage/innobase/COPYING.Google
|
||||||
# although the default my.cnf contains only server settings, we put it in the
|
|
||||||
# common package because it can be used for client settings too.
|
|
||||||
%if %{ship_my_cnf}
|
|
||||||
%config(noreplace) %{_sysconfdir}/my.cnf
|
|
||||||
%dir %{_sysconfdir}/my.cnf.d
|
|
||||||
%endif
|
|
||||||
%dir %{_datadir}/%{name}
|
%dir %{_datadir}/%{name}
|
||||||
%{_datadir}/%{name}/charsets
|
%{_datadir}/%{name}/charsets
|
||||||
%endif
|
%endif
|
||||||
@ -881,6 +895,9 @@ fi
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Aug 12 2014 Honza Horak <hhorak@redhat.com> - 5.6.20-3
|
||||||
|
- Introduce -config subpackage and ship base config files here
|
||||||
|
|
||||||
* Tue Aug 05 2014 Honza Horak <hhorak@redhat.com> - 5.6.20-2
|
* Tue Aug 05 2014 Honza Horak <hhorak@redhat.com> - 5.6.20-2
|
||||||
- Adopt changes from mariadb to sync spec files
|
- Adopt changes from mariadb to sync spec files
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user