import mariadb-connector-c-3.2.6-1.el9_0

This commit is contained in:
CentOS Sources 2022-04-05 05:42:55 -04:00 committed by Stepan Oksanichenko
parent 3b74b5b75c
commit 3f3e2417b3
3 changed files with 24 additions and 4 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
SOURCES/mariadb-connector-c-3.1.13-src.tar.gz
SOURCES/mariadb-connector-c-3.2.6-src.tar.gz

View File

@ -1 +1 @@
fbace9504a1ee9daa40ae203f619e858fe7156f2 SOURCES/mariadb-connector-c-3.1.13-src.tar.gz
5cdba92ad2eb72a81a0ec33003b8f591910d2eb2 SOURCES/mariadb-connector-c-3.2.6-src.tar.gz

View File

@ -14,8 +14,8 @@
Name: mariadb-connector-c
Version: 3.1.13
Release: 3%{?with_debug:.debug}%{?dist}
Version: 3.2.6
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}/%{name}-%{version}-src.tar.gz
@ -44,6 +44,7 @@ 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: %{?fedora:community-}mysql-devel
@ -53,6 +54,15 @@ 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
@ -184,6 +194,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
@ -234,6 +250,10 @@ popd
# Need to ensure, that the testsuite will also run properly on 'fedpkg local' buid, not damaging the host machine
%changelog
* Wed Feb 16 2022 Michal Schorm <mschorm@redhat.com> - 3.2.6-1
- Rebase to 3.2.6
- Introduction of a new '*-doc' subpackage
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 3.1.13-3
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
Related: rhbz#1991688