Blame SPECS/mysql.spec

47f670
# SCL stuff
47f670
%{?scl:%scl_package mysql}
47f670
%{!?scl:%global pkg_name %{name}}
47f670
47f670
# Name of the package without any prefixes
47f670
%global pkgnamepatch mysql
47f670
47f670
# Regression tests may take a long time (many cores recommended), skip them by
47f670
# passing --nocheck to rpmbuild or by setting runselftest to 0 if defining
47f670
# --nocheck is not possible (e.g. in koji build)
47f670
%{!?runselftest:%global runselftest 1}
47f670
47f670
# Set this to 1 to see which tests fail
47f670
%{!?check_testsuite:%global check_testsuite 1}
47f670
47f670
# In f20+ use unversioned docdirs, otherwise the old versioned one
47f670
%global _pkgdocdirname %{pkg_name}%{!?_pkgdocdir:-%{version}}
47f670
%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{pkg_name}-%{version}}
47f670
47f670
# Use Full RELRO for all binaries (RHBZ#1092548)
47f670
%global _hardened_build 1
47f670
47f670
# By default, patch(1) creates backup files when chunks apply with offsets.
47f670
# Turn that off to ensure such files don't get included in RPMs (cf bz#884755).
47f670
%global _default_patch_flags --no-backup-if-mismatch
47f670
47f670
%global skiplist platform-specific-tests.list
47f670
47f670
# For some use cases we do not need some parts of the package
47f670
%if 0%{?scl:1}
47f670
%bcond_with clibrary
47f670
%else
47f670
%bcond_without clibrary
47f670
%endif
47f670
%bcond_without devel
47f670
%bcond_without client
47f670
%bcond_without common
47f670
%bcond_without errmsg
47f670
%bcond_without test
47f670
47f670
# When there is already another package that ships /etc/my.cnf,
47f670
# rather include it than ship the file again, since conflicts between
47f670
# those files may create issues
47f670
%if 0%{?scl:1}
47f670
%bcond_without config
47f670
%else
47f670
%bcond_with config
47f670
%endif
47f670
47f670
# For deep debugging we need to build binaries with extra debug info
47f670
%bcond_with debug
47f670
47f670
%if 0%{?fedora}
47f670
%bcond_with bundled_icu
47f670
%else
47f670
%bcond_without bundled_icu
47f670
%endif
47f670
47f670
%if 0%{?fedora} >= 26 || 0%{?rhel} > 7
47f670
%bcond_with bundled_protobuf
47f670
%else
47f670
%bcond_without bundled_protobuf
47f670
%endif
47f670
47f670
%if 0%{?fedora}
47f670
%bcond_with bundled_re2
47f670
%else
47f670
%bcond_without bundled_re2
47f670
%endif
47f670
47f670
# Include files for SysV init or systemd
47f670
%if 0%{?fedora} >= 15 || 0%{?rhel} >= 7
47f670
%bcond_without init_systemd
47f670
%bcond_with init_sysv
47f670
%global daemondir %{_unitdir}
47f670
%else
47f670
%bcond_with init_systemd
47f670
%bcond_without init_sysv
47f670
%global daemondir %{_sysconfdir}/rc.d/init.d
47f670
%endif
47f670
%global daemon_name %{?scl_prefix}mysqld
47f670
%global daemon_no_prefix mysqld
47f670
47f670
%{?scl:%global se_daemon_source %{_unitdir}/mysqld}
47f670
47f670
# Directory for storing pid file
47f670
%if 0%{?rhel} == 6
47f670
%global pidfiledir %{_localstatedir}/run/%{daemon_name}
47f670
%else
47f670
%global pidfiledir %{_rundir}/%{daemon_name}
47f670
%endif
47f670
47f670
# We define some system's well known locations here so we can use them easily
47f670
# later when building to another location (like SCL)
47f670
%if 0%{?scl:1}
47f670
%global logrotateddir %{_root_sysconfdir}/logrotate.d
47f670
%global selinux_packages_dir %{_root_datadir}/selinux/packages
47f670
%else
47f670
%global logrotateddir %{_sysconfdir}/logrotate.d
47f670
%global selinux_packages_dir %{_datadir}/selinux/packages
47f670
%endif
47f670
%global logfiledir %{_localstatedir}/log/mysql
47f670
%global logfile %{logfiledir}/%{daemon_no_prefix}.log
47f670
47f670
# Defining where database data live
47f670
%global dbdatadir %{_localstatedir}/lib/mysql
47f670
47f670
# Home directory of mysql user should be same for all packages that create it
47f670
%global mysqluserhome /var/lib/mysql
47f670
47f670
# Provide mysql names for compatibility
47f670
%if 0%{?scl:1}
47f670
%bcond_with mysql_names
47f670
%bcond_with conflicts
47f670
%else
47f670
%bcond_without mysql_names
47f670
%bcond_without conflicts
47f670
%endif
47f670
47f670
# Make long macros shorter
47f670
%global sameevr   %{?epoch:%{epoch}:}%{version}-%{release}
47f670
47f670
%if 0%{?scl:1}
47f670
%global scl_upper %{lua:print(string.upper(string.gsub(rpm.expand("%{scl}"), "-", "_")))}
47f670
%endif
47f670
47f670
Name:             %{?scl_prefix}mysql
48a980
Version:          8.0.17
48a980
Release:          3%{?with_debug:.debug}%{?dist}
47f670
Summary:          MySQL client programs and shared libraries
47f670
URL:              http://www.mysql.com
47f670
47f670
# Exceptions allow client libraries to be linked with most open source SW,
47f670
# not only GPL code.  See README.mysql-license
47f670
License:          GPLv2 with exceptions and LGPLv2 and BSD
47f670
47f670
Source0:          https://cdn.mysql.com/Downloads/MySQL-8.0/mysql-boost-%{version}.tar.gz
47f670
Source2:          mysql_config_multilib.sh
47f670
Source3:          my.cnf.in
47f670
Source6:          README.mysql-docs
47f670
Source7:          README.mysql-license
47f670
Source10:         mysql.tmpfiles.d.in
47f670
Source11:         mysql.service.in
47f670
Source12:         mysql-prepare-db-dir.sh
47f670
Source13:         mysql-wait-ready.sh
47f670
Source14:         mysql-check-socket.sh
47f670
Source15:         mysql-scripts-common.sh
47f670
Source16:         mysql-check-upgrade.sh
47f670
Source17:         mysql-wait-stop.sh
47f670
Source18:         mysql@.service.in
47f670
Source19:         mysql.init.in
47f670
# To track rpmlint warnings
47f670
Source30:         mysql-5.6.10-rpmlintrc
47f670
# Configuration for server
47f670
Source31:         server.cnf.in
47f670
Source32:         default-authentication-plugin.cnf
47f670
Source40:         daemon-scl-helper.sh
47f670
Source41:         mysql-sysnice.te
47f670
47f670
# Comments for these patches are in the patch files
47f670
# Patches common for more mysql-like packages
47f670
Patch1:           %{pkgnamepatch}-install-test.patch
47f670
Patch2:           %{pkgnamepatch}-s390-tsc.patch
47f670
Patch3:           %{pkgnamepatch}-file-contents.patch
47f670
Patch4:           %{pkgnamepatch}-scripts.patch
47f670
Patch5:           %{pkgnamepatch}-paths.patch
47f670
47f670
# Patches specific for this mysql package
47f670
Patch51:          %{pkgnamepatch}-chain-certs.patch
47f670
Patch52:          %{pkgnamepatch}-sharedir.patch
47f670
Patch75:          %{pkgnamepatch}-arm32-timer.patch
47f670
Patch76:          %{pkgnamepatch}-header-file-include.patch
47f670
47f670
# Patches specific for scl
47f670
Patch90:          %{pkgnamepatch}-scl-env-check.patch
47f670
Patch91:          %{pkgnamepatch}-rpath.patch
47f670
47f670
# Patches taken from boost 1.59
47f670
Patch115: boost-1.58.0-pool.patch
47f670
Patch125: boost-1.57.0-mpl-print.patch
47f670
# Use same logfile path in logrotate and mysql configs
47f670
Patch126: mysql-logrotate-log-path.patch
47f670
47f670
BuildRequires:    cmake
47f670
BuildRequires:    gcc-c++
47f670
BuildRequires:    libaio-devel
47f670
BuildRequires:    libedit-devel
47f670
BuildRequires:    libevent-devel
47f670
%if %{without bundled_icu}
47f670
BuildRequires:    libicu-devel
47f670
%endif
47f670
BuildRequires:    %{?scl_prefix}lz4
47f670
BuildRequires:    %{?scl_prefix}lz4-devel
47f670
BuildRequires:    %{?scl_prefix}mecab-devel
47f670
BuildRequires:    %{?scl_prefix}bison
47f670
%ifnarch aarch64 %{arm} s390 s390x
47f670
BuildRequires:    numactl-devel
47f670
%endif
47f670
BuildRequires:    openssl-devel
47f670
%if 0%{?fedora} > 24 || 0%{?rhel} > 7
47f670
BuildRequires:    perl-interpreter
47f670
BuildRequires:    perl-generators
47f670
%endif
47f670
%if 0%{?fedora} > 27 || 0%{?rhel} > 7
47f670
BuildRequires:    rpcgen
47f670
BuildRequires:    libtirpc-devel
47f670
%endif
47f670
%if %{without bundled_protobuf}
47f670
BuildRequires:    protobuf-lite-devel
47f670
%endif
47f670
BuildRequires:    rapidjson-devel
47f670
%if %{without bundled_re2}
47f670
BuildRequires:    re2-devel
47f670
%endif
47f670
BuildRequires:    zlib
47f670
BuildRequires:    zlib-devel
47f670
BuildRequires:    multilib-rpm-config
47f670
# Tests requires time and ps and some perl modules
47f670
BuildRequires:    procps
47f670
BuildRequires:    time
47f670
BuildRequires:    perl(Digest::file)
47f670
BuildRequires:    perl(Digest::MD5)
47f670
BuildRequires:    perl(Env)
47f670
BuildRequires:    perl(Exporter)
47f670
BuildRequires:    perl(Fcntl)
47f670
BuildRequires:    perl(File::Temp)
47f670
BuildRequires:    perl(Data::Dumper)
47f670
BuildRequires:    perl(Getopt::Long)
47f670
BuildRequires:    perl(IPC::Open3)
47f670
BuildRequires:    perl(JSON)
47f670
BuildRequires:    perl(LWP::Simple)
47f670
BuildRequires:    perl(Memoize)
47f670
BuildRequires:    perl(Socket)
47f670
BuildRequires:    perl(Sys::Hostname)
47f670
BuildRequires:    perl(Test::More)
47f670
BuildRequires:    perl(Time::HiRes)
47f670
%{?with_init_systemd:BuildRequires: systemd}
47f670
47f670
# aarch64 requires newer gcc
47f670
%if 0%{?rhel} == 7 && 0%{?scl:1}
47f670
%global dts devtoolset-7
47f670
BuildRequires:    %{dts}-gcc-c++
47f670
%endif
47f670
BuildRequires:    selinux-policy-devel
47f670
47f670
Requires:         bash coreutils grep
47f670
Requires:         %{name}-common%{?_isa} = %{sameevr}
47f670
%{?scl:Requires:%scl_runtime}
47f670
48a980
Provides:         bundled(boost) = 1.69
47f670
%if %{with bundled_protobuf}
47f670
Provides:         bundled(protobuf) = 2.6.1
47f670
%endif
47f670
%if %{with bundled_re2}
47f670
# it's not clear what version of re2 upstream took
47f670
Provides:         bundled(re2)
47f670
%endif
47f670
%if %{with bundled_icu}
47f670
Provides:         bundled(icu) = 59
47f670
%endif
47f670
47f670
%if %{with mysql_names}
47f670
Provides:         mysql = %{sameevr}
47f670
Provides:         mysql%{?_isa} = %{sameevr}
47f670
Provides:         mysql-compat-client = %{sameevr}
47f670
Provides:         mysql-compat-client%{?_isa} = %{sameevr}
47f670
%endif
47f670
47f670
%{?with_conflicts:Conflicts:        mariadb}
47f670
# mysql-cluster used to be built from this SRPM, but no more
47f670
Obsoletes:        mysql-cluster < 5.1.44
47f670
47f670
# Filtering: https://fedoraproject.org/wiki/Packaging:AutoProvidesAndRequiresFiltering
47f670
%if 0%{?fedora} > 14 || 0%{?rhel} > 6
47f670
%global __requires_exclude ^perl\\((hostnames|lib::mtr|lib::v1|mtr_|My::)
47f670
%global __provides_exclude_from ^(%{_datadir}/(mysql|mysql-test)/.*|%{_libdir}/mysql/plugin/.*\\.so)$
47f670
%else
47f670
%filter_from_requires /perl(\(hostnames\|lib::mtr\|lib::v1\|mtr_\|My::\)/d
47f670
%filter_provides_in -P (%{_datadir}/(mysql|mysql-test)/.*|%{_libdir}/mysql/plugin/.*\.so)
47f670
%filter_setup
47f670
%endif
47f670
47f670
%description
47f670
MySQL is a multi-user, multi-threaded SQL database server. MySQL is a
47f670
client/server implementation consisting of a server daemon (mysqld)
47f670
and many different client programs and libraries. The base package
47f670
contains the standard MySQL client programs and generic MySQL files.
47f670
47f670
47f670
%if %{with clibrary}
47f670
%package          libs
47f670
Summary:          The shared libraries required for MySQL clients
47f670
Requires:         %{name}-common%{?_isa} = %{sameevr}
47f670
%{?scl:Requires:%scl_runtime}
47f670
%if %{with mysql_names}
47f670
Provides:         mysql-libs = %{sameevr}
47f670
Provides:         mysql-libs%{?_isa} = %{sameevr}
47f670
%endif
47f670
47f670
%description      libs
47f670
The mysql-libs package provides the essential shared libraries for any
47f670
MySQL client program or interface. You will need to install this package
47f670
to use any other MySQL package or any clients that need to connect to a
47f670
MySQL server.
47f670
%endif
47f670
47f670
47f670
%if %{with config}
47f670
%package          config
47f670
Summary:          The config files required by server and client
47f670
%{?scl:Requires:%scl_runtime}
47f670
47f670
%description      config
47f670
The package provides the config file my.cnf and my.cnf.d directory used by any
47f670
MariaDB or MySQL program. You will need to install this package to use any
47f670
other MariaDB or MySQL package if the config files are not provided in the
47f670
package itself.
47f670
%endif
47f670
47f670
47f670
%if %{with common}
47f670
%package          common
47f670
Summary:          The shared files required for MySQL server and client
47f670
Requires:         %{_sysconfdir}/my.cnf
47f670
%{?scl:Requires:%scl_runtime}
47f670
47f670
%description      common
47f670
The mysql-common package provides the essential shared files for any
47f670
MySQL program. You will need to install this package to use any other
47f670
MySQL package.
47f670
%endif
47f670
47f670
47f670
%if %{with errmsg}
47f670
%package          errmsg
47f670
Summary:          The error messages files required by MySQL server
47f670
Group:            Applications/Databases
47f670
Requires:         %{name}-common%{?_isa} = %{sameevr}
47f670
%{?scl:Requires:%scl_runtime}
47f670
47f670
%description      errmsg
47f670
The package provides error messages files for the MySQL daemon
47f670
%endif
47f670
47f670
47f670
%package          server
47f670
Summary:          The MySQL server and related files
47f670
47f670
# Require any mysql client, but prefer mysql client for mysql server
47f670
%if 0%{?fedora} || 0%{?rhel} > 7
47f670
Suggests:         %{name}%{?_isa} = %{sameevr}
47f670
%endif
47f670
Requires:         %{?scl_prefix}mysql%{?_isa}
47f670
47f670
Requires:         %{name}-common%{?_isa} = %{sameevr}
47f670
Requires:         %{_sysconfdir}/my.cnf
47f670
Requires:         %{_sysconfdir}/my.cnf.d
47f670
Requires:         %{name}-errmsg%{?_isa} = %{sameevr}
47f670
%{?mecab:Requires: %{?scl_prefix}mecab-ipadic}
47f670
Requires:         coreutils
47f670
Requires(pre):    /usr/sbin/useradd
47f670
%if %{with init_systemd}
47f670
# We require this to be present for %%{_tmpfilesdir}
47f670
Requires:         systemd
47f670
# Make sure it's there when scriptlets run, too
47f670
%{?systemd_requires: %systemd_requires}
47f670
# semanage
47f670
%if 0%{?fedora} >= 26 || 0%{?rhel} > 7
47f670
Requires(post):   policycoreutils-python-utils
47f670
%else
47f670
Requires(post):   policycoreutils-python
47f670
%endif
47f670
%{?scl:Requires:%scl_runtime}
47f670
%{?scl:BuildRequires: scl-utils-build-helpers}
47f670
%endif
47f670
%if %{with mysql_names}
47f670
Provides:         mysql-server = %{sameevr}
47f670
Provides:         mysql-server%{?_isa} = %{sameevr}
47f670
Provides:         mysql-compat-server = %{sameevr}
47f670
Provides:         mysql-compat-server%{?_isa} = %{sameevr}
47f670
Obsoletes:        mysql-bench < 5.7.8
47f670
%endif
47f670
Obsoletes:        mysql-bench < 5.7.8
47f670
%{?with_conflicts:Conflicts:        mariadb-server}
47f670
%{?with_conflicts:Conflicts:        mariadb-galera-server}
47f670
# A dependency mistake was made, to fix it, old version of the utils must be Obsoleted. Affected versions: F24, F25, F26 until their EOL.
47f670
Obsoletes:        mariadb-server-utils < 3:10.1.21-3
47f670
47f670
%description      server
47f670
MySQL is a multi-user, multi-threaded SQL database server. MySQL is a
47f670
client/server implementation consisting of a server daemon (mysqld)
47f670
and many different client programs and libraries. This package contains
47f670
the MySQL server and some accompanying files and directories.
47f670
47f670
47f670
%if %{with devel}
47f670
%package          devel
47f670
Summary:          Files for development of MySQL applications
47f670
%{?with_clibrary:Requires:         %{name}-libs%{?_isa} = %{sameevr}}
47f670
Requires:         openssl-devel
47f670
Requires:         zlib-devel
47f670
%{?with_conflicts:Conflicts:        mariadb-devel}
47f670
%{?scl:Requires:%scl_runtime}
47f670
47f670
%description      devel
47f670
MySQL is a multi-user, multi-threaded SQL database server. This
47f670
package contains the libraries and header files that are needed for
47f670
developing MySQL client applications.
47f670
%endif
47f670
47f670
%if %{with test}
47f670
%package          test
47f670
Summary:          The test suite distributed with MySQL
47f670
Requires:         %{name}%{?_isa} = %{sameevr}
47f670
Requires:         %{name}-common%{?_isa} = %{sameevr}
47f670
Requires:         %{name}-server%{?_isa} = %{sameevr}
47f670
Requires:         gzip
47f670
Requires:         %{?scl_prefix}lz4
47f670
Requires:         perl(Digest::file)
47f670
Requires:         perl(Digest::MD5)
47f670
Requires:         perl(Env)
47f670
Requires:         perl(Exporter)
47f670
Requires:         perl(Fcntl)
47f670
Requires:         perl(File::Temp)
47f670
Requires:         perl(Data::Dumper)
47f670
Requires:         perl(Getopt::Long)
47f670
Requires:         perl(IPC::Open3)
47f670
Requires:         perl(JSON)
47f670
Requires:         perl(LWP::Simple)
47f670
Requires:         perl(Memoize)
47f670
Requires:         perl(Socket)
47f670
Requires:         perl(Sys::Hostname)
47f670
Requires:         perl(Test::More)
47f670
Requires:         perl(Time::HiRes)
47f670
%{?with_conflicts:Conflicts:        mariadb-test}
47f670
%{?scl:Requires:%scl_runtime}
47f670
%if %{with mysql_names}
47f670
Provides:         mysql-test = %{sameevr}
47f670
Provides:         mysql-test%{?_isa} = %{sameevr}
47f670
%endif
47f670
47f670
%description      test
47f670
MySQL is a multi-user, multi-threaded SQL database server. This
47f670
package contains the regression test suite distributed with
47f670
the MySQL sources.
47f670
%endif
47f670
47f670
%if 0%{?scl:1}
47f670
%scl_syspaths_package -d
47f670
%scl_syspaths_package config -d
47f670
%scl_syspaths_package server -d
47f670
%endif
47f670
47f670
47f670
%prep
47f670
%setup -q -n mysql-%{version}
47f670
%patch1 -p1
47f670
%patch2 -p1
47f670
%patch3 -p1
47f670
%patch4 -p1
47f670
%patch5 -p1
47f670
%patch51 -p1
47f670
%patch52 -p1
47f670
%patch75 -p1
47f670
%patch76 -p1
47f670
%patch126 -p1
47f670
47f670
# Patch Boost
48a980
pushd boost/boost_1_69_0
47f670
%patch115 -p0
47f670
%patch125 -p1
47f670
popd
47f670
47f670
# Modify tests to pass on all archs
47f670
pushd mysql-test
47f670
47f670
add_test () {
47f670
    echo "$@" $ >> %{skiplist}
47f670
}
47f670
47f670
touch %{skiplist}
47f670
47f670
# fails everywhere
47f670
add_test gis.srs                               : 8.0 issue
47f670
add_test main.import                           : 8.0 issue
47f670
add_test main.no_binlog_related_options        : 8.0 issue
47f670
add_test main.regular_expressions_func_icu_54  : 8.0 issue
47f670
add_test main.regular_expressions_utf-8_icu_58 : 8.0 issue
47f670
add_test main.regular_expressions_utf-8        : 8.0 issue
47f670
add_test main.regular_expressions_utf-8_icu_59 : 8.0 issue
47f670
add_test perfschema.histograms                 : 8.0 issue
47f670
add_test main.log_options_cmdline              : 8.0 issue
47f670
47f670
# Fails since 8.0
47f670
add_test x.crud_insert_cast                    :
47f670
add_test x.insert_table                        :
47f670
add_test x.insert_table_bad_column             :
47f670
add_test x.insert_table_bad_column_type        :
47f670
add_test x.insert_table_bad_numcolumns         :
47f670
add_test x.update_crud_arrayappend_o           :
47f670
add_test x.update_crud_arrayinsert_o           :
47f670
47f670
add_test innodb.innodb                         : missing correct value
47f670
add_test innodb.innodb_cats                    :
47f670
add_test innodb.log_corruption                 :
47f670
47f670
add_test main.dd_upgrade_test                  :
47f670
add_test main.disabled_replication             :
47f670
add_test main.flush2                           :
47f670
add_test main.import                           :
47f670
add_test main.mysqldump-no-binlog              :
47f670
add_test main.skip_log_bin                     :
47f670
47f670
add_test main.window_functions_explain         :
47f670
add_test rpl_gtid.rpl_gtid_perfschema_applier_xa_status :
47f670
add_test gis.gis_bugs_crashes                  :
47f670
add_test perfschema.histograms                 :
47f670
add_test main.log_options_cmdline              :
47f670
47f670
# these tests fail on arm32
47f670
%ifarch %arm
47f670
# FTS; still apply for 5.7.21
47f670
add_test innodb_fts.opt                   : arm32 FTS issue
47f670
# Missing hw counters; in 5.7.21 reported as unstable tests
47f670
add_test perfschema.func_file_io          : missing hw on arm32
47f670
add_test perfschema.setup_objects         : missing hw on arm32
47f670
add_test perfschema.global_read_lock      : missing hw on arm32
47f670
add_test perfschema.func_mutex            : missing hw on arm32
47f670
%endif
47f670
47f670
# these tests fail on aarch64
47f670
%ifarch aarch64
47f670
add_test import_5_7                       : 8.0 issue/aarch64
47f670
add_test sdi                              : 8.0 issue/aarch64
47f670
add_test dd_upgrade_partition             : 8.0 issue/aarch64
47f670
%endif
47f670
47f670
# This test fail on ppc64 and ppc64le; applicable in 5.7.21
47f670
%ifarch ppc64le
47f670
add_test main.histograms                     : 8.0 issue/ppc64le
47f670
add_test main.opt_costmodel                  : 8.0 issue/ppc64le
47f670
add_test innodb.temporary_table_optimization : 8.0 issue/ppc64le
47f670
add_test perfschema.memory_aggregate_no_a : incorrect numbers in output
47f670
add_test innodb_zip.wl6469                :
47f670
add_test json.json_functions_innodb       :
47f670
add_test main.ps                          :
47f670
add_test main.select_all                  :
47f670
add_test main.select_all_bka              :
47f670
add_test main.select_all_bka_nixbnl       :
47f670
add_test main.select_icp_mrr              :
47f670
add_test main.select_icp_mrr_bka          :
47f670
add_test main.select_icp_mrr_bka_nixbnl   :
47f670
add_test main.select_none                 :
47f670
add_test main.select_none_bka             :
47f670
add_test main.select_none_bka_nixbnl      :
47f670
add_test main.sp                          :
47f670
add_test main.type_float                  :
47f670
add_test main.type_newdecimal             :
47f670
add_test main.type_ranges                 :
47f670
add_test test_service_sql_api.test_sql_all_col_types :
47f670
%endif
47f670
47f670
popd
47f670
47f670
cp %{SOURCE2} %{SOURCE3} %{SOURCE10} %{SOURCE11} %{SOURCE12} %{SOURCE13} \
47f670
   %{SOURCE14} %{SOURCE15} %{SOURCE16} %{SOURCE17} %{SOURCE18} %{SOURCE19} %{SOURCE31} scripts
47f670
47f670
%if 0%{?scl:1}
47f670
%patch90 -p1
47f670
%patch91 -p1
47f670
%endif
47f670
47f670
cp %{SOURCE41} mysql-sysnice.te
47f670
47f670
47f670
%build
48a980
%{set_build_flags}
48a980
47f670
make -f /usr/share/selinux/devel/Makefile mysql-sysnice.te mysql-sysnice.pp
47f670
# fail quickly and obviously if user tries to build as root
47f670
%if %runselftest
47f670
    if [ x"$(id -u)" = "x0" ]; then
47f670
        echo "mysql's regression tests fail if run as root."
47f670
        echo "If you really need to build the RPM as root, use"
47f670
        echo "--nocheck to skip the regression tests."
47f670
        exit 1
47f670
    fi
47f670
%endif
47f670
47f670
%{?scl:scl enable %{scl} %{?dts} - << \EOF}
47f670
set -ex
47f670
47f670
# build out of source
47f670
mkdir -p build && pushd build
47f670
47f670
# The INSTALL_xxx macros have to be specified relative to CMAKE_INSTALL_PREFIX
47f670
# so we can't use %%{_datadir} and so forth here.
47f670
cmake .. \
47f670
         -DBUILD_CONFIG=mysql_release \
47f670
         -DFEATURE_SET="community" \
47f670
         -DINSTALL_LAYOUT=RPM \
47f670
         -DDAEMON_NAME="%{daemon_name}" \
47f670
         -DDAEMON_NO_PREFIX="%{daemon_no_prefix}" \
47f670
%if 0%{?scl:1}
47f670
         -DSCL_NAME="%{?scl}" \
47f670
         -DSCL_NAME_UPPER="%{?scl_upper}" \
47f670
         -DSCL_SCRIPTS="%{?_scl_scripts}" \
47f670
%endif
47f670
         -DLOG_LOCATION="%{logfile}" \
47f670
         -DPID_FILE_DIR="%{pidfiledir}" \
47f670
         -DNICE_PROJECT_NAME="MySQL" \
47f670
         -DCMAKE_INSTALL_PREFIX="%{_prefix}" \
47f670
         -DSYSCONFDIR="%{_sysconfdir}" \
47f670
         -DSYSCONF2DIR="%{_sysconfdir}/my.cnf.d" \
47f670
         -DINSTALL_DOCDIR="share/doc/%{_pkgdocdirname}" \
47f670
         -DINSTALL_DOCREADMEDIR="share/doc/%{_pkgdocdirname}" \
47f670
         -DINSTALL_INCLUDEDIR=include/mysql \
47f670
         -DINSTALL_INFODIR=share/info \
47f670
         -DINSTALL_LIBEXECDIR=libexec \
47f670
         -DINSTALL_LIBDIR="%{_lib}/mysql" \
47f670
         -DRPATH_LIBDIR="%{_libdir}" \
47f670
         -DINSTALL_MANDIR=share/man \
47f670
         -DINSTALL_MYSQLSHAREDIR=share/%{pkg_name} \
47f670
         -DINSTALL_MYSQLTESTDIR=share/mysql-test \
47f670
         -DINSTALL_PLUGINDIR="%{_lib}/mysql/plugin" \
47f670
         -DINSTALL_SBINDIR=bin \
47f670
         -DINSTALL_SECURE_FILE_PRIVDIR="%{_localstatedir}/lib/mysql-files" \
47f670
         -DINSTALL_SUPPORTFILESDIR=share/%{pkg_name} \
47f670
         -DMYSQL_DATADIR="%{dbdatadir}" \
47f670
         -DMYSQL_KEYRINGDIR="%{_localstatedir}/lib/mysql-keyring" \
47f670
         -DMYSQL_UNIX_ADDR="/var/lib/mysql/mysql.sock" \
47f670
         -DENABLED_LOCAL_INFILE=ON \
47f670
%if %{with init_systemd}
47f670
         -DWITH_SYSTEMD=1 \
47f670
         -DSYSTEMD_SERVICE_NAME="%{daemon_name}" \
47f670
         -DSYSTEMD_PID_DIR="%{pidfiledir}" \
47f670
%endif
47f670
         -DWITH_INNODB_MEMCACHED=ON \
47f670
%ifnarch aarch64 %{arm} s390 s390x
47f670
         -DWITH_NUMA=ON \
47f670
%endif
47f670
%ifarch s390 s390x
47f670
         -DUSE_LD_GOLD=OFF \
47f670
%endif
48a980
         -DWITH_ROUTER=OFF \
47f670
         -DWITH_SYSTEM_LIBS=ON \
47f670
%if %{with bundled_re2}
47f670
         -DWITH_RE2=bundled \
47f670
%endif
47f670
%if %{with bundled_icu}
47f670
         -DWITH_ICU=bundled \
47f670
%endif
47f670
%if %{with bundled_protobuf}
47f670
         -DWITH_PROTOBUF=bundled \
47f670
%endif
47f670
         -DWITH_MECAB=system \
47f670
         -DWITH_BOOST=../boost \
47f670
         -DREPRODUCIBLE_BUILD=OFF \
47f670
         -DCMAKE_C_FLAGS="%{optflags} -pie %{?with_debug: -fno-strict-overflow -Wno-unused-result -Wno-unused-function -Wno-unused-but-set-variable}" \
47f670
         -DCMAKE_CXX_FLAGS="%{optflags} -pie %{?with_debug: -fno-strict-overflow -Wno-unused-result -Wno-unused-function -Wno-unused-but-set-variable}" \
48a980
         -DCMAKE_EXE_LINKER_FLAGS="-pie %{build_ldflags}" \
47f670
%{?with_debug: -DWITH_DEBUG=1}\
47f670
%{?with_debug: -DMYSQL_MAINTAINER_MODE=0}\
47f670
         -DTMPDIR=/var/tmp \
48a980
         -DWITH_MYSQLD_LDFLAGS="%{build_ldflags}" \
48a980
         -DCMAKE_C_LINK_FLAGS="%{build_ldflags}" \
48a980
         -DCMAKE_CXX_LINK_FLAGS"%{build_ldflags}"
47f670
47f670
cmake .. -LAH
47f670
47f670
make %{?_smp_mflags} VERBOSE=1
47f670
47f670
popd
47f670
47f670
%{?scl:EOF}
47f670
47f670
%install
47f670
install -p -m 644 -D mysql-sysnice.pp %{buildroot}%{selinux_packages_dir}/%{name}/%{pkg_name}-sysnice.pp
47f670
%{?scl:scl enable %{scl} %{?dts} - << \EOF}
47f670
set -ex
47f670
47f670
pushd build
47f670
make DESTDIR=%{buildroot} install
47f670
47f670
# multilib support for shell scripts
47f670
# we only apply this to known Red Hat multilib arches, per bug #181335
47f670
if %multilib_capable; then
47f670
mv %{buildroot}%{_bindir}/mysql_config %{buildroot}%{_bindir}/mysql_config-%{__isa_bits}
47f670
install -p -m 0755 scripts/mysql_config_multilib %{buildroot}%{_bindir}/mysql_config
47f670
fi
47f670
47f670
# install INFO_SRC, INFO_BIN into libdir (upstream thinks these are doc files,
47f670
# but that's pretty wacko --- see also %%{name}-file-contents.patch)
47f670
install -p -m 0644 Docs/INFO_SRC %{buildroot}%{_libdir}/mysql/
47f670
install -p -m 0644 Docs/INFO_BIN %{buildroot}%{_libdir}/mysql/
47f670
47f670
mkdir -p %{buildroot}%{logfiledir}
47f670
mkdir -p %{buildroot}%{_libexecdir}
47f670
47f670
mkdir -p %{buildroot}%{pidfiledir}
47f670
install -p -m 0755 -d %{buildroot}%{dbdatadir}
47f670
install -p -m 0750 -d %{buildroot}%{_localstatedir}/lib/mysql-files
47f670
install -p -m 0700 -d %{buildroot}%{_localstatedir}/lib/mysql-keyring
47f670
47f670
# create directory for socket
47f670
%{?scl:install -p -m 0755 -d %{buildroot}/var/lib/mysql}
47f670
47f670
%if %{with config}
47f670
install -D -p -m 0644 scripts/my.cnf %{buildroot}%{_sysconfdir}/my.cnf
47f670
%endif
47f670
47f670
# daemon helper for fixing SELinux in systemd
47f670
%if %{with init_systemd} && 0%{?scl:1}
47f670
install -p -m 755 %{SOURCE40} %{buildroot}%{_libexecdir}/mysqld-scl-helper
47f670
%endif
47f670
47f670
# install systemd unit files and scripts for handling server startup
47f670
%if %{with init_systemd}
47f670
install -D -p -m 644 scripts/mysql.service %{buildroot}%{_unitdir}/%{daemon_name}.service
47f670
install -D -p -m 644 scripts/mysql@.service %{buildroot}%{_unitdir}/%{daemon_name}@.service
47f670
install -D -p -m 0644 scripts/mysql.tmpfiles.d %{buildroot}%{_tmpfilesdir}/%{daemon_name}.conf
47f670
rm -r %{buildroot}%{_tmpfilesdir}/mysql.conf
47f670
%endif
47f670
47f670
# install SysV init script
47f670
%if %{with init_sysv}
47f670
install -D -p -m 755 scripts/mysql.init %{buildroot}%{daemondir}/%{daemon_name}
47f670
install -p -m 755 scripts/mysql-wait-ready %{buildroot}%{_libexecdir}/mysql-wait-ready
47f670
%endif
47f670
47f670
# helper scripts for service starting
47f670
install -D -p -m 755  scripts/mysql-prepare-db-dir %{buildroot}%{_libexecdir}/mysql-prepare-db-dir
47f670
install -p -m 755 scripts/mysql-wait-stop %{buildroot}%{_libexecdir}/mysql-wait-stop
47f670
install -p -m 755 scripts/mysql-check-socket %{buildroot}%{_libexecdir}/mysql-check-socket
47f670
install -p -m 755 scripts/mysql-check-upgrade %{buildroot}%{_libexecdir}/mysql-check-upgrade
47f670
install -p -m 644 scripts/mysql-scripts-common %{buildroot}%{_libexecdir}/mysql-scripts-common
47f670
install -D -p -m 0644 scripts/server.cnf %{buildroot}%{_sysconfdir}/my.cnf.d/%{pkg_name}-server.cnf
47f670
install -D -p -m 0644 %{SOURCE32} %{buildroot}%{_sysconfdir}/my.cnf.d/%{pkg_name}-default-authentication-plugin.cnf
47f670
47f670
rm %{buildroot}%{_libdir}/mysql/*.a
47f670
rm %{buildroot}%{_datadir}/%{pkg_name}/mysql.server
47f670
rm %{buildroot}%{_datadir}/%{pkg_name}/mysqld_multi.server
47f670
rm %{buildroot}%{_mandir}/man1/comp_err.1*
47f670
47f670
# put logrotate script where it needs to be
47f670
mkdir -p %{buildroot}%{logrotateddir}
47f670
mv %{buildroot}%{_datadir}/%{pkg_name}/mysql-log-rotate %{buildroot}%{logrotateddir}/%{daemon_name}
47f670
chmod 644 %{buildroot}%{logrotateddir}/%{daemon_name}
47f670
47f670
# Add collection prefix to the packageconfig provides
47f670
%if 0%{?scl:1}
47f670
mv %{buildroot}%{_libdir}/pkgconfig/mysqlclient.pc %{buildroot}%{_libdir}/pkgconfig/%{?scl_prefix}mysqlclient.pc
47f670
%endif
47f670
47f670
%if %{with clibrary} && 0%{!?scl:1}
47f670
mkdir -p %{buildroot}%{_sysconfdir}/ld.so.conf.d
47f670
echo "%{_libdir}/mysql" > %{buildroot}%{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf
47f670
%endif
47f670
47f670
# for back-ward compatibility and SELinux, let's keep the mysqld in libexec
47f670
# and just create a symlink in /usr/sbin
47f670
mv %{buildroot}%{_bindir}/mysqld %{buildroot}%{_libexecdir}/mysqld
47f670
mkdir -p %{buildroot}%{_sbindir}
47f670
ln -s %{_libexecdir}/mysqld %{buildroot}%{_sbindir}/mysqld
47f670
47f670
%if %{with debug}
47f670
mv %{buildroot}%{_bindir}/mysqld-debug %{buildroot}%{_libexecdir}/mysqld
47f670
%endif
47f670
47f670
# Back to src dir
47f670
popd
47f670
47f670
# copy additional docs into build tree so %%doc will find them
47f670
install -p -m 0644 %{SOURCE6} %{basename:%{SOURCE6}}
47f670
install -p -m 0644 %{SOURCE7} %{basename:%{SOURCE7}}
47f670
47f670
# Install the list of skipped tests to be available for user runs
47f670
install -p -m 0644 mysql-test/%{skiplist} %{buildroot}%{_datadir}/mysql-test
47f670
47f670
%if %{without clibrary}
47f670
unlink %{buildroot}%{_libdir}/mysql/libmysqlclient.so
47f670
rm -r %{buildroot}%{_libdir}/mysql/libmysqlclient*.so.*
47f670
%if 0%{!?scl:1}
47f670
rm -r %{buildroot}%{_sysconfdir}/ld.so.conf.d
47f670
%endif
47f670
%endif
47f670
47f670
%if %{without devel}
47f670
rm %{buildroot}%{_bindir}/mysql_config*
47f670
rm -r %{buildroot}%{_includedir}/mysql
47f670
rm %{buildroot}%{_datadir}/aclocal/mysql.m4
47f670
rm %{buildroot}%{_libdir}/pkgconfig/%{?scl_prefix}mysqlclient.pc
47f670
rm %{buildroot}%{_libdir}/mysql/libmysqlclient*.so
47f670
rm %{buildroot}%{_mandir}/man1/mysql_config.1*
47f670
%endif
47f670
47f670
%if %{without client}
47f670
rm %{buildroot}%{_bindir}/{mysql,mysql_config_editor,\
47f670
mysql_plugin,mysqladmin,mysqlbinlog,\
47f670
mysqlcheck,mysqldump,mysqlpump,mysqlimport,mysqlshow,mysqlslap,my_print_defaults}
47f670
rm %{buildroot}%{_mandir}/man1/{mysql,mysql_config_editor,\
47f670
mysql_plugin,mysqladmin,mysqlbinlog,\
47f670
mysqlcheck,mysqldump,mysqlpump,mysqlimport,mysqlshow,mysqlslap,my_print_defaults}.1*
47f670
%endif
47f670
47f670
%if %{with config}
47f670
mkdir -p %{buildroot}%{_sysconfdir}/my.cnf.d
47f670
%else
47f670
#rm %{buildroot}%{_sysconfdir}/my.cnf
47f670
%endif
47f670
47f670
%if %{without common}
47f670
rm -r %{buildroot}%{_datadir}/%{pkg_name}/charsets
47f670
%endif
47f670
47f670
%if %{without errmsg}
47f670
rm %{buildroot}%{_datadir}/%{pkg_name}/errmsg-utf8.txt
47f670
rm -r %{buildroot}%{_datadir}/%{pkg_name}/{english,bulgarian,czech,danish,dutch,estonian,\
47f670
french,german,greek,hungarian,italian,japanese,korean,norwegian,norwegian-ny,\
47f670
polish,portuguese,romanian,russian,serbian,slovak,spanish,swedish,ukrainian}
47f670
%endif
47f670
47f670
%if %{without test}
48a980
rm %{buildroot}%{_bindir}/{mysql_client_test,mysqlxtest,mysqltest_safe_process}
47f670
rm -r %{buildroot}%{_datadir}/mysql-test
47f670
rm %{buildroot}%{_mandir}/man1/mysql_client_test.1*
47f670
%endif
47f670
47f670
%{?scl:EOF}
47f670
47f670
%if 0%{?scl:1}
47f670
# generate a configuration file for daemon
47f670
cat << EOF | tee -a %{buildroot}%{?_scl_scripts}/service-environment
47f670
# Services are started in a fresh environment without any influence of user's
47f670
# environment (like environment variable values). As a consequence,
47f670
# information of all enabled collections will be lost during service start up.
47f670
# If user needs to run a service under any software collection enabled, this
47f670
# collection has to be written into %{scl_upper}_SCLS_ENABLED variable
47f670
# in %{?_scl_scripts}/service-environment.
47f670
%{scl_upper}_SCLS_ENABLED="%{scl}"
47f670
EOF
47f670
47f670
# Creating syspath without prefix for mysql-config package
47f670
%scl_syspaths_install_wrapper -n mysql-config -m link %{_sysconfdir}/my.cnf %{_root_sysconfdir}/%{scl_prefix}my.cnf
47f670
%scl_syspaths_install_wrapper -n mysql-config -m link %{_sysconfdir}/my.cnf.d %{_root_sysconfdir}/%{scl_prefix}my.cnf.d
47f670
47f670
# Creating syspath without prefix for mysql package
47f670
mysql_binaries='mysql mysql_config_editor mysqladmin mysqlbinlog mysqlcheck mysqldump
47f670
mysqlimport mysqlpump mysqlshow mysqlslap'
47f670
47f670
%scl_syspaths_install_wrappers -n mysql -m script -p bin $mysql_binaries
47f670
47f670
mans= ; for bin in $mysql_binaries; do mans+=" man1/$bin.1.gz" ; done
47f670
%scl_syspaths_install_wrappers -n mysql -m link -p man $mans
47f670
47f670
# Creating syspath without prefix for mysql-server package
47f670
mysql_server_binaries='ibd2sdi innochecksum my_print_defaults myisam_ftdump
47f670
myisamchk myisamlog myisampack mysql_secure_installation mysql_ssl_rsa_setup
48a980
mysql_tzinfo_to_sql mysql_upgrade mysqldumpslow perror'
47f670
47f670
%scl_syspaths_install_wrappers -n mysql-server -m script -p bin $mysql_server_binaries
47f670
47f670
mans= ; for bin in $mysql_server_binaries; do mans+=" man1/$bin.1.gz" ; done
47f670
%scl_syspaths_install_wrappers -n mysql-server -m link -p man $mans
47f670
47f670
%scl_syspaths_install_wrapper -n mysql-server -m link %{logfiledir} %{_root_localstatedir}/log/%{scl_prefix}mysql
47f670
%scl_syspaths_install_wrapper -n mysql-server -m link %{dbdatadir} %{_root_localstatedir}/lib/%{scl_prefix}mysql
47f670
47f670
%if %{with init_systemd}
47f670
%scl_syspaths_install_wrapper -n mysql-server -m link %{_unitdir}/%{daemon_name}.service %{_unitdir}/%{daemon_no_prefix}.service
47f670
%scl_syspaths_install_wrapper -n mysql-server -m link %{_unitdir}/%{daemon_name}@.service %{_unitdir}/%{daemon_no_prefix}@.service
47f670
%endif
47f670
47f670
%if %{with init_sysv}
47f670
%scl_syspaths_install_wrapper -n mysql-server -m link %{daemondir}/%{daemon_name} %{daemondir}/%{daemon_no_prefix}
47f670
%endif
47f670
%endif #scl
47f670
47f670
%check
47f670
%{?scl:scl enable %{scl} %{?dts} - << \EOF}
47f670
set -ex
47f670
47f670
%if %{with test}
47f670
%if %runselftest
47f670
pushd build
47f670
make test VERBOSE=1
47f670
pushd mysql-test
47f670
cp ../../mysql-test/%{skiplist} .
47f670
# builds might happen at the same host, avoid collision
47f670
export MTR_BUILD_THREAD=%{__isa_bits}
47f670
./mtr %{?with_debug:--debug-server} \
47f670
  --mem --parallel=auto --force --retry=2 \
47f670
  --mysqld=--binlog-format=mixed \
47f670
  --suite-timeout=720 --testcase-timeout=30 \
47f670
  --report-unstable-tests --clean-vardir \
47f670
%if %{check_testsuite}
47f670
  --max-test-fail=100 || :
47f670
%else
47f670
  --skip-test-list=%{skiplist}
47f670
%endif
47f670
  rm -r var $(readlink var)
47f670
popd
47f670
popd
47f670
%endif
47f670
%endif
47f670
47f670
%{?scl:EOF}
47f670
47f670
%pre server
47f670
/usr/sbin/groupadd -g 27 -o -r mysql >/dev/null 2>&1 || :
47f670
/usr/sbin/useradd -M -N -g mysql -o -r -d %{mysqluserhome} -s /sbin/nologin \
47f670
  -c "MySQL Server" -u 27 mysql >/dev/null 2>&1 || :
47f670
47f670
%if %{with clibrary}
47f670
# Can be dropped on F27 EOL
47f670
%ldconfig_post libs
47f670
%endif
47f670
47f670
%post server
47f670
semodule -i %{selinux_packages_dir}/%{name}/%{pkg_name}-sysnice.pp >/dev/null 2>&1 || :
47f670
%if 0%{?scl:1}
47f670
# since there was a typo before (bz#1452707), we need to clean previously
47f670
# set rule, otherwise semange will not work
47f670
semanage fcontext -d "%{daemondir}/%{daemon_name}%{?with_init_systemd:.service}" >/dev/null 2>&1 || :
47f670
semanage fcontext -a -e "%{se_daemon_source}" "%{daemondir}/%{daemon_name}%{?with_init_systemd:.service}" >/dev/null 2>&1 || :
47f670
semanage fcontext -a -t mysqld_var_run_t "%{pidfiledir}" >/dev/null 2>&1 || :
47f670
# work-around for rhbz#1203991
47f670
semanage fcontext -a -t mysqld_etc_t '/etc/my\.cnf\.d/.*' >/dev/null 2>&1 || :
47f670
%if %{with init_systemd}
47f670
# work-around for rhbz#1172683, but intentionally using mysqld_exec_t context
47f670
# and mysqld-scl-helper file, otherwise we hit bz#1464145 on RHEL-7
47f670
semanage fcontext -a -t mysqld_exec_t %{_root_libexecdir}/mysqld-scl-helper >/dev/null 2>&1 || :
47f670
%endif
47f670
selinuxenabled && load_policy || :
47f670
restorecon -R "%{?_scl_root}/" >/dev/null 2>&1 || :
47f670
restorecon -R "%{_sysconfdir}" >/dev/null 2>&1 || :
47f670
restorecon -R "%{_localstatedir}" >/dev/null 2>&1 || :
47f670
restorecon -R "%{daemondir}/%{daemon_name}%{?with_init_systemd:.service}" >/dev/null 2>&1 || :
47f670
restorecon -R "%{pidfiledir}" >/dev/null 2>&1 || :
47f670
%endif
47f670
%if %{with init_systemd}
47f670
%systemd_post %{daemon_name}.service
47f670
%endif
47f670
%if %{with init_sysv}
47f670
if [ $1 = 1 ]; then
47f670
    /sbin/chkconfig --add %{daemon_name}
47f670
fi
47f670
%endif
47f670
if [ ! -e "%{logfile}" -a ! -h "%{logfile}" ] ; then
47f670
    install /dev/null -m0640 -omysql -gmysql "%{logfile}"
47f670
fi
47f670
# TODO: remove after selinux-policy is fixed (BZ#1602153)
47f670
semanage fcontext -a -t mysqld_log_t '/var/log/mysql(/.*)?'
47f670
restorecon -r %{logfiledir}
47f670
47f670
47f670
%preun server
47f670
%if %{with init_systemd}
47f670
%systemd_preun %{daemon_name}.service
47f670
%endif
47f670
%if %{with init_sysv}
47f670
if [ $1 = 0 ]; then
47f670
    /sbin/service %{daemon_name} stop >/dev/null 2>&1
47f670
    /sbin/chkconfig --del %{daemon_name}
47f670
fi
47f670
%endif
47f670
47f670
%if %{with clibrary}
47f670
# Can be dropped on F27 EOL
47f670
%ldconfig_postun libs
47f670
%endif
47f670
47f670
%postun server
47f670
%if %{with init_systemd}
47f670
%systemd_postun_with_restart %{daemon_name}.service
47f670
%endif
47f670
%if %{with init_sysv}
47f670
if [ $1 -ge 1 ]; then
47f670
    /sbin/service %{daemon_name} condrestart >/dev/null 2>&1 || :
47f670
fi
47f670
%endif
47f670
if [ $1 -eq 0 ]; then
47f670
    semodule -r %{pkg_name}-sysnice.pp >/dev/null 2>&1 || :
47f670
fi
47f670
47f670
%if %{with client}
47f670
%files
47f670
%{_bindir}/mysql
47f670
%{_bindir}/mysql_config_editor
47f670
%{_bindir}/mysqladmin
47f670
%{_bindir}/mysqlbinlog
47f670
%{_bindir}/mysqlcheck
47f670
%{_bindir}/mysqldump
47f670
%{_bindir}/mysqlimport
47f670
%{_bindir}/mysqlpump
47f670
%{_bindir}/mysqlshow
47f670
%{_bindir}/mysqlslap
47f670
47f670
%{_mandir}/man1/mysql.1*
47f670
%{_mandir}/man1/mysql_config_editor.1*
47f670
%{_mandir}/man1/mysqladmin.1*
47f670
%{_mandir}/man1/mysqlbinlog.1*
47f670
%{_mandir}/man1/mysqlcheck.1*
47f670
%{_mandir}/man1/mysqldump.1*
47f670
%{_mandir}/man1/mysqlimport.1*
47f670
%{_mandir}/man1/mysqlpump.1*
47f670
%{_mandir}/man1/mysqlshow.1*
47f670
%{_mandir}/man1/mysqlslap.1*
47f670
%endif
47f670
47f670
%if %{with clibrary}
47f670
%files libs
47f670
%{_libdir}/mysql/libmysqlclient*.so.*
47f670
%{!?scl:%config(noreplace) %{_sysconfdir}/ld.so.conf.d/*}
47f670
%endif
47f670
47f670
%if %{with config}
47f670
%files config
47f670
# although the default my.cnf contains only server settings, we put it in the
47f670
# common package because it can be used for client settings too.
47f670
%dir %{_sysconfdir}/my.cnf.d
47f670
%config(noreplace) %{_sysconfdir}/my.cnf
47f670
%endif
47f670
47f670
%if %{with common}
47f670
%files common
47f670
%license LICENSE
47f670
%doc README README.mysql-license README.mysql-docs
47f670
%doc storage/innobase/COPYING.Percona storage/innobase/COPYING.Google
47f670
%dir %{_libdir}/mysql
47f670
%dir %{_datadir}/%{pkg_name}
47f670
%{_datadir}/%{pkg_name}/charsets
47f670
%endif
47f670
47f670
%if %{with errmsg}
47f670
%files errmsg
47f670
%{_datadir}/%{pkg_name}/errmsg-utf8.txt
47f670
%{_datadir}/%{pkg_name}/english
47f670
%lang(bg) %{_datadir}/%{pkg_name}/bulgarian
47f670
%lang(cs) %{_datadir}/%{pkg_name}/czech
47f670
%lang(da) %{_datadir}/%{pkg_name}/danish
47f670
%lang(nl) %{_datadir}/%{pkg_name}/dutch
47f670
%lang(et) %{_datadir}/%{pkg_name}/estonian
47f670
%lang(fr) %{_datadir}/%{pkg_name}/french
47f670
%lang(de) %{_datadir}/%{pkg_name}/german
47f670
%lang(el) %{_datadir}/%{pkg_name}/greek
47f670
%lang(hu) %{_datadir}/%{pkg_name}/hungarian
47f670
%lang(it) %{_datadir}/%{pkg_name}/italian
47f670
%lang(ja) %{_datadir}/%{pkg_name}/japanese
47f670
%lang(ko) %{_datadir}/%{pkg_name}/korean
47f670
%lang(no) %{_datadir}/%{pkg_name}/norwegian
47f670
%lang(no) %{_datadir}/%{pkg_name}/norwegian-ny
47f670
%lang(pl) %{_datadir}/%{pkg_name}/polish
47f670
%lang(pt) %{_datadir}/%{pkg_name}/portuguese
47f670
%lang(ro) %{_datadir}/%{pkg_name}/romanian
47f670
%lang(ru) %{_datadir}/%{pkg_name}/russian
47f670
%lang(sr) %{_datadir}/%{pkg_name}/serbian
47f670
%lang(sk) %{_datadir}/%{pkg_name}/slovak
47f670
%lang(es) %{_datadir}/%{pkg_name}/spanish
47f670
%lang(sv) %{_datadir}/%{pkg_name}/swedish
47f670
%lang(uk) %{_datadir}/%{pkg_name}/ukrainian
47f670
%endif
47f670
47f670
%files server
47f670
%{_bindir}/ibd2sdi
47f670
%{_bindir}/myisamchk
47f670
%{_bindir}/myisam_ftdump
47f670
%{_bindir}/myisamlog
47f670
%{_bindir}/myisampack
47f670
%{_bindir}/my_print_defaults
47f670
%{_bindir}/mysql_secure_installation
47f670
%{_bindir}/mysql_ssl_rsa_setup
47f670
%{_bindir}/mysql_tzinfo_to_sql
47f670
%{_bindir}/mysql_upgrade
47f670
%{_sbindir}/mysqld
47f670
# sys_nice capability required for rhbz#1628814
47f670
%caps(cap_sys_nice=ep) %{_libexecdir}/mysqld
47f670
%if %{with init_systemd}
47f670
%{_bindir}/mysqld_pre_systemd
47f670
%else
47f670
%{_bindir}/mysqld_multi
47f670
%{_bindir}/mysqld_safe
47f670
%endif
47f670
%{_bindir}/mysqldumpslow
47f670
%{_bindir}/innochecksum
47f670
%{_bindir}/perror
47f670
47f670
%config(noreplace) %{_sysconfdir}/my.cnf.d/%{pkg_name}-server.cnf
47f670
%config(noreplace) %{_sysconfdir}/my.cnf.d/%{pkg_name}-default-authentication-plugin.cnf
47f670
47f670
%if %{with init_systemd} && 0%{?scl:1}
47f670
%{_libexecdir}/mysqld-scl-helper
47f670
%endif
47f670
47f670
%{_libdir}/mysql/INFO_SRC
47f670
%{_libdir}/mysql/INFO_BIN
47f670
%if %{without common}
47f670
%dir %{_datadir}/%{pkg_name}
47f670
%endif
47f670
47f670
%{_libdir}/mysql/plugin
47f670
47f670
%{_mandir}/man1/ibd2sdi.1*
47f670
%{_mandir}/man1/myisamchk.1*
47f670
%{_mandir}/man1/myisamlog.1*
47f670
%{_mandir}/man1/myisampack.1*
47f670
%{_mandir}/man1/myisam_ftdump.1*
47f670
%{_mandir}/man1/mysql.server.1*
47f670
%{_mandir}/man1/my_print_defaults.1*
47f670
%{_mandir}/man1/mysql_secure_installation.1*
47f670
%{_mandir}/man1/mysql_ssl_rsa_setup.1*
47f670
%{_mandir}/man1/mysql_tzinfo_to_sql.1*
47f670
%{_mandir}/man1/mysql_upgrade.1*
47f670
%{_mandir}/man1/mysqldumpslow.1*
47f670
%if %{with init_systemd}
47f670
%exclude %{_mandir}/man1/mysqld_multi.1*
47f670
%exclude %{_mandir}/man1/mysqld_safe.1*
47f670
%else
47f670
%{_mandir}/man1/mysqld_multi.1*
47f670
%{_mandir}/man1/mysqld_safe.1*
47f670
%endif
47f670
%{_mandir}/man1/mysqlman.1*
47f670
%{_mandir}/man1/innochecksum.1*
47f670
%{_mandir}/man1/perror.1*
47f670
%{_mandir}/man1/lz4_decompress.1*
47f670
%{_mandir}/man1/zlib_decompress.1*
47f670
%{_mandir}/man8/mysqld.8*
47f670
47f670
%{_datadir}/%{pkg_name}/dictionary.txt
47f670
%{_datadir}/%{pkg_name}/*.sql
47f670
47f670
%{daemondir}/%{daemon_name}*
47f670
%{_libexecdir}/mysql-prepare-db-dir
47f670
%if %{with init_sysv}
47f670
%{_libexecdir}/mysql-wait-ready
47f670
%endif
47f670
%{_libexecdir}/mysql-wait-stop
47f670
%{_libexecdir}/mysql-check-socket
47f670
%{_libexecdir}/mysql-check-upgrade
47f670
%{_libexecdir}/mysql-scripts-common
47f670
47f670
%{?with_init_systemd:%{_tmpfilesdir}/%{daemon_name}.conf}
47f670
%attr(0755,mysql,mysql) %dir %{dbdatadir}
47f670
%{?scl:%attr(0755,mysql,mysql) %dir /var/lib/mysql}
47f670
%attr(0750,mysql,mysql) %dir %{_localstatedir}/lib/mysql-files
47f670
%attr(0700,mysql,mysql) %dir %{_localstatedir}/lib/mysql-keyring
47f670
%attr(0755,mysql,mysql) %dir %{pidfiledir}
47f670
%attr(0750,mysql,mysql) %dir %{logfiledir}
47f670
%attr(0640,mysql,mysql) %config %ghost %verify(not md5 size mtime) %{logfile}
47f670
%config(noreplace) %{logrotateddir}/%{daemon_name}
47f670
47f670
%{?scl:%config(noreplace) %{?_scl_scripts}/service-environment}
47f670
47f670
%{selinux_packages_dir}/%{name}/%{pkg_name}-sysnice.pp
47f670
47f670
%if %{with devel}
47f670
%files devel
47f670
%{_bindir}/mysql_config*
47f670
%exclude %{_bindir}/mysql_config_editor
47f670
%{_includedir}/mysql
47f670
%{_datadir}/aclocal/mysql.m4
47f670
%if %{with clibrary}
47f670
%{_libdir}/mysql/libmysqlclient.so
47f670
%endif
47f670
%{_libdir}/pkgconfig/%{?scl_prefix}mysqlclient.pc
47f670
%{_mandir}/man1/mysql_config.1*
47f670
%endif
47f670
47f670
%if %{with test}
47f670
%files test
47f670
%{_bindir}/mysql_client_test
47f670
%{_bindir}/mysqltest
47f670
%{_bindir}/mysqlxtest
48a980
%{_bindir}/mysqltest_safe_process
47f670
%attr(-,mysql,mysql) %{_datadir}/mysql-test
47f670
%endif
47f670
47f670
%if 0%{?scl:1}
47f670
%scl_syspaths_files -n mysql
47f670
%scl_syspaths_files -n mysql-config
47f670
%scl_syspaths_files -n mysql-server
47f670
%endif
47f670
47f670
%changelog
48a980
* Fri Aug 02 2019 Matej Mužila <mmuzila@redhat.com> - 8.0.17-3
48a980
- Use RELRO hardening on all binaries
48a980
- Resolves: #1734420
48a980
48a980
* Tue Jul 30 2019 Matej Mužila <mmuzila@redhat.com> - 8.0.17-2
48a980
- Use RELRO hardening on all binaries
48a980
- Resolves: #1734420
48a980
48a980
* Thu Jul 25 2019 Matej Mužila <mmuzila@redhat.com> - 8.0.17-1
48a980
- Rebase to 8.0.17
48a980
- Resolves: #1732042
48a980
- CVEs fixed:
48a980
  CVE-2019-2737 CVE-2019-2738 CVE-2019-2739 CVE-2019-2740 CVE-2019-2741
48a980
  CVE-2019-2743 CVE-2019-2746 CVE-2019-2747 CVE-2019-2752 CVE-2019-2755
48a980
  CVE-2019-2757 CVE-2019-2758 CVE-2019-2774 CVE-2019-2778 CVE-2019-2780
48a980
  CVE-2019-2784 CVE-2019-2785 CVE-2019-2789 CVE-2019-2791 CVE-2019-2795
48a980
  CVE-2019-2796 CVE-2019-2797 CVE-2019-2798 CVE-2019-2800 CVE-2019-2801
48a980
  CVE-2019-2802 CVE-2019-2803 CVE-2019-2805 CVE-2019-2808 CVE-2019-2810
48a980
  CVE-2019-2811 CVE-2019-2812 CVE-2019-2814 CVE-2019-2815 CVE-2019-2819
48a980
  CVE-2019-2822 CVE-2019-2826 CVE-2019-2830 CVE-2019-2834 CVE-2019-2879
48a980
47f670
* Wed Dec 12 2018 Michal Schorm <mschorm@redhat.com> - 8.0.13-1
47f670
- Rebase to 8.0.13
47f670
- ICU patch removed; upstreamed
47f670
- Patch for MySQL Router introduced. Do not build it.
47f670
- Fixes for annocheck hardening
47f670
  Resolves: #1624148
47f670
- CVEs fixed:
47f670
  CVE-2018-3276 CVE-2018-3200 CVE-2018-3137 CVE-2018-3284 CVE-2018-3195
47f670
  CVE-2018-3173 CVE-2018-3212 CVE-2018-3279 CVE-2018-3162 CVE-2018-3247
47f670
  CVE-2018-3156 CVE-2018-3161 CVE-2018-3278 CVE-2018-3174 CVE-2018-3282
47f670
  CVE-2018-3285 CVE-2018-3187 CVE-2018-3277 CVE-2018-3144 CVE-2018-3145
47f670
  CVE-2018-3170 CVE-2018-3186 CVE-2018-3182 CVE-2018-3133 CVE-2018-3143
47f670
  CVE-2018-3283 CVE-2018-3171 CVE-2018-3251 CVE-2018-3286 CVE-2018-3185
47f670
  CVE-2018-3280 CVE-2018-3203 CVE-2018-3155
47f670
47f670
47f670
* Wed Sep 26 2018 Michal Schorm <mschorm@redhat.com> - 8.0.12-6
47f670
- Fix the default configuration of the server, so it uses same authentication
47f670
  method as MySQL 5.7
47f670
  Resolves: #1631400
47f670
47f670
* Fri Sep 14 2018 Honza Horak <hhorak@redhat.com> - 8.0.12-5
47f670
- Remove module on uninstall of the server and enable capability setting
47f670
47f670
* Fri Sep 14 2018 Jakub Janco <jjanco@redhat.com> - 8.0.12-4
47f670
- Allow sys_nice in selinux
47f670
47f670
* Fri Sep 14 2018 Michal Schorm <mschorm@redhat.com> - 8.0.12-3
47f670
- Add bundled ICU version
47f670
- Add a patch for the 'mysql_com.h' header file
47f670
- Use system mecab tool
47f670
- Use RPATH for mysqld, so we can later set capabilities
47f670
47f670
* Thu Sep 13 2018 Honza Horak <hhorak@redhat.com> - 8.0.12-2
47f670
- Disable capabilities for mysqld because of SELinux issues
47f670
47f670
* Thu Sep 13 2018 Michal Schorm <mschorm@redhat.com> - 8.0.12-1
47f670
- Rebase to MySQL 8.0.12
47f670
- Fix the SYS_NICE capabilities
47f670
- Add requires for the semanage binary
47f670
- CVEs fixed: CVE-2018-3054 CVE-2018-3056 CVE-2018-3060 CVE-2018-3062
47f670
  CVE-2018-3064 CVE-2018-3065 CVE-2018-3077 CVE-2018-3081 CVE-2018-3067
47f670
  CVE-2018-3073 CVE-2018-3074 CVE-2018-3075 CVE-2018-3078 CVE-2018-3079
47f670
  CVE-2018-3080 CVE-2018-3082 CVE-2018-3084
47f670
47f670
* Thu Sep 13 2018 Jakub Janco <jjanco@redhat.com> - 8.0.11-9
47f670
- Use same logfile path in logrotate and mysql configs
47f670
47f670
* Thu Sep 13 2018 Jakub Janco <jjanco@redhat.com> - 8.0.11-8
47f670
- Prefix logrotate configuration in SCL
47f670
47f670
* Wed Sep 12 2018 Honza Horak <hhorak@redhat.com> - 8.0.11-7
47f670
- Add syspath subpackages
47f670
47f670
* Wed Jul 18 2018 Honza Horak <hhorak@redhat.com> - 8.0.11-6
47f670
- Use prefixes for dependencies
47f670
47f670
* Tue Jul 17 2018 Honza Horak <hhorak@redhat.com> - 8.0.11-5
47f670
- Move log file to a directory owned by mysql user
47f670
  Resolves: #1590369
47f670
- Use explicitly openssl-devel as dependency for -devel sub-package
47f670
47f670
* Thu Jul 12 2018 Honza Horak <hhorak@redhat.com> - 8.0.11-4
47f670
- Move mysqld back to /usr/libexec, and create a symlink in /usr/sbin
47f670
47f670
* Fri Jun 22 2018 Honza Horak <hhorak@redhat.com> - 8.0.11-3
47f670
- SCLizing the spec file
47f670
47f670
* Mon May 14 2018 Norvald H. Ryeng <norvald.ryeng@oracle.com> - 8.0.11-2
47f670
- MySQL 8.0 has notify support
47f670
- SQL restart command needs MYSQLD_PARENT_PID=1
47f670
- Increase LimitNOFILE
47f670
- Disable symbolic links is default (and option deprecated)
47f670
- Move mysqld to /usr/bin, with mysqld_safe gone there no reason
47f670
  to have mysqld in libexec
47f670
- FIPS mode is now supported:
47f670
   https://dev.mysql.com/doc/refman/8.0/en/fips-mode.html
47f670
- Remove legacy embedded refs from cnf files
47f670
- Clean up patches: re-numbering and removing
47f670
- Recommend to use systemctl edit to modify service files
47f670
47f670
* Fri Apr 20 2018 Norvald H. Ryeng <norvald.ryeng@oracle.com> - 8.0.11-1
47f670
- Update to MySQL 8.0.11 (GA).
47f670
47f670
* Thu Apr 19 2018 Michal Schorm <mschorm@redhat.com> - 5.7.22-1
47f670
- Rebase to 5.7.22 version
47f670
- CVE fixes: #1568963
47f670
            CVE-2018-2755 CVE-2018-2758 CVE-2018-2759 CVE-2018-2761 CVE-2018-2762
47f670
            CVE-2018-2766 CVE-2018-2769 CVE-2018-2771 CVE-2018-2773 CVE-2018-2775
47f670
            CVE-2018-2776 CVE-2018-2777 CVE-2018-2778 CVE-2018-2779 CVE-2018-2780
47f670
            CVE-2018-2781 CVE-2018-2782 CVE-2018-2784 CVE-2018-2786 CVE-2018-2787
47f670
            CVE-2018-2810 CVE-2018-2812 CVE-2018-2813 CVE-2018-2816 CVE-2018-2817
47f670
            CVE-2018-2818 CVE-2018-2819 CVE-2018-2839 CVE-2018-2846
47f670
47f670
* Tue Feb 27 2018 Michal Schorm <mschorm@redhat.com> - 5.7.21-6
47f670
- Rebuilt after Rawhide & f28 & f27 & f26 merge
47f670
47f670
* Sun Feb 25 2018 Michal Schorm <mschorm@redhat.com> - 5.7.21-5
47f670
- Rebuilt for ldconfig_post and ldconfig_postun bug
47f670
  Related: #1548331
47f670
47f670
* Mon Feb 19 2018 Michal Schorm <mschorm@redhat.com> - 5.7.21-3
47f670
- Move my_print_defaults binary to the server package to resolve conflict with mariadb
47f670
47f670
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.7.21-2
47f670
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
47f670
- Removed 'static' library subpackage
47f670
47f670
* Sun Jan 21 2018 Norvald H. Ryeng <norvald.ryeng@oracle.com> - 5.7.21-1
47f670
- Update to MySQL 5.7.21, for various fixes described at
47f670
  https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-21.html
47f670
- Add rpcgen to buildrep
47f670
- Add support for libtirpc
47f670
- Fix for various CVEs listed on
47f670
  http://www.oracle.com/technetwork/security-advisory/cpujan2018-3236628.html
47f670
- Add fix for libxcrypt - do not assume "crypt()" function is provided by glibc
47f670
  Resolves: #1536881
47f670
- Fix obsoletes using isa macro, remove the line entirely
47f670
  Resolves: #1537210
47f670
47f670
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 5.7.20-5
47f670
- Rebuilt for switch to libxcrypt
47f670
47f670
* Tue Jan 02 2018 Michal Schorm <mschorm@redhat.com> - 5.7.20-4
47f670
- Provide subackage with a client static library
47f670
  Needed by mysql-connector-odbc package
47f670
- Remove Group tag as it shouldn't be used anymore
47f670
47f670
* Sat Dec 09 2017 Honza Horak <hhorak@redhat.com> - 5.7.20-3
47f670
- Port for OpenSSL 1.1
47f670
  Fix tests that expect some particular ciphers
47f670
47f670
* Tue Nov 28 2017 Michal Schorm <mschorm@redhat.com> - 5.7.20-2
47f670
- In F>27 stick to upstream library version naming
47f670
47f670
* Wed Oct 25 2017 Michal Schorm <mschorm@redhat.com> - 5.7.20-1
47f670
- Fix owner and perms on log file in post script
47f670
  Related: #1497694
47f670
47f670
* Mon Oct 16 2017 Norvald H. Ryeng <norvald.ryeng@oracle.com> - 5.7.20-1
47f670
- Update to MySQL 5.7.20, for various fixes described at
47f670
  https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-20.html
47f670
- Move all test binaries to -test package
47f670
- Dont ship unneeded man pages on systemd platforms
47f670
- Remove mysql_config_editor from -devel package, shipped in client
47f670
- CVE fixes: #1503701
47f670
            CVE-2017-10155 CVE-2017-10227 CVE-2017-10268 CVE-2017-10276 CVE-2017-10279
47f670
            CVE-2017-10283 CVE-2017-10286 CVE-2017-10294 CVE-2017-10314 CVE-2017-10378
47f670
            CVE-2017-10379 CVE-2017-10384
47f670
47f670
* Mon Aug 28 2017 Honza Horak <hhorak@redhat.com> - 5.7.19-6
47f670
- Add bundled(boost) virtual provide
47f670
- Support --defaults-group-suffix option in systemd unit file
47f670
  Related: #1400702
47f670
47f670
* Fri Aug 04 2017 Honza Horak <hhorak@redhat.com> - 5.7.19-5
47f670
- Allow to use MD5 in FIPS mode
47f670
  Related: #1449689
47f670
- Remove snippets from mysql-preparep-db-dir.sh that could have security impact
47f670
  Do not run parts of SysV init script as root if possible
47f670
  Related: CVE-2017-3312
47f670
- Include mysqld@.service file and do not run start scripts in the unit file as root
47f670
47f670
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.7.19-4
47f670
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
47f670
47f670
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.7.19-3
47f670
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
47f670
47f670
* Tue Jul 25 2017 Michal Schorm <mschorm@redhat.com> - 5.7.19-2
47f670
- Replication tests in the testsuite enabled, they don't fail anymore
47f670
- Retry count in the testsuite dropped to 0
47f670
47f670
* Wed Jul 12 2017 Norvald H. Ryeng <norvald.ryeng@oracle.com> - 5.7.19-1
47f670
- Update to MySQL 5.7.19, for various fixes described at
47f670
  https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-19.html
47f670
- Use new --report-unstable-tests to handle unstable tests
47f670
- Prefer /run over /var/run (#1462688)
47f670
- Resolves: #1462688; /run
47f670
            #1406172; random failures of the testsuite
47f670
            #1417880, #1417883, #1417885, #1417887,  #1417890, #1417891, #1417893,
47f670
            #1417894, #1417896; replication tests
47f670
- CVE fixes: #1472716
47f670
            CVE-2017-3633, CVE-2017-3634, CVE-2017-3635, CVE-2017-3641, CVE-2017-3647
47f670
            CVE-2017-3648, CVE-2017-3649, CVE-2017-3651, CVE-2017-3652, CVE-2017-3653
47f670
47f670
* Fri Jul 07 2017 Igor Gnatenko <ignatenko@redhat.com> - 5.7.18-4
47f670
- Rebuild due to bug in RPM (RHBZ #1468476)
47f670
47f670
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.7.18-3
47f670
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
47f670
47f670
* Wed Apr 19 2017 Michal Schorm <mschorm@redhat.com> - 5.7.18-2
47f670
- 'force' option for 'rm' removed in specfile
47f670
- CVEs fixed by previous commit, #1443407:
47f670
  CVE-2017-3308 CVE-2017-3309 CVE-2017-3329 CVE-2017-3450
47f670
  CVE-2017-3453 CVE-2017-3456 CVE-2017-3461 CVE-2017-3462
47f670
  CVE-2017-3463 CVE-2017-3464 CVE-2017-3599 CVE-2017-3600
47f670
47f670
* Mon Apr 03 2017 Norvald H. Ryeng <norvald.ryeng@oracle.com> - 5.7.18-1
47f670
- Update to MySQL 5.7.18, for various fixes described at
47f670
  https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-18.html
47f670
- Remove patch for test fix now upstream
47f670
- Sample my-*.cnf is gone
47f670
47f670
* Wed Feb 15 2017 Michal Schorm <mschorm@redhat.com> - 5.7.17-4
47f670
- Fix of broken cross mysql-mariadb dependecies
47f670
- Fix of community-mysql server-client dependecy
47f670
- Testsuite retry count lifted to 3 tries
47f670
47f670
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.7.17-3
47f670
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
47f670
47f670
* Wed Jan 04 2017 Norvald H. Ryeng <norvald.ryeng@oracle.com> - 5.7.17-2
47f670
- Fix test that used a hardcoded date (2017-01-01)
47f670
47f670
* Mon Dec 12 2016 Norvald H. Ryeng <norvald.ryeng@oracle.com> - 5.7.17-1
47f670
- Update to MySQL 5.7.17, for various fixes described at
47f670
  https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-17.html
47f670
- Add new plugin: connnection_control.so
47f670
- Add MySQL Group Replication: group_replication.so
47f670
- Add numactl-devel to buildreq and enable NUMA support (if available)
47f670
- Simplify boost path
47f670
- Build compat-openssl10 in rawhide for now
47f670
- Reqs. in -devel packages was incomplete
47f670
47f670
* Tue Oct 18 2016 Norvald H. Ryeng <norvald.ryeng@oracle.com> - 5.7.16-1
47f670
- Update to MySQL 5.7.16, for various fixes described at
47f670
  https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-16.html
47f670
47f670
* Tue Sep 06 2016 Norvald H. Ryeng <norvald.ryeng@oracle.com> - 5.7.15-1
47f670
- Update to MySQL 5.7.15, for various fixes described at
47f670
  https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-15.html
47f670
- Remove patches now upstream (buf_block_align,  lz4)
47f670
- perl(JSON) needed for tests
47f670
- Adjust list of problematic tests
47f670
47f670
* Wed Aug 10 2016 Norvald H. Ryeng <norvald.ryeng@oracle.com> - 5.7.14-2
47f670
- Skip rpl tests, unstable in Fedora build environment
47f670
47f670
* Tue Aug 09 2016 Norvald H. Ryeng <norvald.ryeng@oracle.com> - 5.7.14-1
47f670
- Update to MySQL 5.7.14, for various fixes described at
47f670
  https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-14.html
47f670
- Remove patches for bugs fixed upstream
47f670
- Fix for bug #79378 (buf_block_align)
47f670
- Fix for bug #82426 (build failure with system liblz4)
47f670
- Further reduce list of tests known to fail on certain platforms
47f670
- Set check_testsuite to 0 to make sure the build fails if any tests fail
47f670
47f670
* Wed Jul 13 2016 Norvald H. Ryeng <norvald.ryeng@oracle.com> - 5.7.13-1
47f670
- Update to MySQL 5.7.13, for various fixes described at
47f670
  https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-13.html
47f670
47f670
* Mon Jun 27 2016 Pavel Raiskup <praiskup@redhat.com> - 5.7.12-2
47f670
- BR multilib-rpm-config and use it for multilib workarounds
47f670
47f670
* Tue May 24 2016 Jakub Dorňák <jdornak@redhat.com> - 5.7.12-1
47f670
- Update to 5.7.12
47f670
  Thanks to Norvald H. Ryeng
47f670
47f670
* Sun Feb 14 2016 Honza Horak <hhorak@redhat.com> - 5.7.11-2
47f670
- Remove duplicate tmpfiles.d file
47f670
  Resolves: #1288216
47f670
47f670
* Thu Feb 11 2016 Honza Horak <hhorak@redhat.com> - 5.7.11-1
47f670
- Update to 5.7.11
47f670
  Thanks to Norvald H. Ryeng
47f670
  Removing tar ball with boost and using mysql tar ball with boost bundled
47f670
47f670
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.7.10-3
47f670
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
47f670
47f670
* Wed Jan 27 2016 Honza Horak <hhorak@redhat.com> - 5.7.10-2
47f670
- Use mysqld instead of mysqld_safe (mysqld_safe not necessary for 5.7)
47f670
  Use mysqld --initialize-insecure instead of mysql_install_db
47f670
  Create /var/lib/mysql-files (used by secure-file-priv)
47f670
    http://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_secure_file_priv
47f670
  Remove unnecessary Perl dependencies (mysqlhotcopy was removed in 5.7)
47f670
  Thanks Norvald H. Ryeng
47f670
47f670
* Wed Dec 16 2015 Jakub Dorňák <jdornak@redhat.com> - 5.7.10-1
47f670
- Update to 5.7.10
47f670
47f670
* Fri Oct  2 2015 Jakub Dorňák <jdornak@redhat.com> - 5.7.9-1
47f670
- Update to 5.7.9
47f670
47f670
* Thu Oct  1 2015 Jakub Dorňák <jdornak@redhat.com> - 5.6.27-1
47f670
- Update to 5.6.27
47f670
47f670
* Thu Jul 30 2015 Jakub Dorňák <jdornak@redhat.com> - 5.6.26-1
47f670
- Update to 5.6.26
47f670
47f670
* Tue Jul 21 2015 Jakub Dorňák <jdornak@redhat.com> - 5.6.25-1
47f670
- Update to 5.6.25
47f670
47f670
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.6.24-4
47f670
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
47f670
47f670
* Thu Apr 23 2015 Bjorn Munch <bjorn.munch@oracle.com> - 5.6.24-3
47f670
- gcc5 makes gcc49-aarch64 patch obsolete (and wrong)
47f670
47f670
* Fri Apr 10 2015 Honza Horak <hhorak@redhat.com> - 5.6.24-2
47f670
- Fix for big integers on gcc5
47f670
47f670
* Thu Apr 09 2015 Honza Horak <hhorak@redhat.com> - 5.6.24-1
47f670
- Update to 5.6.24
47f670
47f670
* Tue Mar 03 2015 Honza Horak <hhorak@redhat.com> - 5.6.23-4
47f670
- Do not use scl prefix more than once in paths
47f670
  Based on https://www.redhat.com/archives/sclorg/2015-February/msg00038.html
47f670
- Check permissions when starting service on RHEL-6
47f670
  Resolves: #1194699
47f670
- Wait for daemon ends
47f670
  Related: #1072958
47f670
47f670
* Mon Feb 23 2015 Honza Horak <hhorak@redhat.com> - 5.6.23-3
47f670
- Expand paths in perl scripts in mysql-test
47f670
- Use correct path in install_db script warning
47f670
- Use --no-defaults when checking server status before starting
47f670
47f670
* Thu Jan 29 2015 Bjorn Munch <bjorn.munch@oracle.com> - 5.6.23-1
47f670
- Update to MySQL 5.6.23, for various fixes described at
47f670
  https://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-23.html
47f670
- Expired certs patch now obsolete
47f670
- Fixed changelog
47f670
- Refreshed file contents patch
47f670
- Man pages fixed upstream
47f670
- Fix typo in server.cnf.in
47f670
47f670
* Mon Jan 26 2015 Honza Horak <hhorak@redhat.com> - 5.6.22-6
47f670
- Do not own /var/log
47f670
47f670
* Sun Jan 25 2015 Honza Horak <hhorak@redhat.com> - 5.6.22-5
47f670
- Use correct dir for config files
47f670
47f670
* Sat Jan 24 2015 Honza Horak <hhorak@redhat.com> - 5.6.22-4
47f670
- Move server settings to renamed config file under my.cnf.d dir
47f670
47f670
* Sat Jan 24 2015 Honza Horak <hhorak@redhat.com> - 5.6.22-3
47f670
- Fix path for sysconfig file
47f670
  Filter provides in el6 properly
47f670
  Fix initscript file location
47f670
47f670
* Mon Jan 12 2015 Honza Horak <hhorak@redhat.com> - 5.6.22-2
47f670
- Add configuration file for server
47f670
47f670
* Wed Dec  3 2014 Jakub Dorňák <jdornak@redhat.com> - 5.6.22-1
47f670
- Update to MySQL 5.6.22
47f670
47f670
* Wed Oct 08 2014 Bjorn Munch <bjorn.munch@oracle.com> - 5.6.21-5
47f670
- Fix rhbz #1149986
47f670
47f670
* Wed Oct 01 2014 Honza Horak <hhorak@redhat.com> - 5.6.21-4
47f670
- Add bcond_without mysql_names
47f670
47f670
* Mon Sep 29 2014 Honza Horak <hhorak@redhat.com> - 5.6.21-3
47f670
- Check upgrade script added to warn about need for mysql_upgrade
47f670
- Move mysql_plugin into base and errmsg-utf8.txt into -errmsg to correspond
47f670
  with MariaDB upstream packages
47f670
- Add with_debug option
47f670
47f670
* Thu Sep 25 2014 Bjorn Munch <bjorn.munch@oracle.com> - 5.6.21-2
47f670
- Using %%cmake macro break some tests, reverted
47f670
- Unwanted dtrace dep fixed upstream
47f670
47f670
* Wed Sep 24 2014 Honza Horak <hhorak@redhat.com> - 5.6.20-1
47f670
- Update to MySQL 5.6.21, for various fixes described at
47f670
  http://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-21.html
47f670
47f670
* Thu Sep 04 2014 Honza Horak <hhorak@redhat.com> - 5.6.20-5
47f670
- Fix paths in mysql_install_db script
47f670
  Related: #1134328
47f670
- Use %%cmake macro
47f670
- Install systemd service file on RHEL-7+
47f670
  Server requires any mysql package, so it should be fine with older client
47f670
47f670
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.6.20-4
47f670
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
47f670
47f670
* Tue Aug 12 2014 Honza Horak <hhorak@redhat.com> - 5.6.20-3
47f670
- Introduce -config subpackage and ship base config files here
47f670
47f670
* Tue Aug 05 2014 Honza Horak <hhorak@redhat.com> - 5.6.20-2
47f670
- Adopt changes from mariadb to sync spec files
47f670
47f670
* Thu Jul 31 2014 Bjorn Munch <bjorn.munch@oracle.com> - 5.6.20-1
47f670
- Update to MySQL 5.6.20, for various fixes described at
47f670
  https://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-20.html
47f670
- Rebase install and pluginerrmsg patch
47f670
- Drop dos2unix from buildreq, files fixed upstream
47f670
- No need to add -O3, it's default
47f670
- LDFLAGS is passed by cmake option, not from environment
47f670
- Using __requires_exclude in conditional don't seems to work, swap
47f670
  to dist macros
47f670
- Avoid unwanted dtrace dep
47f670
- Fix mysql.init and mysql-prepare-db-dir
47f670
- Logfile name must match value from /etc/my.cnf (and be known
47f670
  by SELinux policy)
47f670
47f670
* Tue Jul 22 2014 Honza Horak <hhorak@redhat.com> - 5.6.19-5
47f670
- Hardcoded paths removed to work fine in chroot
47f670
- Spec rewrite to be more similar to oterh MySQL implementations
47f670
- Include SysV init script if built on older system
47f670
- Add possibility to not ship some sub-packages
47f670
- Port scripts for systemd unit from MariaDB
47f670
47f670
* Mon Jul 21 2014 Honza Horak <hhorak@redhat.com> - 5.6.19-4
47f670
- Port some latest changes from MariaDB package to sync those packages
47f670
- Error messages now provided by a separate package (thanks Alexander Barkov)
47f670
47f670
* Fri Jun 27 2014 Honza Horak <hhorak@redhat.com> - 5.6.19-3
47f670
- Add mysql-compat-server symbol, common symbol for arbitrary MySQL
47f670
  implementation
47f670
- Require /etc/my.cnf instead of shipping it
47f670
- Server requires any compatible mysql-compat-client package
47f670
47f670
* Thu Jun 12 2014 Bjorn Munch <bjorn.munch@oracle.com> - 5.6.19-2
47f670
- Fix build on aarch64
47f670
- Rebase cipherspec patch
47f670
47f670
* Wed Jun 11 2014 Bjorn Munch <bjorn.munch@oracle.com> - 5.6.19-1
47f670
- Update to MySQL 5.6.19, for various fixes described at
47f670
  https://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-19.html
47f670
- outfile_loaddata resolved on all archs
47f670
- Solaris files not installed, no need to remove
47f670
- Simplify multilib install
47f670
- Use install's -D option some places
47f670
- Add explicit conflict with mariadb-galera-server
47f670
47f670
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.6.17-3
47f670
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
47f670
47f670
* Fri Apr 18 2014 Bjorn Munch <bjorn.munch@oracle.com> 5.6.17-2
47f670
- Fix multiple mtr sessions
47f670
47f670
* Fri Apr 04 2014 Bjorn Munch <bjorn.munch@oracle.com> 5.6.17-1
47f670
- Update to MySQL 5.6.17, for various fixes described at
47f670
  https://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-17.html
47f670
- libmysqld built as shared lib now supported upstream
47f670
- Remove patches now upstream: truncate-file, rhbz1059545, ssltest
47f670
  and regex-werror
47f670
- Use more standard (and tested) build flags, while still respect
47f670
  optflags and hardened_build
47f670
- libmysqlclient_r* symlinks are fixed upstream
47f670
- Remove sysv to systemd logic
47f670
- Rework skipping of arch specific tests
47f670
- Multiple mtr sessions are supported by default
47f670
47f670
* Mon Feb  3 2014 Honza Horak <hhorak@redhat.com> 5.6.16-2
47f670
- Rebuild -man-pages.patch to apply smoothly
47f670
47f670
* Fri Jan 31 2014 Bjorn Munch <bjorn.munch@oracle.com> 5.6.16-1
47f670
- Update to MySQL 5.6.16, for various fixes described at
47f670
  https://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-16.html
47f670
- Patches now upstream: tmpdir, cve-2013-1861, covscan-signexpr,
47f670
  covscan-stroverflow
47f670
- Fixed upstream: innodbwarn
47f670
- ldconfig needed in embedded subpackage
47f670
- Remove unused generate-tarball.sh from tree
47f670
- Rediff mysql-install patch
47f670
- Make symvers 18 default, provide symvers 16 for backward compat
47f670
  (bz #1045013)
47f670
- Man page patch disabled due too many conflicts
47f670
- Memcached build patched to not remove -Werror=<something> in CFLAGS
47f670
47f670
* Thu Jan 30 2014 Honza Horak <hhorak@redhat.com> 5.6.15-4
47f670
  Fix for CVE-2014-0001
47f670
  Resolves: #1059545
47f670
- Don't test EDH-RSA-DES-CBC-SHA cipher, it seems to be removed from openssl
47f670
  which now makes mariadb/mysql FTBFS because openssl_1 test fails
47f670
  Related: #1044565
47f670
47f670
* Fri Jan 24 2014 Honza Horak <hhorak@redhat.com> 5.6.15-3
47f670
- Disable tests for ppc(64) and s390(x):
47f670
  innodb.innodb_ctype_ldml main.ctype_ldml main.ps_ddl main.ps_ddl1
47f670
  Related: #1056972
47f670
47f670
* Mon Dec 16 2013 Honza Horak <hhorak@redhat.com> 5.6.15-2
47f670
- Some spec file clean-up based on Bjorn Munch's suggestions
47f670
- Enable InnoDB Memcached plugin
47f670
47f670
* Mon Dec  9 2013 Honza Horak <hhorak@redhat.com> 5.6.15-1
47f670
- Update to MySQL 5.6.15, for various fixes described at
47f670
  https://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-15.html
47f670
47f670
* Fri Oct 11 2013 Honza Horak <hhorak@redhat.com> 5.6.14-2
47f670
- Fix my.cnf to not conflict with mariadb
47f670
  Resolves: #1003115
47f670
47f670
* Wed Oct  9 2013 Honza Horak <hhorak@redhat.com> 5.6.14-1
47f670
- Update to MySQL 5.6.14, for various fixes described at
47f670
  https://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-14.html
47f670
- Incorporate changes done by Bjorn Munch <bjorn.munch@oracle.com>
47f670
47f670
* Mon Sep  2 2013 Honza Horak <hhorak@redhat.com> 5.5.33-2
47f670
- Enhanced my.cnf to be the same as in mariadb
47f670
  Resolves: #1003115
47f670
47f670
* Tue Aug 20 2013 Honza Horak <hhorak@redhat.com> 5.5.33-1
47f670
- Update to MySQL 5.5.33, for various fixes described at
47f670
  http://dev.mysql.com/doc/relnotes/mysql/5.5/en/news-5-5-33.html
47f670
47f670
* Tue Aug 20 2013 Honza Horak <hhorak@redhat.com> 5.5.32-12
47f670
- Fix multilib header location for arm
47f670
47f670
* Sat Aug 03 2013 Petr Pisar <ppisar@redhat.com> - 5.5.32-11
47f670
- Perl 5.18 rebuild
47f670
47f670
* Fri Jul 26 2013 Honza Horak <hhorak@redhat.com> 5.5.32-10
47f670
- Copy some generated files in order find-debuginfo.sh finds them
47f670
  Related: #729040
47f670
- Fix systemd and perl requirements
47f670
47f670
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 5.5.32-9
47f670
- Perl 5.18 rebuild
47f670
47f670
* Mon Jul 15 2013 Honza Horak <hhorak@redhat.com> 5.5.32-8
47f670
- Revert path change to ldconfig, UsrMove is not complete yet
47f670
47f670
* Wed Jul 10 2013 Honza Horak <hhorak@redhat.com> 5.5.32-7
47f670
- Arm support for multilib hacks
47f670
47f670
* Tue Jul  9 2013 Honza Horak <hhorak@redhat.com> 5.5.32-6
47f670
- Use proper path to ldconfig
47f670
- Use xz instead of gzip
47f670
  Resolves: #982387
47f670
47f670
* Mon Jul  1 2013 Honza Horak <hhorak@redhat.com> 5.5.32-5
47f670
- Fix misleading error message when uninstalling built-in plugins
47f670
  Related: #966645
47f670
47f670
* Thu Jun 27 2013 Honza Horak <hhorak@redhat.com> 5.5.32-4
47f670
- Remove external man pages, upstream fixed man pages license
47f670
- Apply fixes found by Coverity static analysis tool
47f670
47f670
* Fri Jun 14 2013 Honza Horak <hhorak@redhat.com> 5.5.32-3
47f670
- Use man pages from 5.5.30, because their license do not
47f670
  allow us to ship them since 5.5.31
47f670
47f670
* Fri Jun  7 2013 Honza Horak <hhorak@redhat.com> 5.5.32-1
47f670
- Update to MySQL 5.5.32, for various fixes described at
47f670
  http://dev.mysql.com/doc/relnotes/mysql/5.5/en/news-5-5-32.html
47f670
47f670
* Mon Jun  3 2013 Honza Horak <hhorak@redhat.com> 5.5.31-7
47f670
- Use /var/tmp as default tmpdir to prevent potential issues
47f670
  Resolves: #905635
47f670
- Fix test suite requirements
47f670
- Fix for CVE-2013-1861 backported from MariaDB
47f670
  Resolves: #921836
47f670
47f670
* Wed May 29 2013 Jan Stanek <jstanek@redhat.com> 5.5.31-6
47f670
- Added missing command-line options to man-pages (#948930)
47f670
47f670
* Tue Apr 30 2013 Honza Horak <hhorak@redhat.com> 5.5.31-5
47f670
- Remove mysql provides from devel sub-packages to not build against
47f670
  community-mysql if mysql-devel is specified
47f670
47f670
* Fri Apr 26 2013 Honza Horak <hhorak@redhat.com> 5.5.31-4
47f670
- Fix building with relro and PIE
47f670
47f670
* Thu Apr 25 2013 Honza Horak <hhorak@redhat.com> 5.5.31-3
47f670
- Fix paths in -plugin-test patch
47f670
47f670
* Mon Apr 22 2013 Honza Horak <hhorak@redhat.com> 5.5.31-2
47f670
- Build with _hardened_build
47f670
- Fix some paths and require perl(Env), which is needed by tests
47f670
47f670
* Fri Apr 19 2013 Honza Horak <hhorak@redhat.com> 5.5.31-1
47f670
- Update to MySQL 5.5.31, for various fixes described at
47f670
  http://dev.mysql.com/doc/relnotes/mysql/5.5/en/news-5-5-31.html
47f670
47f670
* Wed Mar 20 2013 Honza Horak <hhorak@redhat.com> 5.5.30-5
47f670
- Renaming package MySQL to community-mysql to handle issues
47f670
  introduced by case-insensitive operations of yum and for proper
47f670
  prioritizing mariadb over community-mysql
47f670
47f670
* Tue Mar 12 2013 Honza Horak <hhorak@redhat.com> 5.5.30-4
47f670
- Allow server to be installed without client side
47f670
- Separate -lib and -common sub-packages
47f670
- Fix some path issues in tests
47f670
47f670
* Mon Mar 11 2013 Honza Horak <hhorak@redhat.com> 5.5.30-3
47f670
- Adjusting major soname number of libmysqlclient to avoid
47f670
  library name conflicts with mariadb
47f670
47f670
* Tue Feb 12 2013 Honza Horak <hhorak@redhat.com> 5.5.30-1
47f670
- Update to MySQL 5.5.30, for various fixes described at
47f670
  http://dev.mysql.com/doc/relnotes/mysql/5.5/en/news-5-5-30.html
47f670
47f670
* Tue Feb 12 2013 Honza Horak <hhorak@redhat.com> 5.5.29-3
47f670
- Use real- prefix for cross-package requirements
47f670
47f670
* Mon Feb 11 2013 Honza Horak <hhorak@redhat.com> 5.5.29-2
47f670
- Provide own symbols with real- prefix to distinguish packages from other
47f670
  MySQL implementations unambiguously
47f670
47f670
* Wed Jan  2 2013 Tom Lane <tgl@redhat.com> 5.5.29-1
47f670
- Update to MySQL 5.5.29, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.5/en/news-5-5-29.html
47f670
- Fix inaccurate default for socket location in mysqld-wait-ready
47f670
Resolves: #890535
47f670
47f670
* Thu Dec  6 2012 Honza Horak <hhorak@redhat.com> 5.5.28-3
47f670
- Rebase patches to not leave backup files when not applied smoothly
47f670
- Use --no-backup-if-mismatch to prevent including backup files
47f670
47f670
* Wed Dec  5 2012 Tom Lane <tgl@redhat.com> 5.5.28-2
47f670
- Add patch for CVE-2012-5611
47f670
Resolves: #883642
47f670
- Widen DH key length from 512 to 1024 bits to meet minimum requirements
47f670
  of FIPS 140-2
47f670
Related: #877124
47f670
47f670
* Sat Sep 29 2012 Tom Lane <tgl@redhat.com> 5.5.28-1
47f670
- Update to MySQL 5.5.28, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.5/en/news-5-5-28.html
47f670
- Clean up partially-created database files when mysql_install_db fails
47f670
Related: #835131
47f670
- Honor user and group settings from service file in mysqld-prepare-db-dir
47f670
Resolves: #840431
47f670
- Export THR_KEY_mysys as a workaround for inadequate threading support
47f670
Resolves: #846602
47f670
- Adopt new systemd macros for server package install/uninstall triggers
47f670
Resolves: #850222
47f670
- Use --no-defaults when invoking mysqladmin to wait for the server to start
47f670
Related: #855704
47f670
47f670
* Sun Aug  5 2012 Tom Lane <tgl@redhat.com> 5.5.27-1
47f670
- Update to MySQL 5.5.27, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.5/en/news-5-5-27.html
47f670
47f670
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.5.25a-2
47f670
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
47f670
47f670
* Fri Jul  6 2012 Tom Lane <tgl@redhat.com> 5.5.25a-1
47f670
- Update to MySQL 5.5.25a, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.5/en/news-5-5-25a.html
47f670
  http://dev.mysql.com/doc/refman/5.5/en/news-5-5-25.html
47f670
- Don't use systemd's Restart feature; rely on mysqld_safe instead
47f670
Resolves: #832029
47f670
47f670
* Mon Jun 11 2012 Tom Lane <tgl@redhat.com> 5.5.24-1
47f670
- Update to MySQL 5.5.24, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.5/en/news-5-5-24.html
47f670
  including the fix for CVE-2012-2122
47f670
Resolves: #830680
47f670
- Tweak logrotate script to put the right permissions on mysqld.log
47f670
- Minor specfile fixes for recent packaging guidelines changes
47f670
47f670
* Sat Apr 28 2012 Tom Lane <tgl@redhat.com> 5.5.23-1
47f670
- Update to MySQL 5.5.23, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.5/en/news-5-5-23.html
47f670
47f670
* Sat Mar 24 2012 Tom Lane <tgl@redhat.com> 5.5.22-1
47f670
- Update to MySQL 5.5.22, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.5/en/news-5-5-22.html
47f670
- Turn on PrivateTmp in service file
47f670
Resolves: #782513
47f670
- Comment out the contents of /etc/logrotate.d/mysqld, so that manual
47f670
  action is needed to enable log rotation.  Given the multiple ways in
47f670
  which the rotation script can fail, it seems imprudent to try to make
47f670
  it run by default.
47f670
Resolves: #799735
47f670
47f670
* Tue Mar 20 2012 Honza Horak <hhorak@redhat.com> 5.5.21-3
47f670
- Revise mysql_plugin test patch so it moves plugin files to
47f670
  a temporary directory (better solution to #789530)
47f670
47f670
* Tue Mar 13 2012 Honza Horak <hhorak@redhat.com> 5.5.21-2
47f670
- Fix ssl-related tests to specify expected cipher explicitly
47f670
Related: #789600
47f670
- Fix several strcpy calls to check destination size
47f670
47f670
* Mon Feb 27 2012 Tom Lane <tgl@redhat.com> 5.5.21-1
47f670
- Update to MySQL 5.5.21, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.5/en/news-5-5-21.html
47f670
- Hack openssl regression test to still work with rawhide's openssl
47f670
- Fix assorted failures in post-install regression tests (mysql-test RPM)
47f670
Resolves: #789530
47f670
47f670
* Fri Feb 10 2012 Tom Lane <tgl@redhat.com> 5.5.20-2
47f670
- Revise our test-disabling method to make it possible to disable tests on a
47f670
  platform-specific basis, and also to get rid of mysql-disable-test.patch,
47f670
  which broke in just about every upstream update (Honza Horak)
47f670
- Disable cycle-counter-dependent regression tests on ARM, since there is
47f670
  not currently any support for that in Fedora ARM kernels
47f670
Resolves: #773116
47f670
- Add some comments to mysqld.service documenting how to customize it
47f670
Resolves: #785243
47f670
47f670
* Fri Jan 27 2012 Tom Lane <tgl@redhat.com> 5.5.20-1
47f670
- Update to MySQL 5.5.20, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.5/en/news-5-5-20.html
47f670
  as well as security fixes described at
47f670
  http://www.oracle.com/technetwork/topics/security/cpujan2012-366304.html
47f670
Resolves: #783828
47f670
- Re-include the mysqld logrotate script, now that it's not so bogus
47f670
Resolves: #547007
47f670
47f670
* Wed Jan  4 2012 Tom Lane <tgl@redhat.com> 5.5.19-1
47f670
- Update to MySQL 5.5.19, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.5/en/news-5-5-19.html
47f670
47f670
* Sun Nov 20 2011 Tom Lane <tgl@redhat.com> 5.5.18-1
47f670
- Update to MySQL 5.5.18, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.5/en/news-5-5-18.html
47f670
47f670
* Sat Nov 12 2011 Tom Lane <tgl@redhat.com> 5.5.17-1
47f670
- Update to MySQL 5.5.17, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.5/en/news-5-5-17.html
47f670
- Get rid of version-number assumption in sysv-to-systemd conversion trigger
47f670
47f670
* Wed Nov 02 2011 Honza Horak <hhorak@redhat.com> 5.5.16-4
47f670
- Don't assume all ethernet devices are named ethX
47f670
Resolves: #682365
47f670
- Exclude user definition from my.cnf, user is defined in mysqld.service now
47f670
Resolves: #661265
47f670
47f670
* Sun Oct 16 2011 Tom Lane <tgl@redhat.com> 5.5.16-3
47f670
- Fix unportable usage associated with va_list arguments
47f670
Resolves: #744707
47f670
47f670
* Sun Oct 16 2011 Tom Lane <tgl@redhat.com> 5.5.16-2
47f670
- Update to MySQL 5.5.16, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.5/en/news-5-5-16.html
47f670
47f670
* Fri Jul 29 2011 Tom Lane <tgl@redhat.com> 5.5.15-2
47f670
- Update to MySQL 5.5.15, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.5/en/news-5-5-15.html
47f670
47f670
* Wed Jul 27 2011 Tom Lane <tgl@redhat.com> 5.5.14-3
47f670
- Convert to systemd startup support (no socket activation, for now anyway)
47f670
Related: #714426
47f670
47f670
* Tue Jul 12 2011 Tom Lane <tgl@redhat.com> 5.5.14-2
47f670
- Remove make_scrambled_password and make_scrambled_password_323 from mysql.h,
47f670
  since we're not allowing clients to call those functions anyway
47f670
Related: #690346
47f670
47f670
* Mon Jul 11 2011 Tom Lane <tgl@redhat.com> 5.5.14-1
47f670
- Update to MySQL 5.5.14, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.5/en/news-5-5-14.html
47f670
47f670
* Wed Jul  6 2011 Tom Lane <tgl@redhat.com> 5.5.13-2
47f670
- Remove erroneously-included Default-Start line from LSB init block
47f670
Resolves: #717024
47f670
47f670
* Thu Jun  2 2011 Tom Lane <tgl@redhat.com> 5.5.13-1
47f670
- Update to MySQL 5.5.13, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.5/en/news-5-5-13.html
47f670
47f670
* Tue May 10 2011 Tom Lane <tgl@redhat.com> 5.5.12-1
47f670
- Update to MySQL 5.5.12, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.5/en/news-5-5-12.html
47f670
47f670
* Tue May 10 2011 Tom Lane <tgl@redhat.com> 5.5.10-3
47f670
- Add LSB init block to initscript, to ensure sane ordering at system boot
47f670
Resolves: #703214
47f670
- Improve initscript start action to notice when mysqladmin is failing
47f670
  because of configuration problems
47f670
Related: #703476
47f670
- Remove exclusion of "gis" regression test, since upstream bug 59908
47f670
  is fixed (for some value of "fixed") as of 5.5.10.
47f670
47f670
* Wed Mar 23 2011 Tom Lane <tgl@redhat.com> 5.5.10-2
47f670
- Add my_make_scrambled_password to the list of symbols exported by
47f670
  libmysqlclient.so.  Needed at least by pure-ftpd.
47f670
47f670
* Mon Mar 21 2011 Tom Lane <tgl@redhat.com> 5.5.10-1
47f670
- Update to MySQL 5.5.10, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.5/en/news-5-5-10.html
47f670
  Note that this includes a rather belated soname version bump for
47f670
  libmysqlclient.so, from .16 to .18
47f670
- Add tmpfiles.d config file so that /var/run/mysqld is recreated at boot
47f670
  (only needed in Fedora 15 and later)
47f670
Resolves: #658938
47f670
47f670
* Wed Feb 16 2011 Tom Lane <tgl@redhat.com> 5.5.9-2
47f670
- Disable a regression test that is now showing platform-dependent results
47f670
Resolves: #674253
47f670
47f670
* Sat Feb 12 2011 Tom Lane <tgl@redhat.com> 5.5.9-1
47f670
- Update to MySQL 5.5.9, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.5/en/news-5-5-9.html
47f670
- Add %%{?_isa} to cross-subpackage Requires, per latest packaging guidelines
47f670
47f670
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.5.8-10
47f670
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
47f670
47f670
* Fri Feb  4 2011 Tom Lane <tgl@redhat.com> 5.5.8-9
47f670
- Support s390/s390x in performance schema's cycle-counting functions
47f670
  (needed to make regression tests pass on these platforms)
47f670
47f670
* Thu Feb  3 2011 Tom Lane <tgl@redhat.com> 5.5.8-8
47f670
- PPC64 floating-point differences are not masked by -ffloat-store after all,
47f670
  so let's just disable gis regression test till upstream makes it less picky
47f670
Resolves: #674253
47f670
- Add __perllib_requires setting to make rpm 4.9 do what we need
47f670
47f670
* Wed Feb  2 2011 Tom Lane <tgl@redhat.com> 5.5.8-7
47f670
- Work around some portability issues on PPC64
47f670
Resolves: #674253
47f670
47f670
* Thu Jan 20 2011 Tom Lane <tgl@redhat.com> 5.5.8-6
47f670
- Remove no-longer-needed special switches in CXXFLAGS, per yesterday's
47f670
  discussion in fedora-devel about -fexceptions.
47f670
- Rebuild needed anyway to check compatibility with latest systemtap.
47f670
47f670
* Thu Jan 13 2011 Tom Lane <tgl@redhat.com> 5.5.8-5
47f670
- Fix failure to honor MYSQL_HOME environment variable
47f670
Resolves: #669364
47f670
47f670
* Thu Jan 13 2011 Tom Lane <tgl@redhat.com> 5.5.8-4
47f670
- Fix crash during startup of embedded mysqld library
47f670
Resolves: #667365
47f670
47f670
* Mon Jan  3 2011 Tom Lane <tgl@redhat.com> 5.5.8-3
47f670
- my_print_help, load_defaults, free_defaults, and handle_options all turn
47f670
  out to be documented/recommended in Paul DuBois' MySQL book, so we'd better
47f670
  consider them part of the de-facto API.
47f670
Resolves: #666728
47f670
47f670
* Mon Dec 27 2010 Tom Lane <tgl@redhat.com> 5.5.8-2
47f670
- Add mysql_client_errors[] to the set of exported libmysqlclient symbols;
47f670
  needed by PHP.
47f670
47f670
* Thu Dec 23 2010 Tom Lane <tgl@redhat.com> 5.5.8-1
47f670
- Update to MySQL 5.5.8 (major version bump).  Note this includes removal
47f670
  of libmysqlclient_r.so.
47f670
- Add a linker version script to hide libmysqlclient functions that aren't
47f670
  part of the documented API.
47f670
47f670
* Mon Nov  1 2010 Tom Lane <tgl@redhat.com> 5.1.52-1
47f670
- Update to MySQL 5.1.52, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.1/en/news-5-1-52.html
47f670
Resolves: #646569
47f670
47f670
* Thu Oct  7 2010 Tom Lane <tgl@redhat.com> 5.1.51-2
47f670
- Re-disable the outfile_loaddata test, per report from Dan Horak.
47f670
47f670
* Wed Oct  6 2010 Tom Lane <tgl@redhat.com> 5.1.51-1
47f670
- Update to MySQL 5.1.51, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.1/en/news-5-1-51.html
47f670
47f670
* Sat Aug 28 2010 Tom Lane <tgl@redhat.com> 5.1.50-2
47f670
- Include my_compiler.h in distribution, per upstream bug #55846.
47f670
  Otherwise PHP, for example, won't build.
47f670
47f670
* Sat Aug 28 2010 Tom Lane <tgl@redhat.com> 5.1.50-1
47f670
- Update to MySQL 5.1.50, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.1/en/news-5-1-50.html
47f670
  http://dev.mysql.com/doc/refman/5.1/en/news-5-1-49.html
47f670
47f670
* Wed Jul 14 2010 Tom Lane <tgl@redhat.com> 5.1.48-3
47f670
- Fix FTBFS with gcc 4.5.
47f670
Related: #614293
47f670
47f670
* Tue Jul 13 2010 Tom Lane <tgl@redhat.com> 5.1.48-2
47f670
- Duplicate COPYING and EXCEPTIONS-CLIENT in -libs and -embedded subpackages,
47f670
  to ensure they are available when any subset of mysql RPMs are installed,
47f670
  per revised packaging guidelines
47f670
- Allow init script's STARTTIMEOUT/STOPTIMEOUT to be overridden from sysconfig
47f670
Related: #609734
47f670
47f670
* Mon Jun 21 2010 Tom Lane <tgl@redhat.com> 5.1.48-1
47f670
- Update to MySQL 5.1.48, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.1/en/news-5-1-48.html
47f670
  including a fix for CVE-2010-2008
47f670
Related: #614214
47f670
47f670
* Fri Jun  4 2010 Tom Lane <tgl@redhat.com> 5.1.47-2
47f670
- Add back "partition" storage engine
47f670
Resolves: #597390
47f670
- Fix broken "federated" storage engine plugin
47f670
Related: #587170
47f670
- Read all certificates in SSL certificate files, to support chained certs
47f670
Related: #598656
47f670
47f670
* Mon May 24 2010 Tom Lane <tgl@redhat.com> 5.1.47-1
47f670
- Update to MySQL 5.1.47, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.1/en/news-5-1-47.html
47f670
  including fixes for CVE-2010-1848, CVE-2010-1849, CVE-2010-1850
47f670
Resolves: #592862
47f670
Resolves: #583717
47f670
- Create mysql group explicitly in pre-server script, to ensure correct GID
47f670
Related: #594155
47f670
47f670
* Sat Apr 24 2010 Tom Lane <tgl@redhat.com> 5.1.46-1
47f670
- Update to MySQL 5.1.46, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.1/en/news-5-1-46.html
47f670
47f670
* Thu Mar 25 2010 Tom Lane <tgl@redhat.com> 5.1.45-2
47f670
- Fix multiple problems described in upstream bug 52019, because regression
47f670
  tests fail on PPC if we don't.
47f670
47f670
* Wed Mar 24 2010 Tom Lane <tgl@redhat.com> 5.1.45-1
47f670
- Update to MySQL 5.1.45, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.1/en/news-5-1-45.html
47f670
47f670
* Sun Feb 21 2010 Tom Lane <tgl@redhat.com> 5.1.44-2
47f670
- Add "Obsoletes: mysql-cluster" to fix upgrade-in-place from F-12
47f670
- Bring init script into some modicum of compliance with Fedora/LSB standards
47f670
Related: #557711
47f670
Related: #562749
47f670
47f670
* Sat Feb 20 2010 Tom Lane <tgl@redhat.com> 5.1.44-1
47f670
- Update to MySQL 5.1.44, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.1/en/news-5-1-44.html
47f670
- Remove mysql.info, which is not freely redistributable
47f670
Resolves: #560181
47f670
- Revert broken upstream fix for their bug 45058
47f670
Resolves: #566547
47f670
47f670
* Sat Feb 13 2010 Tom Lane <tgl@redhat.com> 5.1.43-2
47f670
- Remove mysql-cluster, which is no longer supported by upstream in this
47f670
  source distribution.  If we want it we'll need a separate SRPM for it.
47f670
47f670
* Fri Feb 12 2010 Tom Lane <tgl@redhat.com> 5.1.43-1
47f670
- Update to MySQL 5.1.43, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.1/en/news-5-1-43.html
47f670
47f670
* Fri Jan 29 2010 Tom Lane <tgl@redhat.com> 5.1.42-7
47f670
- Add backported patch for CVE-2008-7247 (upstream bug 39277)
47f670
Related: #543619
47f670
- Use non-expired certificates for SSL testing (upstream bug 50702)
47f670
47f670
* Tue Jan 26 2010 Tom Lane <tgl@redhat.com> 5.1.42-6
47f670
- Emit explicit error message if user tries to build RPM as root
47f670
Related: #558915
47f670
47f670
* Wed Jan 20 2010 Tom Lane <tgl@redhat.com> 5.1.42-5
47f670
- Correct Source0: tag and comment to reflect how to get the tarball
47f670
47f670
* Fri Jan  8 2010 Tom Lane <tgl@redhat.com> 5.1.42-4
47f670
- Disable symbolic links by default in /etc/my.cnf
47f670
Resolves: #553652
47f670
47f670
* Tue Jan  5 2010 Tom Lane <tgl@redhat.com> 5.1.42-3
47f670
- Remove static libraries (.a files) from package, per packaging guidelines
47f670
- Change %%define to %%global, per packaging guidelines
47f670
47f670
* Sat Jan  2 2010 Tom Lane <tgl@redhat.com> 5.1.42-2
47f670
- Disable building the innodb plugin; it tickles assorted gcc bugs and
47f670
  doesn't seem entirely ready for prime time anyway.
47f670
47f670
* Fri Jan  1 2010 Tom Lane <tgl@redhat.com> 5.1.42-1
47f670
- Update to MySQL 5.1.42, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.1/en/news-5-1-42.html
47f670
- Start mysqld_safe with --basedir=/usr, to avoid unwanted SELinux messages
47f670
Resolves: #547485
47f670
47f670
* Thu Dec 17 2009 Tom Lane <tgl@redhat.com> 5.1.41-2
47f670
- Stop waiting during "service mysqld start" if mysqld_safe exits
47f670
Resolves: #544095
47f670
47f670
* Mon Nov 23 2009 Tom Lane <tgl@redhat.com> 5.1.41-1
47f670
- Update to MySQL 5.1.41, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.1/en/news-5-1-41.html
47f670
  including fixes for CVE-2009-4019
47f670
Related: #540906
47f670
- Don't set old_passwords=1; we aren't being bug-compatible with 3.23 anymore
47f670
Resolves: #540735
47f670
47f670
* Tue Nov 10 2009 Tom Lane <tgl@redhat.com> 5.1.40-1
47f670
- Update to MySQL 5.1.40, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.1/en/news-5-1-40.html
47f670
- Do not force the --log-error setting in mysqld init script
47f670
Resolves: #533736
47f670
47f670
* Sat Oct 17 2009 Tom Lane <tgl@redhat.com> 5.1.39-4
47f670
- Replace kluge fix for ndbd sparc crash with a real fix (mysql bug 48132)
47f670
47f670
* Thu Oct 15 2009 Tom Lane <tgl@redhat.com> 5.1.39-3
47f670
- Work around two different compiler bugs on sparc, one by backing off
47f670
  optimization from -O2 to -O1, and the other with a klugy patch
47f670
Related: #529298, #529299
47f670
- Clean up bogosity in multilib stub header support: ia64 should not be
47f670
  listed (it's not multilib), sparc and sparc64 should be
47f670
47f670
* Wed Sep 23 2009 Tom Lane <tgl@redhat.com> 5.1.39-2
47f670
- Work around upstream bug 46895 by disabling outfile_loaddata test
47f670
47f670
* Tue Sep 22 2009 Tom Lane <tgl@redhat.com> 5.1.39-1
47f670
- Update to MySQL 5.1.39, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.1/en/news-5-1-39.html
47f670
47f670
* Mon Aug 31 2009 Tom Lane <tgl@redhat.com> 5.1.37-5
47f670
- Work around unportable assumptions about stpcpy(); re-enable main.mysql test
47f670
- Clean up some obsolete parameters to the configure script
47f670
47f670
* Sat Aug 29 2009 Tom Lane <tgl@redhat.com> 5.1.37-4
47f670
- Remove one misguided patch; turns out I was chasing a glibc bug
47f670
- Temporarily disable "main.mysql" test; there's something broken there too,
47f670
  but we need to get mysql built in rawhide for dependency reasons
47f670
47f670
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 5.1.37-3
47f670
- rebuilt with new openssl
47f670
47f670
* Fri Aug 14 2009 Tom Lane <tgl@redhat.com> 5.1.37-2
47f670
- Add a couple of patches to improve the probability of the regression tests
47f670
  completing in koji builds
47f670
47f670
* Sun Aug  2 2009 Tom Lane <tgl@redhat.com> 5.1.37-1
47f670
- Update to MySQL 5.1.37, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.1/en/news-5-1-37.html
47f670
47f670
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1.36-2
47f670
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
47f670
47f670
* Fri Jul 10 2009 Tom Lane <tgl@redhat.com> 5.1.36-1
47f670
- Update to MySQL 5.1.36, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.1/en/news-5-1-36.html
47f670
47f670
* Sat Jun  6 2009 Tom Lane <tgl@redhat.com> 5.1.35-1
47f670
- Update to MySQL 5.1.35, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.1/en/news-5-1-35.html
47f670
- Ensure that /var/lib/mysql is created with the right SELinux context
47f670
Resolves: #502966
47f670
47f670
* Fri May 15 2009 Tom Lane <tgl@redhat.com> 5.1.34-1
47f670
- Update to MySQL 5.1.34, for various fixes described at
47f670
  http://dev.mysql.com/doc/refman/5.1/en/news-5-1-34.html
47f670
- Increase startup timeout per bug #472222
47f670
47f670
* Wed Apr 15 2009 Tom Lane <tgl@redhat.com> 5.1.33-2
47f670
- Increase stack size of ndbd threads for safety's sake.
47f670
Related: #494631
47f670
47f670
* Tue Apr  7 2009 Tom Lane <tgl@redhat.com> 5.1.33-1
47f670
- Update to MySQL 5.1.33.
47f670
- Disable use of pthread_setschedparam; doesn't work the way code expects.
47f670
Related: #477624
47f670
47f670
* Wed Mar  4 2009 Tom Lane <tgl@redhat.com> 5.1.32-1
47f670
- Update to MySQL 5.1.32.
47f670
47f670
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1.31-2
47f670
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
47f670
47f670
* Fri Feb 13 2009 Tom Lane <tgl@redhat.com> 5.1.31-1
47f670
- Update to MySQL 5.1.31.
47f670
47f670
* Thu Jan 22 2009 Tom Lane <tgl@redhat.com> 5.1.30-2
47f670
- hm, apparently --with-innodb and --with-ndbcluster are still needed
47f670
  even though no longer documented ...
47f670
47f670
* Thu Jan 22 2009 Tom Lane <tgl@redhat.com> 5.1.30-1
47f670
- Update to MySQL 5.1.30.  Note that this includes an ABI break for
47f670
  libmysqlclient (it's now got .so major version 16).
47f670
- This also updates mysql for new openssl build
47f670
47f670
* Wed Oct  1 2008 Tom Lane <tgl@redhat.com> 5.0.67-2
47f670
- Build the "embedded server" library, and package it in a new sub-RPM
47f670
  mysql-embedded, along with mysql-embedded-devel for devel support files.
47f670
Resolves: #149829
47f670
47f670
* Sat Aug 23 2008 Tom Lane <tgl@redhat.com> 5.0.67-1
47f670
- Update to mysql version 5.0.67
47f670
- Move mysql_config's man page to base package, again (apparently I synced
47f670
  that change the wrong way while importing specfile changes for ndbcluster)
47f670
47f670
* Sun Jul 27 2008 Tom Lane <tgl@redhat.com> 5.0.51a-2
47f670
- Enable ndbcluster support
47f670
Resolves: #163758
47f670
- Suppress odd crash messages during package build, caused by trying to
47f670
  build dbug manual (which we don't install anyway) with dbug disabled
47f670
Resolves: #437053
47f670
- Improve mysql.init to pass configured datadir to mysql_install_db,
47f670
  and to force user=mysql for both mysql_install_db and mysqld_safe.
47f670
Related: #450178
47f670
47f670
* Mon Mar  3 2008 Tom Lane <tgl@redhat.com> 5.0.51a-1
47f670
- Update to mysql version 5.0.51a
47f670
47f670
* Mon Mar  3 2008 Tom Lane <tgl@redhat.com> 5.0.45-11
47f670
- Fix mysql-stack-guard patch to work correctly on IA64
47f670
- Fix mysql.init to wait correctly when socket is not in default place
47f670
Related: #435494
47f670
47f670
* Mon Mar 03 2008 Dennis Gilmore <dennis@ausil.us> 5.0.45-10
47f670
- add sparc64 to 64 bit arches for test suite checking
47f670
- add sparc, sparcv9 and sparc64 to multilib handling
47f670
47f670
* Thu Feb 28 2008 Tom Lane <tgl@redhat.com> 5.0.45-9
47f670
- Fix the stack overflow problem encountered in January.  It seems the real
47f670
issue is that the buildfarm machines were moved to RHEL5, which uses 64K not
47f670
4K pages on PPC, and because RHEL5 takes the guard area out of the requested
47f670
thread stack size we no longer had enough headroom.
47f670
Related: #435337
47f670
47f670
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 5.0.45-8
47f670
- Autorebuild for GCC 4.3
47f670
47f670
* Tue Jan  8 2008 Tom Lane <tgl@redhat.com> 5.0.45-7
47f670
- Unbelievable ... upstream still thinks that it's a good idea to have a
47f670
  regression test that is guaranteed to begin failing come January 1.
47f670
- ... and it seems we need to raise STACK_MIN_SIZE again too.
47f670
47f670
* Thu Dec 13 2007 Tom Lane <tgl@redhat.com> 5.0.45-6
47f670
- Back-port upstream fixes for CVE-2007-5925, CVE-2007-5969, CVE-2007-6303.
47f670
Related: #422211
47f670
47f670
* Wed Dec  5 2007 Tom Lane <tgl@redhat.com> 5.0.45-5
47f670
- Rebuild for new openssl
47f670
47f670
* Sat Aug 25 2007 Tom Lane <tgl@redhat.com> 5.0.45-4
47f670
- Seems we need explicit BuildRequires on gawk and procps now
47f670
- Rebuild to fix Fedora toolchain issues
47f670
47f670
* Sun Aug 12 2007 Tom Lane <tgl@redhat.com> 5.0.45-3
47f670
- Recent perl changes in rawhide mean we need a more specific BuildRequires
47f670
47f670
* Thu Aug  2 2007 Tom Lane <tgl@redhat.com> 5.0.45-2
47f670
- Update License tag to match code.
47f670
- Work around recent Fedora change that makes "open" a macro name.
47f670
47f670
* Sun Jul 22 2007 Tom Lane <tgl@redhat.com> 5.0.45-1
47f670
- Update to MySQL 5.0.45
47f670
Resolves: #246535
47f670
- Move mysql_config's man page to base package
47f670
Resolves: #245770
47f670
- move my_print_defaults to base RPM, for consistency with Stacks packaging
47f670
- mysql user is no longer deleted at RPM uninstall
47f670
Resolves: #241912
47f670
47f670
* Thu Mar 29 2007 Tom Lane <tgl@redhat.com> 5.0.37-2
47f670
- Use a less hacky method of getting default values in initscript
47f670
Related: #233771, #194596
47f670
- Improve packaging of mysql-libs per suggestions from Remi Collet
47f670
Resolves: #233731
47f670
- Update default /etc/my.cnf ([mysql.server] has been bogus for a long time)
47f670
47f670
* Mon Mar 12 2007 Tom Lane <tgl@redhat.com> 5.0.37-1
47f670
- Update to MySQL 5.0.37
47f670
Resolves: #231838
47f670
- Put client library into a separate mysql-libs RPM to reduce dependencies
47f670
Resolves: #205630
47f670
47f670
* Fri Feb  9 2007 Tom Lane <tgl@redhat.com> 5.0.33-1
47f670
- Update to MySQL 5.0.33
47f670
- Install band-aid fix for "view" regression test designed to fail after 2006
47f670
- Don't chmod -R the entire database directory tree on every startup
47f670
Related: #221085
47f670
- Fix unsafe use of install-info
47f670
Resolves: #223713
47f670
- Cope with new automake in F7
47f670
Resolves: #224171
47f670
47f670
* Thu Nov  9 2006 Tom Lane <tgl@redhat.com> 5.0.27-1
47f670
- Update to MySQL 5.0.27 (see CVE-2006-4031, CVE-2006-4226, CVE-2006-4227)
47f670
Resolves: #202247, #202675, #203427, #203428, #203432, #203434, #208641
47f670
- Fix init script to return status 1 on server start timeout
47f670
Resolves: #203910
47f670
- Move mysqldumpslow from base package to mysql-server
47f670
Resolves: #193559
47f670
- Adjust link options for BDB module
47f670
Resolves: #199368
47f670
47f670
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 5.0.22-2.1
47f670
- rebuild
47f670
47f670
* Sat Jun 10 2006 Tom Lane <tgl@redhat.com> 5.0.22-2
47f670
- Work around brew's tendency not to clean up failed builds completely,
47f670
  by adding code in mysql-testing.patch to kill leftover mysql daemons.
47f670
47f670
* Thu Jun  8 2006 Tom Lane <tgl@redhat.com> 5.0.22-1
47f670
- Update to MySQL 5.0.22 (fixes CVE-2006-2753)
47f670
- Install temporary workaround for gcc bug on s390x (bz #193912)
47f670
47f670
* Tue May  2 2006 Tom Lane <tgl@redhat.com> 5.0.21-2
47f670
- Fix bogus perl Requires for mysql-test
47f670
47f670
* Mon May  1 2006 Tom Lane <tgl@redhat.com> 5.0.21-1
47f670
- Update to MySQL 5.0.21
47f670
47f670
* Mon Mar 27 2006 Tom Lane <tgl@redhat.com> 5.0.18-4
47f670
- Modify multilib header hack to not break non-RH arches, per bug #181335
47f670
- Remove logrotate script, per bug #180639.
47f670
- Add a new mysql-test RPM to carry the regression test files;
47f670
  hack up test scripts as needed to make them run in /usr/share/mysql-test.
47f670
47f670
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 5.0.18-2.1
47f670
- bump again for double-long bug on ppc(64)
47f670
47f670
* Thu Feb  9 2006 Tom Lane <tgl@redhat.com> 5.0.18-2
47f670
- err-log option has been renamed to log-error, fix my.cnf and initscript
47f670
47f670
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 5.0.18-1.1
47f670
- rebuilt for new gcc4.1 snapshot and glibc changes
47f670
47f670
* Thu Jan  5 2006 Tom Lane <tgl@redhat.com> 5.0.18-1
47f670
- Update to MySQL 5.0.18
47f670
47f670
* Thu Dec 15 2005 Tom Lane <tgl@redhat.com> 5.0.16-4
47f670
- fix my_config.h for ppc platforms
47f670
47f670
* Thu Dec 15 2005 Tom Lane <tgl@redhat.com> 5.0.16-3
47f670
- my_config.h needs to guard against 64-bit platforms that also define the
47f670
  32-bit symbol
47f670
47f670
* Wed Dec 14 2005 Tom Lane <tgl@redhat.com> 5.0.16-2
47f670
- oops, looks like we want uname -i not uname -m
47f670
47f670
* Mon Dec 12 2005 Tom Lane <tgl@redhat.com> 5.0.16-1
47f670
- Update to MySQL 5.0.16
47f670
- Add EXCEPTIONS-CLIENT license info to the shipped documentation
47f670
- Make my_config.h architecture-independent for multilib installs;
47f670
  put the original my_config.h into my_config_$ARCH.h
47f670
- Add -fwrapv to CFLAGS so that gcc 4.1 doesn't break it
47f670
47f670
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
47f670
- rebuilt
47f670
47f670
* Mon Nov 14 2005 Tom Lane <tgl@redhat.com> 5.0.15-3
47f670
- Make stop script wait for daemon process to disappear (bz#172426)
47f670
47f670
* Wed Nov  9 2005 Tom Lane <tgl@redhat.com> 5.0.15-2
47f670
- Rebuild due to openssl library update.
47f670
47f670
* Thu Nov  3 2005 Tom Lane <tgl@redhat.com> 5.0.15-1
47f670
- Update to MySQL 5.0.15 (scratch build for now)
47f670
47f670
* Wed Oct  5 2005 Tom Lane <tgl@redhat.com> 4.1.14-1
47f670
- Update to MySQL 4.1.14
47f670
47f670
* Tue Aug 23 2005 Tom Lane <tgl@redhat.com> 4.1.12-3
47f670
- Use politically correct patch name.
47f670
47f670
* Tue Jul 12 2005 Tom Lane <tgl@redhat.com> 4.1.12-2
47f670
- Fix buffer overflow newly exposed in isam code; it's the same issue
47f670
  previously found in myisam, and not very exciting, but I'm tired of
47f670
  seeing build warnings.
47f670
47f670
* Mon Jul 11 2005 Tom Lane <tgl@redhat.com> 4.1.12-1
47f670
- Update to MySQL 4.1.12 (includes a fix for bz#158688, bz#158689)
47f670
- Extend mysql-test-ssl.patch to solve rpl_openssl test failure (bz#155850)
47f670
- Update mysql-lock-ssl.patch to match the upstream committed version
47f670
- Add --with-isam to re-enable the old ISAM table type, per bz#159262
47f670
- Add dependency on openssl-devel per bz#159569
47f670
- Remove manual.txt, as upstream decided not to ship it anymore;
47f670
  it was redundant with the mysql.info file anyway.
47f670
47f670
* Mon May  9 2005 Tom Lane <tgl@redhat.com> 4.1.11-4
47f670
- Include proper locking for OpenSSL in the server, per bz#155850
47f670
47f670
* Mon Apr 25 2005 Tom Lane <tgl@redhat.com> 4.1.11-3
47f670
- Enable openssl tests during build, per bz#155850
47f670
- Might as well turn on --disable-dependency-tracking
47f670
47f670
* Fri Apr  8 2005 Tom Lane <tgl@redhat.com> 4.1.11-2
47f670
- Avoid dependency on <asm/atomic.h>, cause it won't build anymore on ia64.
47f670
  This is probably a cleaner solution for bz#143537, too.
47f670
47f670
* Thu Apr  7 2005 Tom Lane <tgl@redhat.com> 4.1.11-1
47f670
- Update to MySQL 4.1.11 to fix bz#152911 as well as other issues
47f670
- Move perl-DBI, perl-DBD-MySQL dependencies to server package (bz#154123)
47f670
- Override configure thread library test to suppress HAVE_LINUXTHREADS check
47f670
- Fix BDB failure on s390x (bz#143537)
47f670
- At last we can enable "make test" on all arches
47f670
47f670
* Fri Mar 11 2005 Tom Lane <tgl@redhat.com> 4.1.10a-1
47f670
- Update to MySQL 4.1.10a to fix security vulnerabilities (bz#150868,
47f670
  for CAN-2005-0711, and bz#150871 for CAN-2005-0709, CAN-2005-0710).
47f670
47f670
* Sun Mar  6 2005 Tom Lane <tgl@redhat.com> 4.1.10-3
47f670
- Fix package Requires: interdependencies.
47f670
47f670
* Sat Mar  5 2005 Tom Lane <tgl@redhat.com> 4.1.10-2
47f670
- Need -fno-strict-aliasing in at least one place, probably more.
47f670
- Work around some C spec violations in mysql.
47f670
47f670
* Fri Feb 18 2005 Tom Lane <tgl@redhat.com> 4.1.10-1
47f670
- Update to MySQL 4.1.10.
47f670
47f670
* Sat Jan 15 2005 Tom Lane <tgl@redhat.com> 4.1.9-1
47f670
- Update to MySQL 4.1.9.
47f670
47f670
* Wed Jan 12 2005 Tom Lane <tgl@redhat.com> 4.1.7-10
47f670
- Don't assume /etc/my.cnf will specify pid-file (bz#143724)
47f670
47f670
* Wed Jan 12 2005 Tim Waugh <twaugh@redhat.com> 4.1.7-9
47f670
- Rebuilt for new readline.
47f670
47f670
* Tue Dec 21 2004 Tom Lane <tgl@redhat.com> 4.1.7-8
47f670
- Run make test on all archs except s390x (which seems to have a bdb issue)
47f670
47f670
* Mon Dec 13 2004 Tom Lane <tgl@redhat.com> 4.1.7-7
47f670
- Suppress someone's silly idea that libtool overhead can be skipped
47f670
47f670
* Sun Dec 12 2004 Tom Lane <tgl@redhat.com> 4.1.7-6
47f670
- Fix init script to not need a valid username for startup check (bz#142328)
47f670
- Fix init script to honor settings appearing in /etc/my.cnf (bz#76051)
47f670
- Enable SSL (bz#142032)
47f670
47f670
* Thu Dec  2 2004 Tom Lane <tgl@redhat.com> 4.1.7-5
47f670
- Add a restorecon to keep the mysql.log file in the right context (bz#143887)
47f670
47f670
* Tue Nov 23 2004 Tom Lane <tgl@redhat.com> 4.1.7-4
47f670
- Turn off old_passwords in default /etc/my.cnf file, for better compatibility
47f670
  with mysql 3.x clients (per suggestion from Joe Orton).
47f670
47f670
* Fri Oct 29 2004 Tom Lane <tgl@redhat.com> 4.1.7-3
47f670
- Handle ldconfig more cleanly (put a file in /etc/ld.so.conf.d/).
47f670
47f670
* Thu Oct 28 2004 Tom Lane <tgl@redhat.com> 4.1.7-2
47f670
- rebuild in devel branch
47f670
47f670
* Wed Oct 27 2004 Tom Lane <tgl@redhat.com> 4.1.7-1
47f670
- Update to MySQL 4.1.x.
47f670
47f670
* Tue Oct 12 2004 Tom Lane <tgl@redhat.com> 3.23.58-13
47f670
- fix security issues CAN-2004-0835, CAN-2004-0836, CAN-2004-0837
47f670
  (bugs #135372, 135375, 135387)
47f670
- fix privilege escalation on GRANT ALL ON `Foo\_Bar` (CAN-2004-0957)
47f670
47f670
* Wed Oct 06 2004 Tom Lane <tgl@redhat.com> 3.23.58-12
47f670
- fix multilib problem with mysqlbug and mysql_config
47f670
- adjust chkconfig priority per bug #128852
47f670
- remove bogus quoting per bug #129409 (MySQL 4.0 has done likewise)
47f670
- add sleep to mysql.init restart(); may or may not fix bug #133993
47f670
47f670
* Tue Oct 05 2004 Tom Lane <tgl@redhat.com> 3.23.58-11
47f670
- fix low-priority security issues CAN-2004-0388, CAN-2004-0381, CAN-2004-0457
47f670
  (bugs #119442, 125991, 130347, 130348)
47f670
- fix bug with dropping databases under recent kernels (bug #124352)
47f670
47f670
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com> 3.23.58-10
47f670
- rebuilt
47f670
47f670
* Sat Apr 17 2004 Warren Togami <wtogami@redhat.com> 3.23.58-9
47f670
- remove redundant INSTALL-SOURCE, manual.*
47f670
- compress manual.txt.bz2
47f670
- BR time
47f670
47f670
* Tue Mar 16 2004 Tom Lane <tgl@redhat.com> 3.23.58-8
47f670
- repair logfile attributes in %%files, per bug #102190
47f670
- repair quoting problem in mysqlhotcopy, per bug #112693
47f670
- repair missing flush in mysql_setpermission, per bug #113960
47f670
- repair broken error message printf, per bug #115165
47f670
- delete mysql user during uninstall, per bug #117017
47f670
- rebuilt
47f670
47f670
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
47f670
- rebuilt
47f670
47f670
* Tue Feb 24 2004 Tom Lane <tgl@redhat.com>
47f670
- fix chown syntax in mysql.init
47f670
- rebuild
47f670
47f670
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
47f670
- rebuilt
47f670
47f670
* Tue Nov 18 2003 Kim Ho <kho@redhat.com> 3.23.58-5
47f670
- update mysql.init to use anonymous user (UNKNOWN_MYSQL_USER) for
47f670
  pinging mysql server (#108779)
47f670
47f670
* Mon Oct 27 2003 Kim Ho <kho@redhat.com> 3.23.58-4
47f670
- update mysql.init to wait (max 10 seconds) for mysql server to
47f670
  start (#58732)
47f670
47f670
* Mon Oct 27 2003 Patrick Macdonald <patrickm@redhat.com> 3.23.58-3
47f670
- re-enable Berkeley DB support (#106832)
47f670
- re-enable ia64 testing
47f670
47f670
* Fri Sep 19 2003 Patrick Macdonald <patrickm@redhat.com> 3.23.58-2
47f670
- rebuilt
47f670
47f670
* Mon Sep 15 2003 Patrick Macdonald <patrickm@redhat.com> 3.23.58-1
47f670
- upgrade to 3.23.58 for security fix
47f670
47f670
* Tue Aug 26 2003 Patrick Macdonald <patrickm@redhat.com> 3.23.57-2
47f670
- rebuilt
47f670
47f670
* Wed Jul 02 2003 Patrick Macdonald <patrickm@redhat.com> 3.23.57-1
47f670
- revert to prior version of MySQL due to license incompatibilities
47f670
  with packages that link against the client.  The MySQL folks are
47f670
  looking into the issue.
47f670
47f670
* Wed Jun 18 2003 Patrick Macdonald <patrickm@redhat.com> 4.0.13-4
47f670
- restrict test on ia64 (temporary)
47f670
47f670
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com> 4.0.13-3
47f670
- rebuilt
47f670
47f670
* Thu May 29 2003 Patrick Macdonald <patrickm@redhat.com> 4.0.13-2
47f670
- fix filter-requires-mysql.sh with less restrictive for mysql-bench
47f670
47f670
* Wed May 28 2003 Patrick Macdonald <patrickm@redhat.com> 4.0.13-1
47f670
- update for MySQL 4.0
47f670
- back-level shared libraries available in mysqlclient10 package
47f670
47f670
* Fri May 09 2003 Patrick Macdonald <patrickm@redhat.com> 3.23.56-2
47f670
- add sql-bench package (#90110)
47f670
47f670
* Wed Mar 19 2003 Patrick Macdonald <patrickm@redhat.com> 3.23.56-1
47f670
- upgrade to 3.23.56 for security fixes
47f670
- remove patch for double-free (included in 3.23.56)
47f670
47f670
* Tue Feb 18 2003 Patrick Macdonald <patrickm@redhat.com> 3.23.54a-11
47f670
- enable thread safe client
47f670
- add patch for double free fix
47f670
47f670
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
47f670
- rebuilt
47f670
47f670
* Mon Jan 13 2003 Karsten Hopp <karsten@redhat.de> 3.23.54a-9
47f670
- disable checks on s390x
47f670
47f670
* Sat Jan  4 2003 Jeff Johnson <jbj@redhat.com> 3.23.54a-8
47f670
- use internal dep generator.
47f670
47f670
* Wed Jan  1 2003 Bill Nottingham <notting@redhat.com> 3.23.54a-7
47f670
- fix mysql_config on hammer
47f670
47f670
* Sun Dec 22 2002 Tim Powers <timp@redhat.com> 3.23.54a-6
47f670
- don't use rpms internal dep generator
47f670
47f670
* Tue Dec 17 2002 Elliot Lee <sopwith@redhat.com> 3.23.54a-5
47f670
- Push it into the build system
47f670
47f670
* Mon Dec 16 2002 Joe Orton <jorton@redhat.com> 3.23.54a-4
47f670
- upgrade to 3.23.54a for safe_mysqld fix
47f670
47f670
* Thu Dec 12 2002 Joe Orton <jorton@redhat.com> 3.23.54-3
47f670
- upgrade to 3.23.54 for latest security fixes
47f670
47f670
* Tue Nov 19 2002 Jakub Jelinek <jakub@redhat.com> 3.23.52-5
47f670
- Always include <errno.h> for errno
47f670
- Remove unpackaged files
47f670
47f670
* Tue Nov 12 2002 Florian La Roche <Florian.LaRoche@redhat.de>
47f670
- do not prereq userdel, not used at all
47f670
47f670
* Mon Sep  9 2002 Trond Eivind Glomsrd <teg@redhat.com> 3.23.52-4
47f670
- Use %%{_libdir}
47f670
- Add patch for x86-64
47f670
47f670
* Wed Sep  4 2002 Jakub Jelinek <jakub@redhat.com> 3.23.52-3
47f670
- rebuilt with gcc-3.2-7
47f670
47f670
* Thu Aug 29 2002 Trond Eivind Glomsrd <teg@redhat.com> 3.23.52-2
47f670
- Add --enable-local-infile to configure - a new option
47f670
  which doesn't default to the old behaviour (#72885)
47f670
47f670
* Fri Aug 23 2002 Trond Eivind Glomsrd <teg@redhat.com> 3.23.52-1
47f670
- 3.23.52. Fixes a minor security problem, various bugfixes.
47f670
47f670
* Sat Aug 10 2002 Elliot Lee <sopwith@redhat.com> 3.23.51-5
47f670
- rebuilt with gcc-3.2 (we hope)
47f670
47f670
* Mon Jul 22 2002 Trond Eivind Glomsrd <teg@redhat.com> 3.23.51-4
47f670
- rebuild
47f670
47f670
* Thu Jul 18 2002 Trond Eivind Glomsrd <teg@redhat.com> 3.23.51-3
47f670
- Fix #63543 and #63542
47f670
47f670
* Thu Jul 11 2002 Trond Eivind Glomsrd <teg@redhat.com> 3.23.51-2
47f670
- Turn off bdb on PPC(#68591)
47f670
- Turn off the assembly optimizations, for safety.
47f670
47f670
* Wed Jun 26 2002 Trond Eivind Glomsrd <teg@redhat.com> 3.23.51-1
47f670
- Work around annoying auto* thinking this is a crosscompile
47f670
- 3.23.51
47f670
47f670
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
47f670
- automated rebuild
47f670
47f670
* Mon Jun 10 2002 Trond Eivind Glomsrd <teg@redhat.com> 3.23.50-2
47f670
- Add dependency on perl-DBI and perl-DBD-MySQL (#66349)
47f670
47f670
* Thu May 30 2002 Trond Eivind Glomsrd <teg@redhat.com> 3.23.50-1
47f670
- 3.23.50
47f670
47f670
* Thu May 23 2002 Tim Powers <timp@redhat.com>
47f670
- automated rebuild
47f670
47f670
* Mon May 13 2002 Trond Eivind Glomsrd <teg@redhat.com> 3.23.49-4
47f670
- Rebuild
47f670
- Don't set CXX to gcc, it doesn't work anymore
47f670
- Exclude Alpha
47f670
47f670
* Mon Apr  8 2002 Trond Eivind Glomsrd <teg@redhat.com> 3.23.49-3
47f670
- Add the various .cnf examples as doc files to mysql-server (#60349)
47f670
- Don't include manual.ps, it's just 200 bytes with a URL inside (#60349)
47f670
- Don't include random files in /usr/share/mysql (#60349)
47f670
- langify (#60349)
47f670
47f670
* Thu Feb 21 2002 Trond Eivind Glomsrd <teg@redhat.com> 3.23.49-2
47f670
- Rebuild
47f670
47f670
* Sun Feb 17 2002 Trond Eivind Glomsrd <teg@redhat.com> 3.23.49-1
47f670
- 3.23.49
47f670
47f670
* Thu Feb 14 2002 Trond Eivind Glomsrd <teg@redhat.com> 3.23.48-2
47f670
- work around perl dependency bug.
47f670
47f670
* Mon Feb 11 2002 Trond Eivind Glomsrd <teg@redhat.com> 3.23.48-1
47f670
- 3.23.48
47f670
47f670
* Thu Jan 17 2002 Trond Eivind Glomsrd <teg@redhat.com> 3.23.47-4
47f670
- Use kill, not mysqladmin, to flush logs and shut down. Thus,
47f670
  an admin password can be set with no problems.
47f670
- Remove reload from init script
47f670
47f670
* Wed Jan 16 2002 Trond Eivind Glomsrd <teg@redhat.com> 3.23.47-3
47f670
- remove db3-devel from buildrequires,
47f670
  MySQL has had its own bundled copy since the mid thirties
47f670
47f670
* Sun Jan  6 2002 Trond Eivind Glomsrd <teg@redhat.com> 3.23.47-1
47f670
- 3.23.47
47f670
- Don't build for alpha, toolchain immature.
47f670
47f670
* Mon Dec  3 2001 Trond Eivind Glomsrd <teg@redhat.com> 3.23.46-1
47f670
- 3.23.46
47f670
- use -fno-rtti and -fno-exceptions, and set CXX to increase stability.
47f670
  Recommended by mysql developers.
47f670
47f670
* Sun Nov 25 2001 Trond Eivind Glomsrd <teg@redhat.com> 3.23.45-1
47f670
- 3.23.45
47f670
47f670
* Wed Nov 14 2001 Trond Eivind Glomsrd <teg@redhat.com> 3.23.44-2
47f670
- centralize definition of datadir in the initscript (#55873)
47f670
47f670
* Fri Nov  2 2001 Trond Eivind Glomsrd <teg@redhat.com> 3.23.44-1
47f670
- 3.23.44
47f670
47f670
* Thu Oct  4 2001 Trond Eivind Glomsrd <teg@redhat.com> 3.23.43-1
47f670
- 3.23.43
47f670
47f670
* Mon Sep 10 2001 Trond Eivind Glomsrd <teg@redhat.com> 3.23.42-1
47f670
- 3.23.42
47f670
- reenable innodb
47f670
47f670
* Tue Aug 14 2001 Trond Eivind Glomsrd <teg@redhat.com> 3.23.41-1
47f670
- 3.23.41 bugfix release
47f670
- disable innodb, to avoid the broken updates
47f670
- Use "mysqladmin flush_logs" instead of kill -HUP in logrotate
47f670
  script (#51711)
47f670
47f670
* Sat Jul 21 2001 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- 3.23.40, bugfix release
47f670
- Add zlib-devel to buildrequires:
47f670
47f670
* Fri Jul 20 2001 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- BuildRequires-tweaking
47f670
47f670
* Thu Jun 28 2001 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- Reenable test, but don't run them for s390, s390x or ia64
47f670
- Make /etc/my.cnf config(noplace). Same for /etc/logrotate.d/mysqld
47f670
47f670
* Thu Jun 14 2001 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- 3.23.29
47f670
- enable innodb
47f670
- enable assembly again
47f670
- disable tests for now...
47f670
47f670
* Tue May 15 2001 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- 3.23.38
47f670
- Don't use BDB on Alpha - no fast mutexes
47f670
47f670
* Tue Apr 24 2001 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- 3.23.37
47f670
- Add _GNU_SOURCE to the compile flags
47f670
47f670
* Wed Mar 28 2001 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- Make it obsolete our 6.2 PowerTools packages
47f670
- 3.23.36 bugfix release - fixes some security issues
47f670
  which didn't apply to our standard configuration
47f670
- Make "make test" part of the build process, except on IA64
47f670
  (it fails there)
47f670
47f670
* Tue Mar 20 2001 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- 3.23.35 bugfix release
47f670
- Don't delete the mysql user on uninstall
47f670
47f670
* Tue Mar 13 2001 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- 3.23.34a bugfix release
47f670
47f670
* Wed Feb  7 2001 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- added readline-devel to BuildRequires:
47f670
47f670
* Tue Feb  6 2001 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- small i18n-fixes to initscript (action needs $)
47f670
47f670
* Tue Jan 30 2001 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- make it shut down and rotate logs without using mysqladmin
47f670
  (from #24909)
47f670
47f670
* Mon Jan 29 2001 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- conflict with "MySQL"
47f670
47f670
* Tue Jan 23 2001 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- improve gettextizing
47f670
47f670
* Mon Jan 22 2001 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- 3.23.32
47f670
- fix logrotate script (#24589)
47f670
47f670
* Wed Jan 17 2001 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- gettextize
47f670
- move the items in Requires(post): to Requires: in preparation
47f670
  for an errata for 7.0 when 3.23.31 is released
47f670
- 3.23.31
47f670
47f670
* Tue Jan 16 2001 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- add the log file to the rpm database, and make it 0640
47f670
  (#24116)
47f670
- as above in logrotate script
47f670
- changes to the init sequence - put most of the data
47f670
  in /etc/my.cnf instead of hardcoding in the init script
47f670
- use /var/run/mysqld/mysqld.pid instead of
47f670
  /var/run/mysqld/pid
47f670
- use standard safe_mysqld
47f670
- shut down cleaner
47f670
47f670
* Mon Jan 08 2001 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- 3.23.30
47f670
- do an explicit chmod on /var/lib/mysql in post, to avoid
47f670
  any problems with broken permissons. There is a report
47f670
  of rm not changing this on its own (#22989)
47f670
47f670
* Mon Jan 01 2001 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- bzipped source
47f670
- changed from 85 to 78 in startup, so it starts before
47f670
  apache (which can use modules requiring mysql)
47f670
47f670
* Wed Dec 27 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- 3.23.29a
47f670
47f670
* Tue Dec 19 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- add requirement for new libstdc++, build for errata
47f670
47f670
* Mon Dec 18 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- 3.23.29
47f670
47f670
* Mon Nov 27 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- 3.23.28 (gamma)
47f670
- remove old patches, as they are now upstreamed
47f670
47f670
* Tue Nov 14 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- Add a requirement for a new glibc (#20735)
47f670
- build on IA64
47f670
47f670
* Wed Nov  1 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- disable more assembly
47f670
47f670
* Wed Nov  1 2000 Jakub Jelinek <jakub@redhat.com>
47f670
- fix mysql on SPARC (#20124)
47f670
47f670
* Tue Oct 31 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- 3.23.27
47f670
47f670
* Wed Oct 25 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- add patch for fixing bogus aliasing in mysql from Jakub,
47f670
  which should fix #18905 and #18620
47f670
47f670
* Mon Oct 23 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- check for negative niceness values, and negate it
47f670
  if present (#17899)
47f670
- redefine optflags on IA32 FTTB
47f670
47f670
* Wed Oct 18 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- 3.23.26, which among other fixes now uses mkstemp()
47f670
  instead of tempnam().
47f670
- revert changes made yesterday, the problem is now
47f670
  isolated
47f670
47f670
* Tue Oct 17 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- use the compat C++ compiler FTTB. Argh.
47f670
- add requirement of ncurses4 (see above)
47f670
47f670
* Sun Oct 01 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- 3.23.25
47f670
- fix shutdown problem (#17956)
47f670
47f670
* Tue Sep 26 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- Don't try to include no-longer-existing PUBLIC file
47f670
  as doc (#17532)
47f670
47f670
* Tue Sep 12 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- rename config file to /etc/my.cnf, which is what
47f670
  mysqld wants... doh. (#17432)
47f670
- include a changed safe_mysqld, so the pid file option
47f670
  works.
47f670
- make mysql dir world readable to they can access the
47f670
  mysql socket. (#17432)
47f670
- 3.23.24
47f670
47f670
* Wed Sep 06 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- 3.23.23
47f670
47f670
* Sun Aug 27 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- Add "|| :" to condrestart to avoid non-zero exit code
47f670
47f670
* Thu Aug 24 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- it's mysql.com, not mysql.org and use correct path to
47f670
  source (#16830)
47f670
47f670
* Wed Aug 16 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- source file from /etc/rc.d, not /etc/rd.d. Doh.
47f670
47f670
* Sun Aug 13 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- don't run ldconfig -n, it doesn't update ld.so.cache
47f670
  (#16034)
47f670
- include some missing binaries
47f670
- use safe_mysqld to start the server (request from
47f670
  mysql developers)
47f670
47f670
* Sat Aug 05 2000 Bill Nottingham <notting@redhat.com>
47f670
- condrestart fixes
47f670
47f670
* Tue Aug 01 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- 3.23.22. Disable the old patches, they're now in.
47f670
47f670
* Thu Jul 27 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- bugfixes in the initscript
47f670
- move the .so link to the devel package
47f670
47f670
* Wed Jul 19 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- rebuild due to glibc changes
47f670
47f670
* Tue Jul 18 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- disable compiler patch
47f670
- don't include info directory file
47f670
47f670
* Mon Jul 17 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- move back to /etc/rc.d/init.d
47f670
47f670
* Fri Jul 14 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- more cleanups in initscript
47f670
47f670
* Thu Jul 13 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- add a patch to work around compiler bug
47f670
  (from monty@mysql.com)
47f670
47f670
* Wed Jul 12 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- don't build the SQL daemon statically (glibc problems)
47f670
- fix the logrotate script - only flush log if mysql
47f670
  is running
47f670
- change the reloading procedure 
47f670
- remove icon - glint is obsolete a long time ago
47f670
47f670
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
47f670
- automatic rebuild
47f670
47f670
* Mon Jul 10 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- try the new compiler again
47f670
- build the SQL daemon statically
47f670
- add compile time support for complex charsets
47f670
- enable assembler
47f670
- more cleanups in initscript
47f670
47f670
* Sun Jul 09 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- use old C++ compiler
47f670
- Exclusivearch x86
47f670
47f670
* Sat Jul 08 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- move .so files to devel package
47f670
- more cleanups
47f670
- exclude sparc for now
47f670
47f670
* Wed Jul 05 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- 3.23.21
47f670
- remove file from /etc/sysconfig
47f670
- Fix initscript a bit - initialization of databases doesn't
47f670
  work yet
47f670
- specify the correct licenses
47f670
- include a /etc/my.conf (empty, FTTB)
47f670
- add conditional restart to spec file
47f670
47f670
* Sun Jul  2 2000 Jakub Jelinek <jakub@redhat.com>
47f670
- Rebuild with new C++
47f670
47f670
* Fri Jun 30 2000 Trond Eivind Glomsrd <teg@redhat.com>
47f670
- update to 3.23.20
47f670
- use %%configure, %%makeinstall, %%{_tmppath}, %%{_mandir},
47f670
  %%{_infodir}, /etc/init.d
47f670
- remove the bench package
47f670
- change some of the descriptions a little bit
47f670
- fix the init script
47f670
- some compile fixes
47f670
- specify mysql user
47f670
- use mysql uid 27 (postgresql is 26)
47f670
- don't build on ia64
47f670
47f670
* Sat Feb 26 2000 Jos Vos <jos@xos.nl>
47f670
- Version 3.22.32 release XOS.1 for LinuX/OS 1.8.0
47f670
- Upgrade from version 3.22.27 to 3.22.32.
47f670
- Do "make install" instead of "make install-strip", because "install -s"
47f670
  now appears to fail on various scripts.  Afterwards, strip manually.
47f670
- Reorganize subpackages, according to common Red Hat packages: the client
47f670
  program and shared library become the base package and the server and
47f670
  some accompanying files are now in a separate server package.  The
47f670
  server package implicitly requires the base package (shared library),
47f670
  but we have added a manual require tag anyway (because of the shared
47f670
  config file, and more).
47f670
- Rename the mysql-benchmark subpackage to mysql-bench.
47f670
47f670
* Mon Jan 31 2000 Jos Vos <jos@xos.nl>
47f670
- Version 3.22.27 release XOS.2 for LinuX/OS 1.7.1
47f670
- Add post(un)install scripts for updating ld.so.conf (client subpackage).
47f670
47f670
* Sun Nov 21 1999 Jos Vos <jos@xos.nl>
47f670
- Version 3.22.27 release XOS.1 for LinuX/OS 1.7.0
47f670
- Initial version.
47f670
- Some ideas borrowed from Red Hat Powertools 6.1, although this spec
47f670
  file is a full rewrite from scratch.