Blame SPECS/mariadb-connector-c.spec

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