2016-10-18 11:28:09 +00:00
|
|
|
Name: mariadb-connector-c
|
2017-01-23 23:00:42 +00:00
|
|
|
Version: 2.3.2
|
|
|
|
Release: 1%{?dist}
|
2016-10-18 11:28:09 +00:00
|
|
|
Summary: The MariaDB Native Client library (C driver)
|
|
|
|
Group: Applications/Databases
|
|
|
|
License: LGPLv2+
|
2017-01-23 23:00:42 +00:00
|
|
|
Source: http://mirror.hosting90.cz/mariadb/connector-c-%{version}/mariadb-connector-c-%{version}-src.tar.gz
|
|
|
|
Url: http://mariadb.org/
|
2016-10-18 11:28:09 +00:00
|
|
|
BuildRequires: zlib-devel cmake openssl-devel
|
2014-09-24 10:54:24 +00:00
|
|
|
|
2017-01-23 23:00:42 +00:00
|
|
|
# Patch only for version 2.3.2. The issue on Big endian architectures has been solved by upstream and fixed in all later relases.
|
|
|
|
Patch1: v2-3-2.patch
|
|
|
|
|
2014-09-24 10:54:24 +00:00
|
|
|
%description
|
|
|
|
The MariaDB Native Client library (C driver) is used to connect applications
|
|
|
|
developed in C/C++ to MariaDB and MySQL databases.
|
|
|
|
|
|
|
|
%package devel
|
2016-10-18 11:28:09 +00:00
|
|
|
Summary: Development files for mariadb-connector-c.
|
|
|
|
Group: Development/Libraries
|
|
|
|
BuildRequires: xmlto
|
2015-07-23 13:53:10 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2014-09-24 10:54:24 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
Development files for mariadb-connector-c.
|
|
|
|
|
2016-10-18 11:28:09 +00:00
|
|
|
|
|
|
|
|
2014-09-24 10:54:24 +00:00
|
|
|
%prep
|
2015-07-23 13:53:10 +00:00
|
|
|
%setup -q -n mariadb-connector-c-%{version}-src
|
2017-01-23 23:00:42 +00:00
|
|
|
%patch1 -p1
|
2014-09-24 10:54:24 +00:00
|
|
|
|
|
|
|
%build
|
2015-07-23 13:53:10 +00:00
|
|
|
%cmake \
|
|
|
|
.\
|
|
|
|
-DMYSQL_UNIX_ADDR=/var/lib/mysql/mysql.sock\
|
|
|
|
-DWITH_EXTERNAL_ZLIB=ON\
|
|
|
|
-DPREFIX_INSTALL_DIR="/"\
|
|
|
|
-DCMAKE_SYSTEM_PROCESSOR="%{_arch}"\
|
2017-01-23 23:00:42 +00:00
|
|
|
-DPLUGIN_INSTALL_DIR="%{_libdir}/mariadb/plugin"
|
2014-09-24 10:54:24 +00:00
|
|
|
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
|
2016-10-18 11:28:09 +00:00
|
|
|
mkdir -p %{buildroot}/%{_sysconfdir}/ld.so.conf.d
|
|
|
|
echo "%{_libdir}/mariadb" > %{buildroot}/%{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf
|
|
|
|
|
2016-11-03 09:24:15 +00:00
|
|
|
rm /$RPM_BUILD_ROOT%{_libdir}/mariadb/libmariadbclient.a # static linked libraries
|
2014-09-24 10:54:24 +00:00
|
|
|
rm /$RPM_BUILD_ROOT%{_libdir}/mariadb/libmysqlclient.a
|
2016-09-13 10:54:05 +00:00
|
|
|
rm /$RPM_BUILD_ROOT%{_libdir}/mariadb/libmysqlclient_r.a
|
2015-07-23 13:53:10 +00:00
|
|
|
#
|
2016-11-03 09:24:15 +00:00
|
|
|
rm /$RPM_BUILD_ROOT%{_includedir}/mariadb/Makefile.am # Makefile.am is a programmer-defined file and is used by automake to generate the Makefile.in
|
2016-09-13 10:54:05 +00:00
|
|
|
rm -r /$RPM_BUILD_ROOT%{_includedir}/mariadb/CMakeFiles
|
2016-11-03 09:24:15 +00:00
|
|
|
rm /$RPM_BUILD_ROOT%{_includedir}/mariadb/mysql_version.h.in # *.in files are produced while creating final *.h files
|
2016-09-13 10:54:05 +00:00
|
|
|
rm /$RPM_BUILD_ROOT%{_includedir}/mariadb/Makefile
|
|
|
|
rm /$RPM_BUILD_ROOT%{_includedir}/mariadb/CMakeLists.txt
|
|
|
|
rm /$RPM_BUILD_ROOT%{_includedir}/mariadb/my_config.h.in
|
2014-09-24 10:54:24 +00:00
|
|
|
rm /$RPM_BUILD_ROOT%{_includedir}/mariadb/cmake_install.cmake
|
|
|
|
|
2016-10-18 11:28:09 +00:00
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-24 10:54:24 +00:00
|
|
|
%files
|
2016-10-27 13:30:53 +00:00
|
|
|
%{_libdir}/mariadb
|
2017-01-23 23:00:42 +00:00
|
|
|
%{_libdir}/mariadb/libmariadb.so.2
|
|
|
|
|
|
|
|
%{_libdir}/mariadb/plugin
|
|
|
|
%{_libdir}/mariadb/plugin/dialog.so
|
|
|
|
%{_libdir}/mariadb/plugin/mysql_clear_password.so
|
2016-11-03 09:24:15 +00:00
|
|
|
# fix of RPATH. If there is a set config file, libdir/mariadb/ is added to search for libraries
|
|
|
|
%{_sysconfdir}/ld.so.conf.d
|
2014-09-24 10:54:24 +00:00
|
|
|
|
2016-11-03 09:24:15 +00:00
|
|
|
%files devel
|
|
|
|
# program which provides info for compiling programs with this library
|
|
|
|
%{_bindir}/mariadb_config
|
|
|
|
# symlinks to the .so lib
|
2014-09-24 10:54:24 +00:00
|
|
|
%{_libdir}/mariadb/libmariadb.so
|
|
|
|
%{_libdir}/mariadb/libmysqlclient_r.so
|
|
|
|
%{_libdir}/mariadb/libmysqlclient.so
|
2016-11-03 09:24:15 +00:00
|
|
|
# header files
|
|
|
|
%{_includedir}/mariadb
|
2016-10-18 11:28:09 +00:00
|
|
|
|
|
|
|
|
2014-09-24 10:54:24 +00:00
|
|
|
|
|
|
|
%changelog
|
2017-01-23 23:00:42 +00:00
|
|
|
* Tue Jan 24 2017 Michal Schorm <mschorm@redhat.com> - 2.3.2-1
|
|
|
|
- Rebase to versionn 2.3.2, patch needed (fixed by upstream in later versions)
|
|
|
|
- Plugin dir moved from /libdir/plugin to /libdir/mariadb/plugin
|
|
|
|
|
2016-10-27 13:30:53 +00:00
|
|
|
* Thu Oct 27 2016 Michal Schorm <mschorm@redhat.com> - 2.3.1-3
|
|
|
|
- Fixed ownership of {_libdir}/mariadb (this dir must me owned by package)
|
|
|
|
- Fixed ownership of {_sysconfigdir}/ld.so.conf.d (this dir must me owned by package)
|
|
|
|
- Fixed redundnace on lines with {_sysconfigdir}/ld.so.conf.d
|
|
|
|
- Fixed ownership of {_bindir} (only one program is owned, so let's be accurate)
|
2016-11-03 09:24:15 +00:00
|
|
|
- Some comments added, for me and future maintainers
|
2016-10-27 13:30:53 +00:00
|
|
|
|
2016-10-18 11:28:09 +00:00
|
|
|
* Mon Oct 17 2016 Michal Schorm <mschorm@redhat.com> - 2.3.1-2
|
|
|
|
- Fixed ownership of {_libdir}/mariadb directory and cosmetic specfile changes
|
|
|
|
|
2016-09-13 10:54:05 +00:00
|
|
|
* Tue Sep 13 2016 Michal Schorm <mschorm@redhat.com> - 2.3.1-1
|
|
|
|
- Rebase to version 2.3.1
|
|
|
|
|
2016-02-04 04:53:31 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-07-23 13:53:10 +00:00
|
|
|
* Thu Jul 23 2015 Matej Mužila <mmuzila@redhat.com> - 2.1.0-1
|
|
|
|
- Rebase to version 2.1.0
|
|
|
|
|
2015-06-17 19:30:45 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2014-09-24 15:37:32 +00:00
|
|
|
* Wed Sep 24 2014 Matej Mužila <mmuzila@redhat.com> - 2.0.0-2
|
|
|
|
- Fixed html IDs in documentation
|
|
|
|
|
2014-09-24 10:54:24 +00:00
|
|
|
* Tue Aug 26 2014 Matej Mužila <mmuzila@redhat.com> - 2.0.0-2
|
|
|
|
- Initial version for 2.0.0
|