Compare commits
No commits in common. "c8" and "c10s" have entirely different histories.
1
.fmf/version
Normal file
1
.fmf/version
Normal file
@ -0,0 +1 @@
|
||||
1
|
4
.gitignore
vendored
4
.gitignore
vendored
@ -1 +1,3 @@
|
||||
SOURCES/mariadb-connector-c-3.1.11-src.tar.gz
|
||||
/*/
|
||||
/*.rpm
|
||||
/*.tar.gz
|
||||
|
@ -1 +0,0 @@
|
||||
33c124ac6203aa8f936743d91f37f63aa13d8977 SOURCES/mariadb-connector-c-3.1.11-src.tar.gz
|
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-10
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
28
mariadb-connector-c.rpmlintrc
Normal file
28
mariadb-connector-c.rpmlintrc
Normal file
@ -0,0 +1,28 @@
|
||||
# THIS FILE SERVES FOR WHITELISTING RPMLINT ERRORS AND WARNINGS IN TASKOTRON
|
||||
# https://fedoraproject.org/wiki/Taskotron/Tasks/dist.rpmlint#Whitelisting_errors
|
||||
|
||||
# (same file in python3 package served as a great example)
|
||||
|
||||
|
||||
|
||||
# Spelling errors
|
||||
addFilter(r'spelling-error .*en_US.* (libmariadb|cnf|Testsuite|ctest) ')
|
||||
|
||||
# Debugsource
|
||||
addFilter(r'^mariadb-connector-c\d?-debugsource\.[^:]+: (E|W): no-documentation')
|
||||
|
||||
# Debuginfo
|
||||
addFilter(r'^mariadb-connector-c\d?-debuginfo\.[^:]+: (E|W): useless-provides debuginfo\(build-id\)')
|
||||
|
||||
# Missing documentation from subpackages
|
||||
addFilter(r'^mariadb-connector-c\d?-(devel|config|test)\.[^:]+: (E|W): no-documentation')
|
||||
|
||||
# No manual page for binary
|
||||
# Upstream issue tracker: https://jira.mariadb.org/browse/CONC-293
|
||||
addFilter(r'no-manual-page-for-binary (mariadb|mysql)_config$')
|
||||
|
||||
# Tests files are expected in /usr/share
|
||||
addFilter(r'arch-dependent-file-in-usr-share /usr/share/mariadb-connector-c/tests/')
|
||||
|
||||
# The provide is not needed
|
||||
addFilter(r'obsolete-not-provided mariadb-config')
|
@ -1,27 +1,37 @@
|
||||
# For deep debugging we need to build binaries with extra debug info
|
||||
%bcond_with debug
|
||||
# Enable building and packing of the testsuite
|
||||
%bcond_without testsuite
|
||||
|
||||
|
||||
|
||||
Name: mariadb-connector-c
|
||||
Version: 3.1.11
|
||||
Release: 2%{?with_debug:.debug}%{?dist}
|
||||
Version: 3.4.3
|
||||
Release: 1%{?with_debug:.debug}%{?dist}
|
||||
Summary: The MariaDB Native Client library (C driver)
|
||||
License: LGPLv2+
|
||||
Source: https://downloads.mariadb.org/interstitial/connector-c-%{version}/mariadb-connector-c-%{version}-src.tar.gz
|
||||
Source2: my.cnf
|
||||
License: LGPL-2.1-or-later
|
||||
Source: https://archive.mariadb.org/connector-c-%{version}/%{name}-%{version}-src.tar.gz
|
||||
Source2: my.cnf.in
|
||||
Source3: client.cnf
|
||||
Url: http://mariadb.org/
|
||||
# More information: https://mariadb.com/kb/en/mariadb/building-connectorc-from-source/
|
||||
|
||||
%if %{with testsuite}
|
||||
Patch1: testsuite.patch
|
||||
%endif
|
||||
|
||||
%if 0%{?flatpak}
|
||||
Requires: %{name}-config = %{version}-%{release}
|
||||
%else
|
||||
Requires: %{_sysconfdir}/my.cnf
|
||||
BuildRequires: zlib-devel cmake openssl-devel gcc-c++
|
||||
%endif
|
||||
|
||||
BuildRequires: gcc-c++ cmake openssl-devel zlib-devel libzstd-devel
|
||||
# Remote-IO plugin
|
||||
BuildRequires: libcurl-devel
|
||||
# auth_gssapi_client plugin
|
||||
BuildRequires: krb5-devel
|
||||
|
||||
Requires: ( mariadb >= 3:10.3.27 if mariadb )
|
||||
Requires: ( %{name}-config = %{version}-%{release} if %{name}-config )
|
||||
|
||||
%description
|
||||
The MariaDB Native Client library (C driver) is used to connect applications
|
||||
developed in C/C++ to MariaDB and MySQL databases.
|
||||
@ -31,17 +41,39 @@ developed in C/C++ to MariaDB and MySQL databases.
|
||||
%package devel
|
||||
Summary: Development files for mariadb-connector-c
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Recommends: %{name}-doc = %{version}-%{release}
|
||||
Requires: openssl-devel zlib-devel
|
||||
BuildRequires: multilib-rpm-config
|
||||
Conflicts: mysql-devel
|
||||
|
||||
Requires: ( mariadb-devel >= 3:10.3.27 if mariadb-devel )
|
||||
Conflicts: %{?fedora:community-}mysql-devel
|
||||
|
||||
%description devel
|
||||
Development files for mariadb-connector-c.
|
||||
Contains everything needed to build against libmariadb.so >=3 client library.
|
||||
|
||||
|
||||
%package doc
|
||||
Summary: Manual pages documenting API of the libmariadb.so library
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
BuildArch: noarch
|
||||
|
||||
%description doc
|
||||
Manual pages documenting API of the libmariadb.so library.
|
||||
|
||||
|
||||
|
||||
%if %{with testsuite}
|
||||
%package test
|
||||
Summary: Testsuite files for mariadb-connector-c
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: cmake
|
||||
Recommends: mariadb-server
|
||||
|
||||
%description test
|
||||
Testsuite files for mariadb-connector-c.
|
||||
Contains binaries and a prepared CMake ctest file.
|
||||
Requires running MariaDB / MySQL server with create database "test".
|
||||
%endif
|
||||
|
||||
|
||||
%package config
|
||||
Summary: Configuration files for packages that use /etc/my.cnf as a configuration file
|
||||
@ -58,61 +90,66 @@ and require this package, so the /etc/my.cnf file is present.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{version}-src
|
||||
%if %{with testsuite}
|
||||
%patch -P1 -p1
|
||||
%endif
|
||||
|
||||
# Remove unsused parts
|
||||
rm -r win zlib win-iconv
|
||||
rm -r win win-iconv external/zlib
|
||||
|
||||
|
||||
|
||||
%build
|
||||
%{set_build_flags}
|
||||
|
||||
# Override all optimization flags when making a debug build
|
||||
%{?with_debug: CFLAGS="$CFLAGS -O0 -g"}
|
||||
CXXFLAGS="$CFLAGS"
|
||||
export CFLAGS CXXFLAGS
|
||||
|
||||
# https://jira.mariadb.org/browse/MDEV-13836:
|
||||
# The server has (used to have for ages) some magic around the port number.
|
||||
# If it's 0, the default port value will use getservbyname("mysql", "tcp"), that is, whatever is written in /etc/services.
|
||||
# If it's a positive number, say, 3306, it will be 3306, no matter what /etc/services say.
|
||||
# I don't know if that behavior makes much sense, /etc/services wasn't supposed to be a system configuration file.
|
||||
|
||||
# The INSTALL_xxx macros have to be specified relative to CMAKE_INSTALL_PREFIX
|
||||
# The INSTALL_* macros have to be specified relative to CMAKE_INSTALL_PREFIX
|
||||
# so we can't use %%{_datadir} and so forth here.
|
||||
|
||||
%cmake . \
|
||||
-DCMAKE_BUILD_TYPE="%{?with_debug:Debug}%{!?with_debug:RelWithDebInfo}" \
|
||||
-DCMAKE_SYSTEM_PROCESSOR="%{_arch}" \
|
||||
-DCMAKE_COMPILE_WARNING_AS_ERROR=0 \
|
||||
\
|
||||
-DMARIADB_UNIX_ADDR=%{_sharedstatedir}/mysql/mysql.sock \
|
||||
-DMARIADB_PORT=3306 \
|
||||
\
|
||||
-DWITH_EXTERNAL_ZLIB=YES \
|
||||
-DWITH_EXTERNAL_ZLIB=ON \
|
||||
-DWITH_SSL=OPENSSL \
|
||||
-DWITH_MYSQLCOMPAT=ON \
|
||||
-DPLUGIN_CLIENT_ED25519=DYNAMIC \
|
||||
\
|
||||
-DINSTALL_LAYOUT=RPM \
|
||||
-DCMAKE_INSTALL_PREFIX="%{_prefix}" \
|
||||
-DINSTALL_BINDIR="bin" \
|
||||
-DINSTALL_LIBDIR="%{_lib}" \
|
||||
-DINSTALL_INCLUDEDIR="include/mysql" \
|
||||
-DINSTALL_PLUGINDIR="%{_lib}/mariadb/plugin" \
|
||||
-DINSTALL_PCDIR="%{_lib}/pkgconfig" \
|
||||
\
|
||||
-DWITH_UNITTEST=ON
|
||||
%if %{with testsuite}
|
||||
-DWITH_UNIT_TESTS=ON
|
||||
%endif
|
||||
|
||||
# Override all optimization flags when making a debug build
|
||||
%if %{with debug}
|
||||
CFLAGS="$CFLAGS -O0 -g"; export CFLAGS
|
||||
CXXFLAGS="$CXXFLAGS -O0 -g"; export CXXFLAGS
|
||||
FFLAGS="$FFLAGS -O0 -g"; export FFLAGS
|
||||
FCFLAGS="$FCFLAGS -O0 -g"; export FCFLAGS
|
||||
%endif
|
||||
|
||||
cmake -B %__cmake_builddir -LAH
|
||||
|
||||
#cmake -LAH
|
||||
|
||||
%make_build
|
||||
%cmake_build
|
||||
|
||||
sed -e 's|@SYSCONFDIR@|%{_sysconfdir}|' %{SOURCE2} > my.cnf
|
||||
|
||||
|
||||
%install
|
||||
%make_install
|
||||
%cmake_install
|
||||
|
||||
%multilib_fix_c_header --file %{_includedir}/mysql/mariadb_version.h
|
||||
|
||||
@ -124,7 +161,7 @@ ln -s mariadb_config %{buildroot}%{_bindir}/mysql_config
|
||||
ln -s mariadb_version.h %{buildroot}%{_includedir}/mysql/mysql_version.h
|
||||
|
||||
# Install config files
|
||||
install -D -p -m 0644 %{SOURCE2} %{buildroot}%{_sysconfdir}/my.cnf
|
||||
install -D -p -m 0644 my.cnf %{buildroot}%{_sysconfdir}/my.cnf
|
||||
install -D -p -m 0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/my.cnf.d/client.cnf
|
||||
|
||||
|
||||
@ -137,10 +174,9 @@ install -D -p -m 0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/my.cnf.d/client.cnf
|
||||
# - don't run mytap tests
|
||||
# - ignore the testsuite result for now. Enable tests now, fix them later.
|
||||
# Note: there must be a database called 'test' created for the testcases to be run
|
||||
pushd unittest/libmariadb/
|
||||
ctest || :
|
||||
popd
|
||||
|
||||
%if %{with testsuite}
|
||||
%ctest --test-dir %{__cmake_builddir}/unittest/libmariadb/ || :
|
||||
%endif
|
||||
|
||||
|
||||
%files
|
||||
@ -155,6 +191,12 @@ popd
|
||||
|
||||
|
||||
|
||||
%files doc
|
||||
# Library manual pages
|
||||
%{_mandir}/man3/{mariadb,mysql}_*.3*
|
||||
|
||||
|
||||
|
||||
%files devel
|
||||
# Binary which provides compiler info for software compiling against this library
|
||||
%{_bindir}/mariadb_config
|
||||
@ -172,7 +214,6 @@ popd
|
||||
%dir %{_includedir}/mysql
|
||||
%{_includedir}/mysql/*
|
||||
|
||||
%license COPYING.LIB
|
||||
|
||||
|
||||
%files config
|
||||
@ -182,57 +223,213 @@ popd
|
||||
|
||||
|
||||
|
||||
%changelog
|
||||
* Thu Dec 03 2020 Michal Schorm <mschorm@redhat.com> - 3.1.11-2
|
||||
- Require specific minimal version of the 'mariadb' package, if it is installed
|
||||
%if %{with testsuite}
|
||||
%files test
|
||||
%dir %{_datadir}/%{name}
|
||||
%{_datadir}/%{name}/*
|
||||
# Note: The following shared library should be moved from libdir to some sub-directory. e.g. libdir/mariadb/connector-c/tests
|
||||
%{_libdir}/libcctap.so
|
||||
%endif
|
||||
|
||||
* Tue Nov 10 2020 Michal Schorm <mschorm@redhat.com> - 3.1.11-1
|
||||
|
||||
# Opened issues on the upstream tracker:
|
||||
# https://jira.mariadb.org/browse/CONC-293
|
||||
# DESCRIPTION: add mysql_config and mariadb_config man page
|
||||
# IN_PROGRESS: upsteam plans to add it to 3.1 release
|
||||
# https://jira.mariadb.org/browse/CONC-436
|
||||
# DESCRIPTION: Make testsuite independent / portable
|
||||
# NEW: PR submitted, problem explained, waiting on upstream response
|
||||
|
||||
# Downstream issues:
|
||||
# Start running this package testsuite at the build time
|
||||
# It requires a running MariaDB server
|
||||
# mariadb-server package pulls in mariadb-connector-c as a dependency
|
||||
# Need to ensure, that the testsuite is ran against the newly build library, instead of the one from the pulled package
|
||||
# Need to ensure, that the testsuite will also run properly on 'fedpkg local' buid, not damaging the host machine
|
||||
|
||||
%changelog
|
||||
* Thu Jan 16 2025 Michal Schorm <mschorm@redhat.com> - 3.4.3-1
|
||||
- Rebase to 3.4.3
|
||||
|
||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 3.4.1-2
|
||||
- Bump release for October 2024 mass rebuild:
|
||||
Resolves: RHEL-64018
|
||||
|
||||
* Thu Aug 22 2024 Michal Schorm <mschorm@redhat.com> - 3.4.1-1
|
||||
- Rebase to 3.4.1
|
||||
|
||||
* Wed Jul 31 2024 Michal Schorm <mschorm@redhat.com> - 3.3.10-1
|
||||
- Rebase to 3.3.10
|
||||
|
||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 3.3.8-4
|
||||
- Bump release for June 2024 mass rebuild
|
||||
|
||||
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.8-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.8-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Tue Nov 28 2023 Michal Schorm <mschorm@redhat.com> - 3.3.8-1
|
||||
- Rebase to 3.3.8
|
||||
|
||||
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Tue May 23 2023 Michal Schorm <mschorm@redhat.com> - 3.3.5-1
|
||||
- Rebase to 3.3.5
|
||||
|
||||
* Tue Apr 18 2023 Michal Schorm <mschorm@redhat.com> - 3.3.4-1
|
||||
- Rebase to 3.3.4
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.7-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.7-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Sat Jun 11 2022 Michal Schorm <mschorm@redhat.com> - 3.2.7-1
|
||||
- Rebase to 3.2.7
|
||||
|
||||
* Wed Feb 16 2022 Michal Schorm <mschorm@redhat.com> - 3.2.6-1
|
||||
- Rebase to 3.2.6
|
||||
- Introduction of a new '*-doc' subpackage
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.13-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Tue Sep 14 2021 Sahana Prasad <sahana@redhat.com> - 3.1.13-3
|
||||
- Rebuilt with OpenSSL 3.0.0
|
||||
|
||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.13-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Fri May 14 2021 Michal Schorm <mschorm@redhat.com> - 3.1.13-1
|
||||
- Rebase to 3.1.13
|
||||
|
||||
* Wed Feb 24 2021 Michal Schorm <mschorm@redhat.com> - 3.1.12-1
|
||||
- Rebase to 3.1.12
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.11-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Wed Nov 04 2020 Michal Schorm <mschorm@redhat.com> - 3.1.11-1
|
||||
- Rebase to 3.1.11
|
||||
|
||||
* Fri Sep 18 2020 Lukas Javorsky <ljavorsk@redhat.com> - 3.1.10-1
|
||||
- Rebase to 3.1.10
|
||||
|
||||
* Tue Aug 04 2020 Michal Schorm <mschorm@redhat.com> - 3.1.9-5
|
||||
- Revert the CMake change regarding the in-source builds for now
|
||||
- %%cmake macro covers the %%{set_build_flags}, so they are not needed
|
||||
That also means, the debug buildchnages to the build flags must be done AFTER the
|
||||
%%cmake macro was used.
|
||||
- %%cmake macro also covers the CMAKE_INSTALL_PREFIX="%%{_prefix}" option
|
||||
- Default to %%cmake commands instead fo %%make commands
|
||||
- Update the WITH_UNITTEST macro to the one upstream use now
|
||||
- Introduce macro to enable / disable testusite (and building of the *-test subpackage)
|
||||
|
||||
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.9-4
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.9-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue Jul 14 2020 Michal Schorm <mschorm@redhat.com> - 3.1.9-2
|
||||
- Add explicit confict between mariadb-connector-c-devel and community-mysql-devel packages
|
||||
|
||||
* Wed Jun 24 2020 Lukas Javorsky <ljavorsk@redhat.com> - 3.1.9-1
|
||||
- Rebase to 3.1.9
|
||||
- Overlinking issues fixed by upstream in 3.1.3 release
|
||||
- Add explicit confict between mariadb-connector-c-devel and mysql-devel packages
|
||||
|
||||
* Thu May 14 2020 Lukas Javorsky <ljavorsk@redhat.com> - 3.1.8-1
|
||||
- Rebase to 3.1.8
|
||||
|
||||
* Mon Mar 16 2020 Michal Schorm <mschorm@redhat.com> - 3.1.7-2
|
||||
- Rebase to 3.1.7 latest git
|
||||
Fix for: https://jira.mariadb.org/browse/CONC-441
|
||||
|
||||
* Mon Feb 03 2020 Michal Schorm <mschorm@redhat.com> - 3.1.7-1
|
||||
- Rebase to 3.1.7
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.6-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Tue Dec 17 2019 Lukas Javorsky <ljavorsk@redhat.com> - 3.1.6-1
|
||||
- Rebase to 3.1.6
|
||||
|
||||
* Tue Nov 12 2019 Michal Schorm <mschorm@redhat.com> - 3.1.5-1
|
||||
- Rebase to 3.1.5
|
||||
|
||||
* Sun Nov 03 2019 Michal Schorm <mschorm@redhat.com> - 3.1.4-2
|
||||
- Fix for #1624533
|
||||
|
||||
* Wed Sep 18 2019 Lukas Javorsky <ljavorsk@redhat.com> - 3.1.4-1
|
||||
- Rebase to 3.1.4
|
||||
|
||||
* Wed Sep 11 2019 Michal Schorm <mschorm@redhat.com> - 3.1.3-3
|
||||
- Enable building of the ed25519 client plugin.
|
||||
It won't be shipped anymore by 'mariadb-server'
|
||||
|
||||
* Mon Aug 19 2019 Michal Schorm <mschorm@redhat.com> - 3.1.3-2
|
||||
- Extract the prepared testsuite to the standalone subpackage so it can be run outside of the buildroot
|
||||
|
||||
* Fri Aug 02 2019 Michal Schorm <mschorm@redhat.com> - 3.1.3-1
|
||||
- Rebase to 3.1.3 version
|
||||
- Patch upstreamed
|
||||
- Remove glob from library version, as per Fedora Packaging Guidelines
|
||||
|
||||
* Fri Jul 19 2019 Michal Schorm <mschorm@redhat.com> - 3.1.2-2
|
||||
- Use macro to set build flags
|
||||
|
||||
* Fri Jul 12 2019 Michal Schorm <mschorm@redhat.com> - 3.1.2-1
|
||||
- Rebase to 3.1.2
|
||||
- Introducing ED25519 plugin
|
||||
- Plugindir issues (from 3.0.9 release) fixed by upstream
|
||||
Resolves: #1691176
|
||||
- Rebase to 3.1 version
|
||||
- Disabling the ED25519 plugin
|
||||
- Plugindir patch upstreamed
|
||||
- Added debug build switch
|
||||
|
||||
* Tue May 21 2019 Michal Schorm <mschorm@redhat.com> - 3.0.10-2
|
||||
- Fix overlinking issues
|
||||
|
||||
* Wed May 15 2019 Michal Schorm <mschorm@redhat.com> - 3.0.10-1
|
||||
- Rebase to 3.0.10
|
||||
- Use macro for tarball name
|
||||
- Use macro to set build flags
|
||||
- Use macros for make commands
|
||||
- Remove the scriptlets non relevant for RHEL-8
|
||||
- Add info for the testsuite execution
|
||||
- Remove glob from library version
|
||||
- Remove info about the upstream issues
|
||||
- Remove scriplet; no longer needed
|
||||
|
||||
* Fri Mar 29 2019 Michal Schorm <mschorm@redhat.com> - 3.0.8-2
|
||||
* Fri Mar 29 2019 Michal Schorm <mschorm@redhat.com> - 3.0.9-3
|
||||
- Add "zlib-devel" requirement in "-devel" subpackage. MariaDB requires
|
||||
linking with "-lz", which will fail without the zlib library
|
||||
- Resolves: #1710471
|
||||
- Related: #1693966
|
||||
|
||||
* Mon Feb 18 2019 Michal Schorm <mschorm@redhat.com> - 3.0.9-2
|
||||
- Fix plugindir issues
|
||||
Resolves: #1624533
|
||||
|
||||
* Mon Feb 18 2019 Michal Schorm <mschorm@redhat.com> - 3.0.9-1
|
||||
- Rebase to 3.0.9
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.8-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Wed Jan 02 2019 Michal Schorm <mschorm@redhat.com> - 3.0.8-1
|
||||
- Rebase to 3.0.8
|
||||
|
||||
* Mon Dec 10 2018 Michal Schorm <mschorm@redhat.com> - 3.0.7-1
|
||||
* Mon Nov 19 2018 Michal Schorm <mschorm@redhat.com> - 3.0.7-1
|
||||
- Rebase to 3.0.7
|
||||
|
||||
* Tue Sep 04 2018 Michal Schorm <mschorm@redhat.com> - 3.0.6-2
|
||||
- Fix parallel installability of x86_64 and i686 devel package
|
||||
- Resolves: #1637031
|
||||
|
||||
* Fri Aug 03 2018 Michal Schorm <mschorm@redhat.com> - 3.0.6-1
|
||||
- Rebase to 3.0.6
|
||||
|
||||
* Tue Jul 17 2018 Honza Horak <hhorak@redhat.com> - 3.0.5-2
|
||||
* Tue Jul 17 2018 Honza Horak <hhorak@redhat.com> - 3.0.5-3
|
||||
- Add -config sub-package that delivers system-wide /etc/my.cnf and
|
||||
/etc/my.cnf.d directory, that other packages should use
|
||||
This package also obsoletes mariadb-config
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Fri Jun 08 2018 Michal Schorm <mschorm@redhat.com> - 3.0.5-1
|
||||
- Rebase to 3.0.5
|
||||
|
@ -7,5 +7,5 @@
|
||||
#
|
||||
# include all files from the config directory
|
||||
#
|
||||
!includedir /etc/my.cnf.d
|
||||
!includedir @SYSCONFDIR@/my.cnf.d
|
||||
|
10
plans/tier1-internal.fmf
Normal file
10
plans/tier1-internal.fmf
Normal file
@ -0,0 +1,10 @@
|
||||
summary: Internal Tier1 tests plan
|
||||
discover:
|
||||
how: fmf
|
||||
filter: 'tier: 1'
|
||||
url: https://pkgs.devel.redhat.com/git/tests/mariadb55
|
||||
execute:
|
||||
how: tmt
|
||||
adjust:
|
||||
enabled: false
|
||||
when: distro == centos-stream or distro == fedora
|
1
sources
Normal file
1
sources
Normal file
@ -0,0 +1 @@
|
||||
SHA512 (mariadb-connector-c-3.4.3-src.tar.gz) = 7eb05e43e49a36400b2f845e0fc3e9a7dc22068723e8838a09f5849ac35af7c88470712ec25fc8c3643a5a000bb70b61985a8a2df98b66b526dc72a4762af017
|
9
testsuite.patch
Normal file
9
testsuite.patch
Normal file
@ -0,0 +1,9 @@
|
||||
--- mariadb-connector-c-3.4.1-src/unittest/libmariadb/CMakeLists.txt 2024-08-03 16:38:02.000000000 +0200
|
||||
+++ mariadb-connector-c-3.4.1-src/unittest/libmariadb/CMakeLists.txt_patched 2024-08-22 23:52:11.773978003 +0200
|
||||
@@ -95,3 +95,6 @@ FOREACH(FILE ${ADDITIONAL_FILES})
|
||||
COPYONLY)
|
||||
ENDFOREACH()
|
||||
|
||||
+INSTALL(TARGETS ${API_TESTS} DESTINATION ${SHAREDIR}/mariadb-connector-c/tests COMPONENT Tests)
|
||||
+INSTALL(FILES ${CC_BINARY_DIR}/unittest/mytap/libcctap.so PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE DESTINATION ${INSTALL_LIBDIR} COMPONENT Tests)
|
||||
+INSTALL(FILES ${CC_BINARY_DIR}/unittest/libmariadb/CTestTestfile.cmake DESTINATION ${SHAREDIR}/mariadb-connector-c/tests COMPONENT Tests)
|
Loading…
Reference in New Issue
Block a user