Blame SPECS/mariadb-connector-c.spec

c79299
# For deep debugging we need to build binaries with extra debug info
c79299
%bcond_with     debug
c79299
# Enable building and packing of the testsuite
c79299
%bcond_without  testsuite
c79299
c79299
# Enable CMake in-source builds
c79299
#   This is is a workaround for the https://fedoraproject.org/wiki/Changes/CMake_to_do_out-of-source_builds
c79299
#   which reverts the CMake behaviour to before F33
c79299
#   The Change owners offered themselves to help fix the affected packages via ProvenPackager rights.
c79299
#   I'm generally in favor of this change, however when I tried to adapt it, I encountered a number of issues.
c79299
#   That's why I disabled it for now.
c79299
%global __cmake_in_source_build 1
c79299
c79299
c79299
c79299
Name:           mariadb-connector-c
cc8c33
Version:        3.2.6
cc8c33
Release:        1%{?with_debug:.debug}%{?dist}
c79299
Summary:        The MariaDB Native Client library (C driver)
c79299
License:        LGPLv2+
c79299
Source:         https://downloads.mariadb.org/interstitial/connector-c-%{version}/%{name}-%{version}-src.tar.gz
c79299
Source2:        my.cnf
c79299
Source3:        client.cnf
c79299
Url:            http://mariadb.org/
c79299
# More information: https://mariadb.com/kb/en/mariadb/building-connectorc-from-source/
c79299
c79299
%if %{with testsuite}
c79299
Patch1:         testsuite.patch
c79299
%endif
c79299
c79299
Requires:       %{_sysconfdir}/my.cnf
c79299
BuildRequires:  gcc-c++ cmake openssl-devel zlib-devel
c79299
# Remote-IO plugin
c79299
BuildRequires:  libcurl-devel
c79299
# auth_gssapi_client plugin
c79299
BuildRequires:  krb5-devel
c79299
c79299
%description
c79299
The MariaDB Native Client library (C driver) is used to connect applications
c79299
developed in C/C++ to MariaDB and MySQL databases.
c79299
c79299
c79299
c79299
%package devel
c79299
Summary:        Development files for mariadb-connector-c
c79299
Requires:       %{name} = %{version}-%{release}
cc8c33
Recommends:     %{name}-doc = %{version}-%{release}
c79299
Requires:       openssl-devel zlib-devel
c79299
BuildRequires:  multilib-rpm-config
c79299
Conflicts:      %{?fedora:community-}mysql-devel
c79299
c79299
%description devel
c79299
Development files for mariadb-connector-c.
c79299
Contains everything needed to build against libmariadb.so >=3 client library.
c79299
c79299
cc8c33
%package doc
cc8c33
Summary:        Manual pages documenting API of the libmariadb.so library
cc8c33
Requires:       %{name} = %{version}-%{release}
cc8c33
BuildArch:      noarch
cc8c33
cc8c33
%description doc
cc8c33
Manual pages documenting API of the libmariadb.so library.
cc8c33
cc8c33
c79299
c79299
%if %{with testsuite}
c79299
%package test
c79299
Summary:        Testsuite files for mariadb-connector-c
c79299
Requires:       %{name} = %{version}-%{release}
c79299
Requires:       cmake
c79299
Recommends:     mariadb-server
c79299
c79299
%description test
c79299
Testsuite files for mariadb-connector-c.
c79299
Contains binaries and a prepared CMake ctest file.
c79299
Requires running MariaDB / MySQL server with create database "test".
c79299
%endif
c79299
c79299
c79299
%package config
c79299
Summary:        Configuration files for packages that use /etc/my.cnf as a configuration file
c79299
BuildArch:      noarch
c79299
Obsoletes:      mariadb-config <= 3:10.3.8-4
c79299
c79299
%description config
c79299
This package delivers /etc/my.cnf that includes other configuration files
c79299
from the /etc/my.cnf.d directory and ships this directory as well.
c79299
Other packages should only put their files into /etc/my.cnf.d directory
c79299
and require this package, so the /etc/my.cnf file is present.
c79299
c79299
c79299
c79299
%prep
c79299
%setup -q -n %{name}-%{version}-src
c79299
%if %{with testsuite}
c79299
%patch1 -p1
c79299
%endif
c79299
c79299
# Remove unsused parts
c79299
rm -r win win-iconv zlib
c79299
c79299
c79299
c79299
%build
c79299
# https://jira.mariadb.org/browse/MDEV-13836:
c79299
#   The server has (used to have for ages) some magic around the port number.
c79299
#   If it's 0, the default port value will use getservbyname("mysql", "tcp"), that is, whatever is written in /etc/services.
c79299
#   If it's a positive number, say, 3306, it will be 3306, no matter what /etc/services say.
c79299
#   I don't know if that behavior makes much sense, /etc/services wasn't supposed to be a system configuration file.
c79299
c79299
# The INSTALL_* macros have to be specified relative to CMAKE_INSTALL_PREFIX
c79299
# so we can't use %%{_datadir} and so forth here.
c79299
c79299
%cmake . \
c79299
       -DCMAKE_BUILD_TYPE="%{?with_debug:Debug}%{!?with_debug:RelWithDebInfo}" \
c79299
       -DCMAKE_SYSTEM_PROCESSOR="%{_arch}" \
c79299
\
c79299
       -DMARIADB_UNIX_ADDR=%{_sharedstatedir}/mysql/mysql.sock \
c79299
       -DMARIADB_PORT=3306 \
c79299
\
c79299
       -DWITH_EXTERNAL_ZLIB=ON \
c79299
       -DWITH_SSL=OPENSSL \
c79299
       -DWITH_MYSQLCOMPAT=ON \
c79299
       -DPLUGIN_CLIENT_ED25519=DYNAMIC \
c79299
\
c79299
       -DINSTALL_LAYOUT=RPM \
c79299
       -DINSTALL_BINDIR="bin" \
c79299
       -DINSTALL_LIBDIR="%{_lib}" \
c79299
       -DINSTALL_INCLUDEDIR="include/mysql" \
c79299
       -DINSTALL_PLUGINDIR="%{_lib}/mariadb/plugin" \
c79299
       -DINSTALL_PCDIR="%{_lib}/pkgconfig" \
c79299
\
c79299
%if %{with testsuite}
c79299
       -DWITH_UNIT_TESTS=ON
c79299
%endif
c79299
c79299
# Override all optimization flags when making a debug build
c79299
%if %{with debug}
c79299
CFLAGS="$CFLAGS     -O0 -g"; export CFLAGS
c79299
CXXFLAGS="$CXXFLAGS -O0 -g"; export CXXFLAGS
c79299
FFLAGS="$FFLAGS     -O0 -g"; export FFLAGS
c79299
FCFLAGS="$FCFLAGS   -O0 -g"; export FCFLAGS
c79299
%endif
c79299
c79299
cmake -B %__cmake_builddir -LAH
c79299
c79299
%cmake_build
c79299
c79299
c79299
c79299
%install
c79299
%cmake_install
c79299
c79299
%multilib_fix_c_header --file %{_includedir}/mysql/mariadb_version.h
c79299
c79299
# Remove static linked libraries and symlinks to them
c79299
rm %{buildroot}%{_libdir}/lib*.a
c79299
c79299
# Add a compatibility symlinks
c79299
ln -s mariadb_config %{buildroot}%{_bindir}/mysql_config
c79299
ln -s mariadb_version.h %{buildroot}%{_includedir}/mysql/mysql_version.h
c79299
c79299
# Install config files
c79299
install -D -p -m 0644 %{SOURCE2} %{buildroot}%{_sysconfdir}/my.cnf
c79299
install -D -p -m 0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/my.cnf.d/client.cnf
c79299
c79299
c79299
c79299
%check
c79299
# Check the generated configuration on the actual machine
c79299
%{buildroot}%{_bindir}/mariadb_config
c79299
c79299
# Run the unit tests
c79299
# - don't run mytap tests
c79299
# - ignore the testsuite result for now. Enable tests now, fix them later.
c79299
# Note: there must be a database called 'test' created for the testcases to be run
c79299
%if %{with testsuite}
c79299
pushd unittest/libmariadb/
c79299
%ctest || :
c79299
popd
c79299
%endif
c79299
c79299
c79299
%files
c79299
%{_libdir}/libmariadb.so.3
c79299
c79299
%dir %{_libdir}/mariadb
c79299
%dir %{_libdir}/mariadb/plugin
c79299
%{_libdir}/mariadb/plugin/*
c79299
c79299
%doc README
c79299
%license COPYING.LIB
c79299
c79299
c79299
cc8c33
%files doc
cc8c33
# Library manual pages
cc8c33
%{_mandir}/man3/{mariadb,mysql}_*.3.*
cc8c33
cc8c33
cc8c33
c79299
%files devel
c79299
# Binary which provides compiler info for software compiling against this library
c79299
%{_bindir}/mariadb_config
c79299
%{_bindir}/mysql_config
c79299
c79299
# Symlinks to the versioned library
c79299
%{_libdir}/libmariadb.so
c79299
%{_libdir}/libmysqlclient.so
c79299
%{_libdir}/libmysqlclient_r.so
c79299
c79299
# Pkgconfig
c79299
%{_libdir}/pkgconfig/libmariadb.pc
c79299
c79299
# Header files
c79299
%dir %{_includedir}/mysql
c79299
%{_includedir}/mysql/*
c79299
c79299
c79299
c79299
%files config
c79299
%dir %{_sysconfdir}/my.cnf.d
c79299
%config(noreplace) %{_sysconfdir}/my.cnf
c79299
%config(noreplace) %{_sysconfdir}/my.cnf.d/client.cnf
c79299
c79299
c79299
c79299
%if %{with testsuite}
c79299
%files test
c79299
%dir %{_datadir}/%{name}
c79299
%{_datadir}/%{name}/*
c79299
%{_libdir}/libcctap.so
c79299
%endif
c79299
c79299
c79299
# Opened issues on the upstream tracker:
c79299
#   https://jira.mariadb.org/browse/CONC-293
c79299
#      DESCRIPTION: add mysql_config and mariadb_config man page
c79299
#      IN_PROGRESS: upsteam plans to add it to 3.1 release
c79299
#   https://jira.mariadb.org/browse/CONC-436
c79299
#      DESCRIPTION: Make testsuite independent / portable
c79299
#      NEW:         PR submitted, problem explained, waiting on upstream response
c79299
c79299
# Downstream issues:
c79299
#   Start running this package testsuite at the build time
c79299
#      It requires a running MariaDB server
c79299
#         mariadb-server package pulls in mariadb-connector-c as a dependency
c79299
#         Need to ensure, that the testsuite is ran against the newly build library, instead of the one from the pulled package
c79299
#      Need to ensure, that the testsuite will also run properly on 'fedpkg local' buid, not damaging the host machine
c79299
c79299
%changelog
cc8c33
* Wed Feb 16 2022 Michal Schorm <mschorm@redhat.com> - 3.2.6-1
cc8c33
- Rebase to 3.2.6
cc8c33
- Introduction of a new '*-doc' subpackage
cc8c33
c79299
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 3.1.13-3
c79299
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
c79299
  Related: rhbz#1991688
c79299
c79299
* Wed Jun 16 2021 Mohan Boddu <mboddu@redhat.com> - 3.1.13-2
c79299
- Rebuilt for RHEL 9 BETA for openssl 3.0
c79299
  Related: rhbz#1971065
c79299
c79299
* Fri May 14 2021 Michal Schorm <mschorm@redhat.com> - 3.1.13-1
c79299
- Rebase to 3.1.13
c79299
c79299
* Wed Apr 28 2021 Michal Schorm <mschorm@redhat.com> - 3.1.12-3
c79299
- Fix package conflicts
c79299
c79299
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 3.1.12-2
c79299
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
c79299
c79299
* Wed Feb 24 2021 Michal Schorm <mschorm@redhat.com> - 3.1.12-1
c79299
- Rebase to 3.1.12
c79299
c79299
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.11-2
c79299
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
c79299
c79299
* Wed Nov 04 2020 Michal Schorm <mschorm@redhat.com> - 3.1.11-1
c79299
- Rebase to 3.1.11
c79299
c79299
* Fri Sep 18 2020 Lukas Javorsky <ljavorsk@redhat.com> - 3.1.10-1
c79299
- Rebase to 3.1.10
c79299
c79299
* Tue Aug 04 2020 Michal Schorm <mschorm@redhat.com> - 3.1.9-5
c79299
- Revert the CMake change regarding the in-source builds for now
c79299
- %%cmake macro covers the %%{set_build_flags}, so they are not needed
c79299
  That also means, the debug buildchnages to the build flags must be done AFTER the
c79299
  %%cmake macro was used.
c79299
- %%cmake macro also covers the CMAKE_INSTALL_PREFIX="%%{_prefix}" option
c79299
- Default to %%cmake commands instead fo %%make commands
c79299
- Update the WITH_UNITTEST macro to the one upstream use now
c79299
- Introduce macro to enable / disable testusite (and building of the *-test subpackage)
c79299
c79299
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.9-4
c79299
- Second attempt - Rebuilt for
c79299
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
c79299
c79299
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.9-3
c79299
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
c79299
c79299
* Tue Jul 14 2020 Michal Schorm <mschorm@redhat.com> - 3.1.9-2
c79299
- Add explicit confict between mariadb-connector-c-devel and community-mysql-devel packages
c79299
c79299
* Wed Jun 24 2020 Lukas Javorsky <ljavorsk@redhat.com> - 3.1.9-1
c79299
- Rebase to 3.1.9
c79299
c79299
* Thu May 14 2020 Lukas Javorsky <ljavorsk@redhat.com> - 3.1.8-1
c79299
- Rebase to 3.1.8
c79299
c79299
* Mon Mar 16 2020 Michal Schorm <mschorm@redhat.com> - 3.1.7-2
c79299
- Rebase to 3.1.7 latest git
c79299
  Fix for: https://jira.mariadb.org/browse/CONC-441
c79299
c79299
* Mon Feb 03 2020 Michal Schorm <mschorm@redhat.com> - 3.1.7-1
c79299
- Rebase to 3.1.7
c79299
c79299
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.6-2
c79299
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
c79299
c79299
* Tue Dec 17 2019 Lukas Javorsky <ljavorsk@redhat.com> - 3.1.6-1
c79299
- Rebase to 3.1.6
c79299
c79299
* Tue Nov 12 2019 Michal Schorm <mschorm@redhat.com> - 3.1.5-1
c79299
- Rebase to 3.1.5
c79299
c79299
* Sun Nov 03 2019 Michal Schorm <mschorm@redhat.com> - 3.1.4-2
c79299
- Fix for #1624533
c79299
c79299
* Wed Sep 18 2019 Lukas Javorsky <ljavorsk@redhat.com> - 3.1.4-1
c79299
- Rebase to 3.1.4
c79299
c79299
* Wed Sep 11 2019 Michal Schorm <mschorm@redhat.com> - 3.1.3-3
c79299
- Enable building of the ed25519 client plugin.
c79299
  It won't be shipped anymore by 'mariadb-server'
c79299
c79299
* Mon Aug 19 2019 Michal Schorm <mschorm@redhat.com> - 3.1.3-2
c79299
- Extract the prepared testsuite to the standalone subpackage so it can be run outside of the buildroot
c79299
c79299
* Fri Aug 02 2019 Michal Schorm <mschorm@redhat.com> - 3.1.3-1
c79299
- Rebase to 3.1.3 version
c79299
- Patch upstreamed
c79299
- Remove glob from library version, as per Fedora Packaging Guidelines
c79299
c79299
* Fri Jul 19 2019 Michal Schorm <mschorm@redhat.com> - 3.1.2-2
c79299
- Use macro to set build flags
c79299
c79299
* Fri Jul 12 2019 Michal Schorm <mschorm@redhat.com> - 3.1.2-1
c79299
- Rebase to 3.1 version
c79299
- Disabling the ED25519 plugin
c79299
- Plugindir patch upstreamed
c79299
- Added debug build switch
c79299
c79299
* Tue May 21 2019 Michal Schorm <mschorm@redhat.com> - 3.0.10-2
c79299
- Fix overlinking issues
c79299
c79299
* Wed May 15 2019 Michal Schorm <mschorm@redhat.com> - 3.0.10-1
c79299
- Rebase to 3.0.10
c79299
- Remove scriplet; no longer needed
c79299
c79299
* Fri Mar 29 2019 Michal Schorm <mschorm@redhat.com> - 3.0.9-3
c79299
- Add "zlib-devel" requirement in "-devel" subpackage. MariaDB requires
c79299
  linking with "-lz", which will fail without the zlib library
c79299
- Related: #1693966
c79299
c79299
* Mon Feb 18 2019 Michal Schorm <mschorm@redhat.com> - 3.0.9-2
c79299
- Fix plugindir issues
c79299
  Resolves: #1624533
c79299
c79299
* Mon Feb 18 2019 Michal Schorm <mschorm@redhat.com> - 3.0.9-1
c79299
- Rebase to 3.0.9
c79299
c79299
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.8-2
c79299
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
c79299
c79299
* Wed Jan 02 2019 Michal Schorm <mschorm@redhat.com> - 3.0.8-1
c79299
- Rebase to 3.0.8
c79299
c79299
* Mon Nov 19 2018 Michal Schorm <mschorm@redhat.com> - 3.0.7-1
c79299
- Rebase to 3.0.7
c79299
c79299
* Tue Sep 04 2018 Michal Schorm <mschorm@redhat.com> - 3.0.6-2
c79299
- Fix parallel installability of x86_64 and i686 devel package
c79299
c79299
* Fri Aug 03 2018 Michal Schorm <mschorm@redhat.com> - 3.0.6-1
c79299
- Rebase to 3.0.6
c79299
c79299
* Tue Jul 17 2018 Honza Horak <hhorak@redhat.com> - 3.0.5-3
c79299
- Add -config sub-package that delivers system-wide /etc/my.cnf and
c79299
  /etc/my.cnf.d directory, that other packages should use
c79299
  This package also obsoletes mariadb-config
c79299
c79299
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.5-2
c79299
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
c79299
c79299
* Fri Jun 08 2018 Michal Schorm <mschorm@redhat.com> - 3.0.5-1
c79299
- Rebase to 3.0.5
c79299
c79299
* Thu Apr 26 2018 Michal Schorm <mschorm@redhat.com> - 3.0.4-1
c79299
- Rebase to 3.0.4
c79299
c79299
* Mon Apr 23 2018 Michal Schorm <mschorm@redhat.com> - 3.0.3-4
c79299
- Further fix of the '--plugindir' output from the config binary
c79299
  Realted: #1569159
c79299
c79299
* Wed Mar 21 2018 Richard W.M. Jones <rjones@redhat.com> - 3.0.3-3
c79299
- Fix plugin install directory (INSTALL_PLUGINDIR not PLUGIN_INSTALL_DIR).
c79299
c79299
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.3-2
c79299
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
c79299
c79299
* Fri Jan 19 2018 Michal Schorm <mschorm@redhat.com> - 3.0.3-1
c79299
- Rebase to 3.0.3
c79299
c79299
* Mon Nov 27 2017 Honza Horak <hhorak@redhat.com> - 3.0.2-21
c79299
- Remove unneeded dependency on xmlto
c79299
c79299
* Tue Nov 14 2017 Pavel Raiskup <praiskup@redhat.com> - 3.0.2-19
c79299
- drop misleading provides
c79299
c79299
* Wed Nov 08 2017 Michal Schorm <mschorm@redhat.com> - 3.0.2-19
c79299
- Move the scriptlet to the correct package
c79299
c79299
* Thu Nov 02 2017 Michal Schorm <mschorm@redhat.com> - 3.0.2-18
c79299
- Fix typo in require
c79299
c79299
* Wed Nov 01 2017 Michal Schorm <mschorm@redhat.com> - 3.0.2-17
c79299
- Use correct require for OpenSSL
c79299
c79299
* Wed Nov 01 2017 Merlin Mathesius <mmathesi@redhat.com> - 3.0.2-16
c79299
- Correct typo in spec file conditional
c79299
c79299
* Tue Oct 31 2017 Merlin Mathesius <mmathesi@redhat.com> - 3.0.2-15
c79299
- Cleanup spec file conditionals
c79299
c79299
* Tue Oct 31 2017 Michal Schorm <mschorm@redhat.com> - 3.0.2-14
c79299
- Remove Requires for openssl. Managed by RPM.
c79299
c79299
* Mon Oct 30 2017 Michal Schorm <mschorm@redhat.com> - 3.0.2-13
c79299
- Update scriplet dealing with symlinks as Guidelines suggests
c79299
  Related: #1501933
c79299
c79299
* Thu Oct 26 2017 Michal Schorm <mschorm@redhat.com> - 3.0.2-12
c79299
- Move library directly to libdir, don't create any symlinks to directories
c79299
- Update scritplets, so they only check for old symlinks to directories
c79299
  Related: #1501933
c79299
- Add 'Conflicts' with mariadb package on F<28
c79299
  Related: #1506441
c79299
c79299
* Mon Oct 09 2017 Michal Schorm <mschorm@redhat.com> - 3.0.2-11
c79299
- Fix ldconfig path
c79299
c79299
* Wed Oct 04 2017 Michal Schorm <mschorm@redhat.com> - 3.0.2-10
c79299
- Add scriptlets to handle errors in /usr/lib64/ created by older versions
c79299
  of mariadb and mariadb-connector-c pakages
c79299
c79299
* Wed Sep 20 2017 Michal Schorm <mschorm@redhat.com> - 3.0.2-9
c79299
- Add symlinks so more packages will build succesfully
c79299
- Change libdir from .../lib64/mariadb to mysql
c79299
  Related: #1497234
c79299
c79299
* Wed Sep 13 2017 Michal Schorm <mschorm@redhat.com> - 3.0.2-7
c79299
- Move header files to the same location, as they would be in mariadb-server
c79299
- Add provides "libmysqlclient.so"
c79299
c79299
* Tue Sep 05 2017 Honza Horak <hhorak@redhat.com> - 3.0.2-5
c79299
- Remove a symlink /usr/lib64/mysql that conflicts with mariadb-libs
c79299
c79299
* Mon Aug 14 2017 Honza Horak <hhorak@redhat.com> - 3.0.2-4
c79299
- Add compatibility symlinks
c79299
c79299
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.2-3
c79299
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
c79299
c79299
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.2-2
c79299
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
c79299
c79299
* Wed Jun 07 2017 Michal Schorm <mschorm@redhat.com> - 3.0.2-1
c79299
- Rebase to version 3.0.2
c79299
- Library libmariadb.so.3 introduced
c79299
- Plugin Remote-IO enabled
c79299
c79299
* Wed Jun 07 2017 Michal Schorm <mschorm@redhat.com> - 2.3.3-1
c79299
- Rebase to version 2.3.3
c79299
- Patch dropped, solved by upstream; https://jira.mariadb.org/browse/CONC-231
c79299
c79299
* Tue Feb 07 2017 Michal Schorm <mschorm@redhat.com> - 2.3.2-2
c79299
- Fix based on output from RPMLint in previous version
c79299
c79299
* Tue Jan 24 2017 Michal Schorm <mschorm@redhat.com> - 2.3.2-1
c79299
- Rebase to version 2.3.2, patch needed (fixed by upstream in later versions)
c79299
- Plugin dir moved from /libdir/plugin to /libdir/mariadb/plugin
c79299
c79299
* Thu Oct 27 2016 Michal Schorm <mschorm@redhat.com> - 2.3.1-3
c79299
- Fixed ownership of {_libdir}/mariadb (this dir must me owned by package)
c79299
- Fixed ownership of {_sysconfigdir}/ld.so.conf.d (this dir must me owned by package)
c79299
- Fixed redundnace on lines with {_sysconfigdir}/ld.so.conf.d
c79299
- Fixed ownership of {_bindir} (only one program is owned, so let's be accurate)
c79299
- Some comments added, for me and future maintainers
c79299
c79299
* Mon Oct 17 2016 Michal Schorm <mschorm@redhat.com> - 2.3.1-2
c79299
- Fixed ownership of {_libdir}/mariadb directory and cosmetic specfile changes
c79299
c79299
* Tue Sep 13 2016 Michal Schorm <mschorm@redhat.com> - 2.3.1-1
c79299
- Rebase to version 2.3.1
c79299
c79299
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.0-2
c79299
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
c79299
c79299
* Thu Jul 23 2015 Matej Mužila <mmuzila@redhat.com> - 2.1.0-1
c79299
- Rebase to version 2.1.0
c79299
c79299
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.0-3
c79299
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
c79299
c79299
* Wed Sep 24 2014 Matej Mužila <mmuzila@redhat.com> - 2.0.0-2
c79299
- Fixed html IDs in documentation
c79299
c79299
* Tue Aug 26 2014 Matej Mužila <mmuzila@redhat.com> - 2.0.0-2
c79299
- Initial version for 2.0.0