2014-04-28 13:56:12 +00:00
|
|
|
Name: galera
|
2022-02-20 02:54:31 +00:00
|
|
|
Version: 26.4.11
|
|
|
|
Release: 1%{?dist}
|
2014-04-28 13:56:12 +00:00
|
|
|
Summary: Synchronous multi-master wsrep provider (replication engine)
|
|
|
|
|
|
|
|
License: GPLv2
|
2015-09-25 11:24:58 +00:00
|
|
|
URL: http://galeracluster.com/
|
2018-02-16 11:22:13 +00:00
|
|
|
|
|
|
|
# Actually, the truth is, we do use galera source tarball provided by MariaDB on
|
|
|
|
# following URL (without macros):
|
2020-11-11 01:39:02 +00:00
|
|
|
# https://archive.mariadb.org/mariadb-10.4.16/galera-26.4.6/src/galera-26.4.6.tar.gz
|
2018-02-16 11:22:13 +00:00
|
|
|
|
2017-11-24 14:48:32 +00:00
|
|
|
Source0: http://releases.galeracluster.com/source/%{name}-%{version}.tar.gz
|
2015-07-06 16:16:39 +00:00
|
|
|
|
2014-04-28 13:56:12 +00:00
|
|
|
Source1: garbd.service
|
|
|
|
Source2: garbd-wrapper
|
|
|
|
|
2021-06-10 02:59:26 +00:00
|
|
|
Patch0: cmake_paths.patch
|
2018-07-13 14:09:57 +00:00
|
|
|
|
2021-06-10 02:59:26 +00:00
|
|
|
BuildRequires: boost-devel check-devel openssl-devel cmake systemd gcc-c++ asio-devel
|
2021-07-14 15:46:39 +00:00
|
|
|
Requires(pre): /usr/sbin/useradd
|
2014-04-28 13:56:12 +00:00
|
|
|
Requires: nmap-ncat
|
2021-11-19 15:59:18 +00:00
|
|
|
Requires: procps-ng
|
2014-04-28 13:56:12 +00:00
|
|
|
|
2020-01-18 15:02:14 +00:00
|
|
|
%{?systemd_requires}
|
2014-04-28 13:56:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
Galera is a fast synchronous multi-master wsrep provider (replication engine)
|
|
|
|
for transactional databases and similar applications. For more information
|
|
|
|
about wsrep API see http://launchpad.net/wsrep. For a description of Galera
|
|
|
|
replication engine see http://www.codership.com.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
2017-11-24 14:48:32 +00:00
|
|
|
%setup -q
|
2018-07-13 14:09:57 +00:00
|
|
|
%patch0 -p1
|
2014-04-28 13:56:12 +00:00
|
|
|
|
|
|
|
%build
|
2019-07-19 15:14:50 +00:00
|
|
|
%{set_build_flags}
|
|
|
|
|
2019-07-20 11:48:35 +00:00
|
|
|
|
2022-04-28 09:01:59 +00:00
|
|
|
%cmake \
|
2021-06-10 02:59:26 +00:00
|
|
|
-DCMAKE_BUILD_TYPE="%{?with_debug:Debug}%{!?with_debug:RelWithDebInfo}" \
|
|
|
|
-DINSTALL_LAYOUT=RPM \
|
|
|
|
-DCMAKE_RULE_MESSAGES:BOOL=OFF \
|
|
|
|
\
|
|
|
|
-DBUILD_SHARED_LIBS:BOOL=OFF \
|
|
|
|
\
|
|
|
|
-DINSTALL_DOCDIR="share/doc/%{name}/" \
|
|
|
|
-DINSTALL_GARBD="sbin" \
|
|
|
|
-DINSTALL_GARBD-SYSTEMD="sbin" \
|
|
|
|
-DINSTALL_CONFIGURATION="/etc/sysconfig/" \
|
|
|
|
-DINSTALL_SYSTEMD_SERVICE="lib/systemd/system" \
|
|
|
|
-DINSTALL_LIBDIR="%{_lib}/galera" \
|
|
|
|
-DINSTALL_MANPAGE="share/man/man8"
|
2019-07-20 11:48:35 +00:00
|
|
|
|
2021-06-10 02:59:26 +00:00
|
|
|
cmake -B %_vpath_builddir -LAH
|
2021-02-23 13:27:59 +00:00
|
|
|
|
2021-06-10 02:59:26 +00:00
|
|
|
%cmake_build
|
2021-02-23 13:27:59 +00:00
|
|
|
|
2019-07-20 11:48:35 +00:00
|
|
|
|
2014-04-28 13:56:12 +00:00
|
|
|
%install
|
2021-06-10 02:59:26 +00:00
|
|
|
%cmake_install
|
2014-04-28 13:56:12 +00:00
|
|
|
|
2021-07-14 14:03:41 +00:00
|
|
|
# PATCH 1:
|
|
|
|
# Change the Systemd service name from "garb" to "garbd"
|
|
|
|
#
|
|
|
|
# The Galera upstream uses name "garb" for the service while providing "garbd" alias
|
|
|
|
# Fedora downstream packaging historically used "garbd" name for the service.
|
|
|
|
#
|
|
|
|
# Let's stick with the Fedora legacy naming, AND provide an alias to the Galera upstream name
|
|
|
|
mv %{buildroot}/usr/lib/systemd/system/garb.service %{buildroot}/usr/lib/systemd/system/garbd.service
|
|
|
|
sed -i 's/Alias=garbd.service/Alias=garb.service/g' %{buildroot}/usr/lib/systemd/system/garbd.service
|
|
|
|
|
2021-07-14 14:42:05 +00:00
|
|
|
# PATCH 2:
|
|
|
|
# Fix the hardcoded paths
|
|
|
|
# In the Systemd service file:
|
|
|
|
sed -i 's;/usr/bin/garb-systemd;/usr/sbin/garb-systemd;g' %{buildroot}/usr/lib/systemd/system/garbd.service
|
|
|
|
# In the wrapper script:
|
|
|
|
sed -i 's;/usr/bin/garbd;/usr/sbin/garbd;g' %{buildroot}/usr/sbin/garb-systemd
|
|
|
|
|
2021-07-14 15:46:39 +00:00
|
|
|
# PATCH 4:
|
|
|
|
# Use a dedicated user for the Systemd service
|
|
|
|
# To fix an security issue reported by Systemd:
|
|
|
|
#
|
|
|
|
## systemd[1]: /usr/lib/systemd/system/garb.service:14: Special user nobody configured, this is not safe!
|
|
|
|
## Subject: Special user nobody configured, this is not safe!
|
|
|
|
## Defined-By: systemd
|
|
|
|
## Support: https://lists.freedesktop.org/mailman/listinfo/systemd-devel
|
|
|
|
## Documentation: https://systemd.io/UIDS-GIDS
|
|
|
|
##
|
|
|
|
## The unit garb.service is configured to use User=nobody.
|
|
|
|
##
|
|
|
|
## This is not safe. The nobody user's main purpose on Linux-based
|
|
|
|
## operating systems is to be the owner of files that otherwise cannot be mapped
|
|
|
|
## to any local user. It's used by the NFS client and Linux user namespacing,
|
|
|
|
## among others. By running a unit's processes under the identity of this user
|
|
|
|
## they might possibly get read and even write access to such files that cannot
|
|
|
|
## otherwise be mapped.
|
|
|
|
##
|
|
|
|
## It is strongly recommended to avoid running services under this user identity,
|
|
|
|
## in particular on systems using NFS or running containers. Allocate a user ID
|
|
|
|
## specific to this service, either statically via systemd-sysusers or dynamically
|
|
|
|
## via the DynamicUser= service setting.
|
|
|
|
sed -i 's/User=nobody/User=garb/g' %{buildroot}/usr/lib/systemd/system/garbd.service
|
|
|
|
|
2022-02-20 14:15:14 +00:00
|
|
|
|
|
|
|
%check
|
|
|
|
%ctest
|
|
|
|
|
|
|
|
|
2021-07-14 15:46:39 +00:00
|
|
|
%pre
|
|
|
|
/usr/sbin/useradd -M -r -d /dev/null -s /sbin/nologin -c "Galera Arbitrator Daemon" garb >/dev/null 2>&1 || :
|
2014-04-28 13:56:12 +00:00
|
|
|
|
|
|
|
%post
|
|
|
|
/sbin/ldconfig
|
|
|
|
%systemd_post garbd.service
|
|
|
|
|
|
|
|
%preun
|
|
|
|
%systemd_preun garbd.service
|
|
|
|
|
|
|
|
%postun
|
|
|
|
/sbin/ldconfig
|
|
|
|
%systemd_postun_with_restart garbd.service
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%config(noreplace,missingok) %{_sysconfdir}/sysconfig/garb
|
2021-06-10 02:59:26 +00:00
|
|
|
|
2014-04-28 13:56:12 +00:00
|
|
|
%dir %{_docdir}/galera
|
|
|
|
%dir %{_libdir}/galera
|
2021-06-10 02:59:26 +00:00
|
|
|
|
2014-04-28 13:56:12 +00:00
|
|
|
%{_sbindir}/garbd
|
2021-06-10 02:59:26 +00:00
|
|
|
#%{_sbindir}/garbd-wrapper
|
2021-07-14 14:55:26 +00:00
|
|
|
|
|
|
|
# PATCH 3:
|
|
|
|
# Make sure the wrapper script is executable
|
|
|
|
%attr(755, -, -) %{_sbindir}/garb-systemd
|
2021-06-10 02:59:26 +00:00
|
|
|
|
|
|
|
%{_mandir}/man8/garbd.8*
|
|
|
|
|
2021-07-14 14:03:41 +00:00
|
|
|
%{_unitdir}/garbd.service
|
2021-06-10 02:59:26 +00:00
|
|
|
|
2014-04-28 13:56:12 +00:00
|
|
|
%{_libdir}/galera/libgalera_smm.so
|
2021-06-10 02:59:26 +00:00
|
|
|
|
|
|
|
%doc %{_docdir}/galera/AUTHORS
|
2014-04-28 13:56:12 +00:00
|
|
|
%doc %{_docdir}/galera/COPYING
|
|
|
|
%doc %{_docdir}/galera/LICENSE.asio
|
|
|
|
%doc %{_docdir}/galera/README
|
2021-06-10 02:59:26 +00:00
|
|
|
#%doc %{_docdir}/galera/README-MySQL
|
2014-04-28 13:56:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2022-02-20 02:54:31 +00:00
|
|
|
* Sun Feb 20 2022 Michal Schorm <mschorm@redhat.com> - 26.4.11-1
|
|
|
|
- Rebase to 26.4.11
|
|
|
|
|
2022-01-20 03:37:45 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 26.4.9-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-11-19 15:59:18 +00:00
|
|
|
* Fri Nov 19 2021 Lukas Javorsky <ljavorsk@redhat.com> - 26.4.9-3
|
|
|
|
- Explicitly require the 'procps-ng' package
|
|
|
|
- Otherwise it will not require it in the lightweight systems (e.g. containers)
|
|
|
|
- and Galera won't work properly
|
|
|
|
|
2021-09-14 17:02:03 +00:00
|
|
|
* Tue Sep 14 2021 Sahana Prasad <sahana@redhat.com> - 26.4.9-2
|
|
|
|
- Rebuilt with OpenSSL 3.0.0
|
|
|
|
|
2021-08-07 08:40:02 +00:00
|
|
|
* Sat Aug 07 2021 Michal Schorm <mschorm@redhat.com> - 26.4.9-1
|
|
|
|
- Rebase to 26.4.9
|
|
|
|
|
2021-08-06 22:37:59 +00:00
|
|
|
* Fri Aug 06 2021 Jonathan Wakely <jwakely@redhat.com> - 26.4.8-4
|
|
|
|
- Rebuilt for Boost 1.76
|
|
|
|
|
2021-07-21 23:33:01 +00:00
|
|
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 26.4.8-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-07-15 09:50:27 +00:00
|
|
|
* Thu Jul 15 2021 Michal Schorm <mschorm@redhat.com> - 26.4.8-2
|
|
|
|
- Switch from SCONS build tooling to CMAKE build tooling
|
|
|
|
- Use upstream variants of Systemd service file and Systemd service file wrapper srcipt
|
|
|
|
|
2021-06-03 09:32:58 +00:00
|
|
|
* Thu Jun 03 2021 Lukas Javorsky <ljavorsk@redhat.com> - 26.4.8-1
|
|
|
|
- Rebase to 26.4.8
|
|
|
|
|
2021-03-02 15:13:45 +00:00
|
|
|
* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 26.4.7-2
|
|
|
|
- Rebuilt for updated systemd-rpm-macros
|
|
|
|
See https://pagure.io/fesco/issue/2583.
|
|
|
|
|
2021-02-23 13:30:09 +00:00
|
|
|
* Tue Feb 23 2021 Michal Schorm <mschorm@redhat.com> - 26.4.7-1
|
2021-02-23 13:27:59 +00:00
|
|
|
- Rebase to 26.4.7
|
|
|
|
|
2021-01-26 06:06:16 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 26.4.6-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2021-01-22 20:51:49 +00:00
|
|
|
* Fri Jan 22 2021 Jonathan Wakely <jwakely@redhat.com> - 26.4.6-2
|
|
|
|
- Rebuilt for Boost 1.75
|
|
|
|
|
2020-11-04 15:05:16 +00:00
|
|
|
* Wed Nov 04 2020 Michal Schorm <mschorm@redhat.com> - 26.4.6-1
|
|
|
|
- Rebase to 26.4.6
|
|
|
|
|
2020-09-17 06:42:57 +00:00
|
|
|
* Thu Sep 17 2020 Michal Schorm <mschorm@redhat.com> - 26.4.5-2
|
|
|
|
- Extend the workaround also to ELN
|
|
|
|
|
2020-09-16 13:04:34 +00:00
|
|
|
* Wed Sep 16 2020 Michal Schorm <mschorm@redhat.com> - 26.4.5-1
|
|
|
|
- Rebase to 26.4.5
|
|
|
|
|
2020-09-16 12:18:57 +00:00
|
|
|
* Wed Sep 16 2020 Michal Schorm <mschorm@redhat.com> - 26.4.4-5
|
|
|
|
- Apply workaround for FTBFS on F33+
|
|
|
|
|
2020-08-01 01:05:57 +00:00
|
|
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 26.4.4-4
|
|
|
|
- Second attempt - Rebuilt for
|
|
|
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-27 18:00:46 +00:00
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 26.4.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-06-08 08:47:02 +00:00
|
|
|
* Mon Jun 08 2020 Michal Schorm <mschorm@redhat.com> - 26.4.4-2
|
|
|
|
- Second rebuild for Boost 1.73
|
|
|
|
|
2020-06-05 07:49:30 +00:00
|
|
|
* Fri Jun 05 2020 Michal Schorm <mschorm@redhat.com> - 26.4.4-1
|
|
|
|
- Rebase to 26.4.4
|
|
|
|
Resolves: rhbz#1546787
|
|
|
|
|
2020-05-28 20:13:08 +00:00
|
|
|
* Thu May 28 2020 Jonathan Wakely <jwakely@redhat.com> - 26.4.3-4
|
|
|
|
- Rebuilt for Boost 1.73
|
|
|
|
|
2020-01-28 19:13:59 +00:00
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 26.4.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2020-01-18 15:02:14 +00:00
|
|
|
* Sat Jan 18 2020 Michal Schorm <mschorm@redhat.com> - 26.4.3-2
|
|
|
|
- Rebase to 26.4.3
|
|
|
|
|
2019-11-06 12:50:55 +00:00
|
|
|
* Wed Nov 06 2019 Michal Schorm <mschorm@redhat.com> - 25.3.28-1
|
|
|
|
- Rebase to 25.3.28
|
|
|
|
|
|
|
|
* Thu Aug 01 2019 Michal Schorm <mschorm@redhat.com> - 25.3.26-3
|
2019-08-02 17:36:11 +00:00
|
|
|
- Fix for #1735233 and #1737108
|
|
|
|
|
2019-07-25 01:15:34 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 25.3.26-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-07-19 15:29:26 +00:00
|
|
|
* Fri Jul 19 2019 Michal Schorm <mschorm@redhat.com> - 25.3.26-1
|
2019-06-12 17:03:41 +00:00
|
|
|
- Rebase to 25.3.26
|
|
|
|
|
2019-07-19 15:14:50 +00:00
|
|
|
* Fri Jul 19 2019 Michal Schorm <mschorm@redhat.com> - 25.3.25-4
|
|
|
|
- Use macro for setting up the compiler flags
|
|
|
|
|
2019-01-31 20:23:07 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 25.3.25-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2019-01-29 23:36:41 +00:00
|
|
|
* Tue Jan 29 2019 Jonathan Wakely <jwakely@redhat.com> - 25.3.25-2
|
|
|
|
- Rebuilt for Boost 1.69
|
|
|
|
|
2019-06-12 16:50:10 +00:00
|
|
|
* Tue Jan 01 2019 Michal Schorm <mschorm@redhat.com> - 25.3.25-1
|
2019-01-03 03:30:14 +00:00
|
|
|
- Rebase to 25.3.25
|
|
|
|
|
2018-07-16 15:03:20 +00:00
|
|
|
* Mon Jul 16 2018 Honza Horak <hhorak@redhat.com> - 25.3.23-5
|
|
|
|
- Require asio also on rhel
|
|
|
|
|
2018-07-13 13:03:51 +00:00
|
|
|
* Fri Jul 13 2018 Honza Horak <hhorak@redhat.com> - 25.3.23-4
|
|
|
|
- Add explicit gcc-c++ BR
|
2018-07-13 14:09:57 +00:00
|
|
|
- Use python3-scons
|
2018-07-13 13:03:51 +00:00
|
|
|
|
2018-07-13 11:30:31 +00:00
|
|
|
* Fri Jul 13 2018 Honza Horak <hhorak@redhat.com> - 25.3.23-3
|
|
|
|
- Do not require asio on rhel
|
|
|
|
|
2018-07-13 00:59:59 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 25.3.23-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-02-16 11:22:13 +00:00
|
|
|
* Fri Feb 16 2018 Michal Schorm <mschorm@redhat.com> - 25.3.23-1
|
|
|
|
- Update to 25.3.23
|
|
|
|
|
2018-02-07 10:25:02 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 25.3.22-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-11-24 14:48:32 +00:00
|
|
|
* Fri Nov 24 2017 Honza Horak <hhorak@redhat.com> - 25.3.22-1
|
|
|
|
- Update to 25.3.22
|
|
|
|
|
2017-08-02 20:54:32 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 25.3.16-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 08:57:27 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 25.3.16-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-07-03 17:54:27 +00:00
|
|
|
* Mon Jul 03 2017 Jonathan Wakely <jwakely@redhat.com> - 25.3.16-4
|
|
|
|
- Rebuilt for Boost 1.64
|
|
|
|
|
2017-05-15 21:03:39 +00:00
|
|
|
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 25.3.16-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
|
|
|
|
|
2017-02-18 00:34:18 +00:00
|
|
|
* Sat Feb 18 2017 Jonathan Wakely <jwakely@redhat.com> - 25.3.16-2
|
|
|
|
- Use asio-devel instead of bundled asio library
|
|
|
|
|
2017-02-10 10:08:01 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 25.3.16-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-06-22 14:40:19 +00:00
|
|
|
* Wed Jun 22 2016 Mike Bayer <mbayer@redhat.com> - 25.3.16-1
|
|
|
|
- Update to 25.3.16
|
|
|
|
|
2016-02-03 20:56:45 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 25.3.12-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-01-15 05:58:28 +00:00
|
|
|
* Fri Jan 15 2016 Jonathan Wakely <jwakely@redhat.com> - 25.3.12-3
|
|
|
|
- Rebuilt for Boost 1.60
|
|
|
|
|
2015-10-26 15:29:02 +00:00
|
|
|
* Wed Sep 30 2015 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 25.3.12-2
|
|
|
|
- Remove use of -mtune=native which breaks build on secondary architectures
|
|
|
|
|
2015-09-25 11:24:58 +00:00
|
|
|
* Fri Sep 25 2015 Richard W.M. Jones <rjones@redhat.com> - 25.3.12-1
|
|
|
|
- Update to 25.3.12.
|
|
|
|
- Should fix the build on 32 bit ARM (RHBZ#1241164).
|
2015-09-25 11:29:04 +00:00
|
|
|
- Remove ExcludeArch (should have read the BZ more closely).
|
2015-09-25 11:24:58 +00:00
|
|
|
|
2015-08-27 20:34:37 +00:00
|
|
|
* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 25.3.10-5
|
|
|
|
- Rebuilt for Boost 1.59
|
|
|
|
|
2015-07-29 17:16:30 +00:00
|
|
|
* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 25.3.10-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
|
|
|
|
|
2015-07-22 16:31:25 +00:00
|
|
|
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 25.3.10-3
|
|
|
|
- rebuild for Boost 1.58
|
|
|
|
|
2015-07-08 15:45:19 +00:00
|
|
|
* Wed Jul 08 2015 Ryan O'Hara <rohara@redhat.com> - 25.3.10-2
|
|
|
|
- Disable ARM builds (#1241164, #1239516)
|
|
|
|
|
2015-07-06 16:16:39 +00:00
|
|
|
* Mon Jul 06 2015 Ryan O'Hara <rohara@redhat.com> - 25.3.10-1
|
|
|
|
- Update to version 25.3.10
|
|
|
|
|
2015-06-17 06:54:49 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 25.3.5-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-01-26 22:00:44 +00:00
|
|
|
* Mon Jan 26 2015 Petr Machata <pmachata@redhat.com> - 25.3.5-10
|
|
|
|
- Rebuild for boost 1.57.0
|
|
|
|
|
2014-11-27 22:01:25 +00:00
|
|
|
* Thu Nov 27 2014 Richard W.M. Jones <rjones@redhat.com> - 25.3.5-9
|
|
|
|
- Add aarch64 support.
|
|
|
|
|
2014-08-16 13:36:12 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 25.3.5-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-07 13:15:30 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 25.3.5-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-23 00:56:12 +00:00
|
|
|
* Fri May 23 2014 Petr Machata <pmachata@redhat.com> - 25.3.5-6
|
|
|
|
- Rebuild for boost 1.55.0
|
|
|
|
|
2014-04-30 08:00:45 +00:00
|
|
|
* Wed Apr 30 2014 Dan Horák <dan[at]danny.cz> - 25.3.5-5
|
|
|
|
- set ExclusiveArch
|
|
|
|
|
2014-04-28 13:56:12 +00:00
|
|
|
* Thu Apr 24 2014 Ryan O'Hara <rohara@redhat.com> - 25.3.5-4
|
|
|
|
- Use strict_build_flags=0 to avoid -Werror
|
2015-07-06 16:16:39 +00:00
|
|
|
- Remove unnecessary clean section
|
2014-04-28 13:56:12 +00:00
|
|
|
|
|
|
|
* Thu Apr 24 2014 Ryan O'Hara <rohara@redhat.com> - 25.3.5-3
|
|
|
|
- Include galera directories in file list
|
|
|
|
- Set CPPFLAGS to optflags
|
|
|
|
|
|
|
|
* Wed Apr 23 2014 Ryan O'Hara <rohara@redhat.com> - 25.3.5-2
|
|
|
|
- Fix client certificate verification (#1090604)
|
|
|
|
|
|
|
|
* Thu Mar 27 2014 Ryan O'Hara <rohara@redhat.com> - 25.3.5-1
|
|
|
|
- Update to version 25.3.5
|
|
|
|
|
|
|
|
* Mon Mar 24 2014 Ryan O'Hara <rohara@redhat.com> - 25.3.3-2
|
|
|
|
- Add systemd service
|
|
|
|
|
|
|
|
* Sun Mar 09 2014 Ryan O'Hara <rohara@redhat.com> - 25.3.3-1
|
|
|
|
- Initial build
|