Blame SPECS/mariadb-connector-c.spec

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