2f5dcb
# Conditionals
2f5dcb
# Invoke "rpmbuild --without <feature>" or "rpmbuild --with <feature>"
2f5dcb
# to disable or enable specific features
2f5dcb
%bcond_with watchdog
2f5dcb
%bcond_with monitoring
2f5dcb
%bcond_without snmp
2f5dcb
%bcond_without dbus
2f5dcb
%bcond_without systemd
2f5dcb
%bcond_without xmlconf
2f5dcb
%bcond_without nozzle
2f5dcb
%bcond_without vqsim
2f5dcb
%bcond_without runautogen
2f5dcb
%bcond_without userflags
2f5dcb
%bcond_without spausedd
2f5dcb
2f5dcb
%global gitver %{?numcomm:.%{numcomm}}%{?alphatag:.%{alphatag}}%{?dirty:.%{dirty}}
2f5dcb
%global gittarver %{?numcomm:.%{numcomm}}%{?alphatag:-%{alphatag}}%{?dirty:-%{dirty}}
2f5dcb
2f5dcb
%if %{with spausedd}
ebaf6b
%global spausedd_version 20201112
2f5dcb
%endif
2f5dcb
2f5dcb
Name: corosync
2f5dcb
Summary: The Corosync Cluster Engine and Application Programming Interfaces
a34d04
Version: 3.1.7
a34d04
Release: 1%{?gitver}%{?dist}
2f5dcb
License: BSD
2f5dcb
URL: http://corosync.github.io/corosync/
2f5dcb
Source0: http://build.clusterlabs.org/corosync/releases/%{name}-%{version}%{?gittarver}.tar.gz
62a1f8
2f5dcb
%if %{with spausedd}
2f5dcb
Source1: https://github.com/jfriesse/spausedd/releases/download/%{spausedd_version}/spausedd-%{spausedd_version}.tar.gz
2f5dcb
# VMGuestLib exists only for x86_64 architecture
2f5dcb
%ifarch x86_64
2f5dcb
%global use_vmguestlib 1
2f5dcb
%endif
2f5dcb
%endif
2f5dcb
2f5dcb
# Runtime bits
2f5dcb
# The automatic dependency overridden in favor of explicit version lock
2f5dcb
Requires: corosynclib%{?_isa} = %{version}-%{release}
2f5dcb
e722e4
# Support crypto reload
e722e4
Requires: libknet1 >= 1.18
2f5dcb
# NSS crypto plugin should be always installed
e722e4
Requires: libknet1-crypto-nss-plugin >= 1.18
2f5dcb
2f5dcb
# Build bits
2f5dcb
BuildRequires: gcc
2f5dcb
BuildRequires: groff
2f5dcb
BuildRequires: libqb-devel
e722e4
BuildRequires: libknet1-devel >= 1.18
2f5dcb
BuildRequires: zlib-devel
2f5dcb
%if %{with runautogen}
2f5dcb
BuildRequires: autoconf automake libtool
2f5dcb
%endif
2f5dcb
%if %{with monitoring}
2f5dcb
BuildRequires: libstatgrab-devel
2f5dcb
%endif
2f5dcb
%if %{with snmp}
2f5dcb
BuildRequires: net-snmp-devel
2f5dcb
%endif
2f5dcb
%if %{with dbus}
2f5dcb
BuildRequires: dbus-devel
2f5dcb
%endif
2f5dcb
%if %{with nozzle}
2f5dcb
BuildRequires: libnozzle1-devel
2f5dcb
%endif
2f5dcb
%if %{with systemd}
2f5dcb
%{?systemd_requires}
2f5dcb
BuildRequires: systemd
2f5dcb
BuildRequires: systemd-devel
2f5dcb
%else
2f5dcb
Requires(post): /sbin/chkconfig
2f5dcb
Requires(preun): /sbin/chkconfig
2f5dcb
%endif
2f5dcb
%if %{with xmlconf}
2f5dcb
Requires: libxslt
2f5dcb
%endif
2f5dcb
%if %{with vqsim}
2f5dcb
BuildRequires: readline-devel
2f5dcb
%endif
2f5dcb
%if %{defined use_vmguestlib}
2f5dcb
BuildRequires: pkgconfig(vmguestlib)
2f5dcb
%endif
2f5dcb
2f5dcb
%prep
2f5dcb
%if %{with spausedd}
2f5dcb
%setup -q -a 1 -n %{name}-%{version}%{?gittarver}
2f5dcb
%else
2f5dcb
%setup -q -n %{name}-%{version}%{?gittarver}
2f5dcb
%endif
2f5dcb
2f5dcb
%build
2f5dcb
%if %{with runautogen}
2f5dcb
./autogen.sh
2f5dcb
%endif
2f5dcb
2f5dcb
%{configure} \
2f5dcb
%if %{with watchdog}
2f5dcb
	--enable-watchdog \
2f5dcb
%endif
2f5dcb
%if %{with monitoring}
2f5dcb
	--enable-monitoring \
2f5dcb
%endif
2f5dcb
%if %{with snmp}
2f5dcb
	--enable-snmp \
2f5dcb
%endif
2f5dcb
%if %{with dbus}
2f5dcb
	--enable-dbus \
2f5dcb
%endif
2f5dcb
%if %{with systemd}
2f5dcb
	--enable-systemd \
2f5dcb
%endif
2f5dcb
%if %{with xmlconf}
2f5dcb
	--enable-xmlconf \
2f5dcb
%endif
2f5dcb
%if %{with nozzle}
2f5dcb
	--enable-nozzle \
2f5dcb
%endif
2f5dcb
%if %{with vqsim}
2f5dcb
	--enable-vqsim \
2f5dcb
%endif
2f5dcb
%if %{with userflags}
2f5dcb
	--enable-user-flags \
2f5dcb
%endif
2f5dcb
	--with-initddir=%{_initrddir} \
2f5dcb
	--with-systemddir=%{_unitdir} \
2f5dcb
	--docdir=%{_docdir}
2f5dcb
2f5dcb
make %{_smp_mflags}
2f5dcb
2f5dcb
%if %{with spausedd}
2f5dcb
cd spausedd-%{spausedd_version}
62a1f8
CFLAGS="${CFLAGS:-%{optflags}}" ; export CFLAGS
2f5dcb
make \
2f5dcb
%if %{defined use_vmguestlib}
2f5dcb
    WITH_VMGUESTLIB=1 \
2f5dcb
%else
2f5dcb
    WITH_VMGUESTLIB=0 \
2f5dcb
%endif
62a1f8
    %{?_smp_mflags}
2f5dcb
%endif
2f5dcb
2f5dcb
%install
2f5dcb
make install DESTDIR=%{buildroot}
2f5dcb
2f5dcb
%if %{with dbus}
2f5dcb
mkdir -p -m 0700 %{buildroot}/%{_sysconfdir}/dbus-1/system.d
2f5dcb
install -m 644 %{_builddir}/%{name}-%{version}%{?gittarver}/conf/corosync-signals.conf %{buildroot}/%{_sysconfdir}/dbus-1/system.d/corosync-signals.conf
2f5dcb
%endif
2f5dcb
2f5dcb
## tree fixup
2f5dcb
# drop static libs
2f5dcb
rm -f %{buildroot}%{_libdir}/*.a
2f5dcb
rm -f %{buildroot}%{_libdir}/*.la
2f5dcb
# drop docs and html docs for now
2f5dcb
rm -rf %{buildroot}%{_docdir}/*
2f5dcb
# /etc/sysconfig/corosync-notifyd
2f5dcb
mkdir -p %{buildroot}%{_sysconfdir}/sysconfig
2f5dcb
install -m 644 tools/corosync-notifyd.sysconfig.example \
2f5dcb
   %{buildroot}%{_sysconfdir}/sysconfig/corosync-notifyd
2f5dcb
# /etc/sysconfig/corosync
2f5dcb
install -m 644 init/corosync.sysconfig.example \
2f5dcb
   %{buildroot}%{_sysconfdir}/sysconfig/corosync
2f5dcb
2f5dcb
%if %{with spausedd}
2f5dcb
cd spausedd-%{spausedd_version}
2f5dcb
make DESTDIR="%{buildroot}" PREFIX="%{_prefix}" install
2f5dcb
2f5dcb
%if %{with systemd}
2f5dcb
mkdir -p %{buildroot}/%{_unitdir}
62a1f8
install -m 644 -p init/spausedd.service %{buildroot}/%{_unitdir}
2f5dcb
%else
2f5dcb
mkdir -p %{buildroot}/%{_initrddir}
2f5dcb
install -m 755 -p init/spausedd %{buildroot}/%{_initrddir}
2f5dcb
%endif
2f5dcb
2f5dcb
cd ..
2f5dcb
%endif
2f5dcb
2f5dcb
%description
2f5dcb
This package contains the Corosync Cluster Engine Executive, several default
2f5dcb
APIs and libraries, default configuration files, and an init script.
2f5dcb
2f5dcb
%post
2f5dcb
%if %{with systemd} && 0%{?systemd_post:1}
2f5dcb
%systemd_post corosync.service
2f5dcb
%else
2f5dcb
if [ $1 -eq 1 ]; then
2f5dcb
	/sbin/chkconfig --add corosync || :
2f5dcb
fi
2f5dcb
%endif
2f5dcb
2f5dcb
%preun
2f5dcb
%if %{with systemd} && 0%{?systemd_preun:1}
2f5dcb
%systemd_preun corosync.service
2f5dcb
%else
2f5dcb
if [ $1 -eq 0 ]; then
2f5dcb
	/sbin/service corosync stop &>/dev/null || :
2f5dcb
	/sbin/chkconfig --del corosync || :
2f5dcb
fi
2f5dcb
%endif
2f5dcb
2f5dcb
%postun
2f5dcb
%if %{with systemd} && 0%{?systemd_postun:1}
2f5dcb
%systemd_postun corosync.service
2f5dcb
%endif
2f5dcb
2f5dcb
%files
2f5dcb
%doc LICENSE
2f5dcb
%{_sbindir}/corosync
2f5dcb
%{_sbindir}/corosync-keygen
2f5dcb
%{_sbindir}/corosync-cmapctl
2f5dcb
%{_sbindir}/corosync-cfgtool
2f5dcb
%{_sbindir}/corosync-cpgtool
2f5dcb
%{_sbindir}/corosync-quorumtool
2f5dcb
%{_sbindir}/corosync-notifyd
2f5dcb
%{_bindir}/corosync-blackbox
2f5dcb
%if %{with xmlconf}
2f5dcb
%{_bindir}/corosync-xmlproc
2f5dcb
%dir %{_datadir}/corosync
2f5dcb
%{_datadir}/corosync/xml2conf.xsl
2f5dcb
%{_mandir}/man8/corosync-xmlproc.8*
2f5dcb
%{_mandir}/man5/corosync.xml.5*
2f5dcb
%endif
2f5dcb
%dir %{_sysconfdir}/corosync
2f5dcb
%dir %{_sysconfdir}/corosync/uidgid.d
2f5dcb
%config(noreplace) %{_sysconfdir}/corosync/corosync.conf.example
2f5dcb
%config(noreplace) %{_sysconfdir}/sysconfig/corosync-notifyd
2f5dcb
%config(noreplace) %{_sysconfdir}/sysconfig/corosync
2f5dcb
%config(noreplace) %{_sysconfdir}/logrotate.d/corosync
2f5dcb
%if %{with dbus}
2f5dcb
%{_sysconfdir}/dbus-1/system.d/corosync-signals.conf
2f5dcb
%endif
2f5dcb
%if %{with snmp}
2f5dcb
%{_datadir}/snmp/mibs/COROSYNC-MIB.txt
2f5dcb
%endif
2f5dcb
%if %{with systemd}
2f5dcb
%{_unitdir}/corosync.service
2f5dcb
%{_unitdir}/corosync-notifyd.service
2f5dcb
%else
2f5dcb
%{_initrddir}/corosync
2f5dcb
%{_initrddir}/corosync-notifyd
2f5dcb
%endif
2f5dcb
%dir %{_localstatedir}/lib/corosync
2f5dcb
%dir %{_localstatedir}/log/cluster
2f5dcb
%{_mandir}/man7/corosync_overview.7*
2f5dcb
%{_mandir}/man8/corosync.8*
2f5dcb
%{_mandir}/man8/corosync-blackbox.8*
2f5dcb
%{_mandir}/man8/corosync-cmapctl.8*
2f5dcb
%{_mandir}/man8/corosync-keygen.8*
2f5dcb
%{_mandir}/man8/corosync-cfgtool.8*
2f5dcb
%{_mandir}/man8/corosync-cpgtool.8*
2f5dcb
%{_mandir}/man8/corosync-notifyd.8*
2f5dcb
%{_mandir}/man8/corosync-quorumtool.8*
2f5dcb
%{_mandir}/man5/corosync.conf.5*
2f5dcb
%{_mandir}/man5/votequorum.5*
0be89b
%{_mandir}/man7/cmap_keys.7*
2f5dcb
2f5dcb
# library
2f5dcb
#
2f5dcb
%package -n corosynclib
2f5dcb
Summary: The Corosync Cluster Engine Libraries
2f5dcb
2f5dcb
%description -n corosynclib
2f5dcb
This package contains corosync libraries.
2f5dcb
2f5dcb
%files -n corosynclib
2f5dcb
%doc LICENSE
2f5dcb
%{_libdir}/libcfg.so.*
2f5dcb
%{_libdir}/libcpg.so.*
2f5dcb
%{_libdir}/libcmap.so.*
2f5dcb
%{_libdir}/libquorum.so.*
2f5dcb
%{_libdir}/libvotequorum.so.*
2f5dcb
%{_libdir}/libsam.so.*
2f5dcb
%{_libdir}/libcorosync_common.so.*
2f5dcb
2f5dcb
%post -n corosynclib -p /sbin/ldconfig
2f5dcb
2f5dcb
%postun -n corosynclib -p /sbin/ldconfig
2f5dcb
2f5dcb
%package -n corosynclib-devel
2f5dcb
Summary: The Corosync Cluster Engine Development Kit
2f5dcb
Requires: corosynclib%{?_isa} = %{version}-%{release}
2f5dcb
Requires: pkgconfig
2f5dcb
Provides: corosync-devel = %{version}
2f5dcb
2f5dcb
%description -n corosynclib-devel
2f5dcb
This package contains include files and man pages used to develop using
2f5dcb
The Corosync Cluster Engine APIs.
2f5dcb
2f5dcb
%files -n corosynclib-devel
2f5dcb
%doc LICENSE
2f5dcb
%dir %{_includedir}/corosync/
2f5dcb
%{_includedir}/corosync/corodefs.h
2f5dcb
%{_includedir}/corosync/cfg.h
2f5dcb
%{_includedir}/corosync/cmap.h
2f5dcb
%{_includedir}/corosync/corotypes.h
2f5dcb
%{_includedir}/corosync/cpg.h
2f5dcb
%{_includedir}/corosync/hdb.h
2f5dcb
%{_includedir}/corosync/sam.h
2f5dcb
%{_includedir}/corosync/quorum.h
2f5dcb
%{_includedir}/corosync/votequorum.h
2f5dcb
%{_libdir}/libcfg.so
2f5dcb
%{_libdir}/libcpg.so
2f5dcb
%{_libdir}/libcmap.so
2f5dcb
%{_libdir}/libquorum.so
2f5dcb
%{_libdir}/libvotequorum.so
2f5dcb
%{_libdir}/libsam.so
2f5dcb
%{_libdir}/libcorosync_common.so
2f5dcb
%{_libdir}/pkgconfig/*.pc
2f5dcb
%{_mandir}/man3/cpg_*3*
2f5dcb
%{_mandir}/man3/quorum_*3*
2f5dcb
%{_mandir}/man3/votequorum_*3*
2f5dcb
%{_mandir}/man3/sam_*3*
2f5dcb
%{_mandir}/man3/cmap_*3*
2f5dcb
2f5dcb
%if %{with vqsim}
2f5dcb
%package -n corosync-vqsim
2f5dcb
Summary: The Corosync Cluster Engine - Votequorum Simulator
2f5dcb
Requires: corosynclib%{?_isa} = %{version}-%{release}
2f5dcb
Requires: pkgconfig
2f5dcb
2f5dcb
%description -n corosync-vqsim
2f5dcb
A command-line simulator for the corosync votequorum subsystem.
2f5dcb
It uses the same code as the corosync quorum system but forks
2f5dcb
them into subprocesses to simulate nodes.
2f5dcb
Nodes can be added and removed as well as partitioned (to simulate
2f5dcb
network splits)
2f5dcb
2f5dcb
%files -n corosync-vqsim
2f5dcb
%doc LICENSE
2f5dcb
%{_bindir}/corosync-vqsim
2f5dcb
%{_mandir}/man8/corosync-vqsim.8*
2f5dcb
%endif
2f5dcb
2f5dcb
# optional spausedd
2f5dcb
%if %{with spausedd}
2f5dcb
2f5dcb
%package -n spausedd
2f5dcb
Summary: Utility to detect and log scheduler pause
2f5dcb
URL: https://github.com/jfriesse/spausedd
2f5dcb
2f5dcb
%if %{with systemd}
2f5dcb
%{?systemd_requires}
2f5dcb
%else
2f5dcb
Requires(post): /sbin/chkconfig
2f5dcb
Requires(preun): /sbin/chkconfig
2f5dcb
%endif
2f5dcb
2f5dcb
%description -n spausedd
2f5dcb
Utility to detect and log scheduler pause
2f5dcb
2f5dcb
%files -n spausedd
2f5dcb
%doc spausedd-%{spausedd_version}/AUTHORS spausedd-%{spausedd_version}/COPYING
2f5dcb
%{_bindir}/spausedd
2f5dcb
%{_mandir}/man8/spausedd*
2f5dcb
%if %{with systemd}
2f5dcb
%{_unitdir}/spausedd.service
2f5dcb
%else
2f5dcb
%{_initrddir}/spausedd
2f5dcb
%endif
2f5dcb
2f5dcb
%post -n spausedd
2f5dcb
%if %{with systemd} && 0%{?systemd_post:1}
2f5dcb
%systemd_post spausedd.service
2f5dcb
%else
2f5dcb
if [ $1 -eq 1 ]; then
2f5dcb
    /sbin/chkconfig --add spausedd || :
2f5dcb
fi
2f5dcb
%endif
2f5dcb
2f5dcb
%preun -n spausedd
2f5dcb
%if %{with systemd} && 0%{?systemd_preun:1}
2f5dcb
%systemd_preun spausedd.service
2f5dcb
%else
2f5dcb
if [ $1 -eq 0 ]; then
2f5dcb
    /sbin/service spausedd stop &>/dev/null || :
2f5dcb
    /sbin/chkconfig --del spausedd || :
2f5dcb
fi
2f5dcb
%endif
2f5dcb
2f5dcb
%postun -n spausedd
2f5dcb
%if %{with systemd} && 0%{?systemd_postun:1}
2f5dcb
    %systemd_postun spausedd.service
2f5dcb
%endif
2f5dcb
2f5dcb
%endif
2f5dcb
2f5dcb
%changelog
a34d04
* Tue Nov 15 2022 Jan Friesse <jfriesse@redhat.com> 3.1.7-1
a34d04
- Resolves: rhbz#2135860
a34d04
a34d04
- New upstream release (rhbz#2135860)
a34d04
f27531
* Wed Nov 24 2021 Jan Friesse <jfriesse@redhat.com> 3.1.5-2
f27531
- Resolves: rhbz#2002115
f27531
- Resolves: rhbz#2024658
f27531
f27531
- totem: Add cancel_hold_on_retransmit config option (rhbz#2002115)
f27531
- merge upstream commit cdf72925db5a81e546ca8e8d7d8291ee1fc77be4 (rhbz#2002115)
f27531
- totemsrp: Switch totempg buffers at the right time (rhbz#2024658)
f27531
- merge upstream commit e7a82370a7b5d3ca342d5e42e25763fa2c938739 (rhbz#2024658)
f27531
007ea1
* Wed Aug 04 2021 Jan Friesse <jfriesse@redhat.com> 3.1.5-1
007ea1
- Related: rhbz#1948973
007ea1
007ea1
- New upstream release (rhbz#1948973)
007ea1
bb4e8a
* Thu Jun 03 2021 Jan Friesse <jfriesse@redhat.com> 3.1.4-1
bb4e8a
- Related: rhbz#1948973
bb4e8a
- Resolves: rhbz#1962139
bb4e8a
bb4e8a
- New upstream release (rhbz#1948973)
bb4e8a
- stats: fix crash when iterating over deleted keys (rhbz#1962139)
bb4e8a
bb4e8a
* Fri May 21 2021 Jan Friesse <jfriesse@redhat.com> 3.1.3-1
bb4e8a
- Resolves: rhbz#1948973
bb4e8a
bb4e8a
- New upstream release (rhbz#1948973)
bb4e8a
adbe2d
* Fri Apr 30 2021 Jan Friesse <jfriesse@redhat.com> 3.1.0-5
adbe2d
- Resolves: rhbz#1954432
adbe2d
365194
* Tue Apr 06 2021 Jan Friesse <jfriesse@redhat.com> 3.1.0-4
365194
- Resolves: rhbz#1946623
365194
365194
- knet: pass correct handle to knet_handle_compress (rhbz#1946623)
365194
ebaf6b
* Thu Nov 12 2020 Jan Friesse <jfriesse@redhat.com> 3.1.0-3
ebaf6b
- Resolves: rhbz#1897085
ebaf6b
- Resolves: rhbz#1896493
ebaf6b
ebaf6b
- spausedd: Add ability to move process into root cgroup (rhbz#1897085)
ebaf6b
- totemknet: Check both cipher and hash for crypto (rhbz#1896493)
ebaf6b
ee6e3e
* Tue Nov 10 2020 Jan Friesse <jfriesse@redhat.com> 3.1.0-2
ee6e3e
- Resolves: rhbz#1896309
ee6e3e
ee6e3e
- Fix log_perror (rhbz#1896309)
ee6e3e
e722e4
* Tue Oct 20 2020 Jan Friesse <jfriesse@redhat.com> 3.1.0-1
e722e4
- Resolves: rhbz#1855293
e722e4
- Resolves: rhbz#1855303
e722e4
- Resolves: rhbz#1870449
e722e4
- Resolves: rhbz#1887400
e722e4
e722e4
- New upstream release (rhbz#1855293)
e722e4
- Support for reload of crypto configuration (rhbz#1855303)
e722e4
- Increase default token timeout to 3000ms (rhbz#1870449)
e722e4
- Add support for nodelist callback into quorum service (rhbz#1887400)
e722e4
0be89b
* Tue May 26 2020 Jan Friesse <jfriesse@redhat.com> 3.0.3-4
0be89b
- Resolves: rhbz#1780137
0be89b
- Resolves: rhbz#1791792
0be89b
- Resolves: rhbz#1809864
0be89b
- Resolves: rhbz#1816653
0be89b
0be89b
- votequorum: Ignore the icmap_get_* return value (rhbz#1780137)
0be89b
- merge upstream commit cddd62f972bca276c934e58f08da84071cec1ddb (rhbz#1780137)
0be89b
- man: move cmap_keys man page from section 8 to 7 (rhbz#1791792)
0be89b
- merge upstream commit f1d36307e524f9440733f0b01a9fc627a0e1cac7 (rhbz#1791792)
0be89b
- votequorum: Reflect runtime change of 2Node to WFA (rhbz#1780137)
0be89b
- merge upstream commit 8ce65bf951bc1e5b2d64b60ea027fbdc551d4fc8 (rhbz#1780137)
0be89b
- stats: Add stats for scheduler misses (rhbz#1791792)
0be89b
- merge upstream commit 48b6894ef41e9a06ccbb696d062d86ef60dc2c4b (rhbz#1791792)
0be89b
- stats: Use nanoseconds from epoch for schedmiss (rhbz#1791792)
0be89b
- merge upstream commit ebd05fa00826c366922e619b012a0684c6856539 (rhbz#1791792)
0be89b
- main: Add schedmiss timestamp into message (rhbz#1791792)
0be89b
- merge upstream commit 35662dd0ec53f456445c30c0ef92892f47b25aa2 (rhbz#1791792)
0be89b
- votequorum: Change check of expected_votes (rhbz#1809864)
0be89b
- merge upstream commit 0c16442f2d93f32a229b87d2672e2dc8025ec704 (rhbz#1809864)
0be89b
- quorumtool: exit on invalid expected votes (rhbz#1809864)
0be89b
- merge upstream commit 5f543465bb3506b7f4929a426f1c22a9c854cecd (rhbz#1809864)
0be89b
- votequorum: set wfa status only on startup (rhbz#1816653)
0be89b
- merge upstream commit ca320beac25f82c0c555799e647a47975a333c28 (rhbz#1816653)
0be89b
9dbf03
* Tue Apr 28 2020 Jan Friesse <jfriesse@redhat.com> - 3.0.3-3
9dbf03
- Resolves: rhbz#1828295
9dbf03
9dbf03
- Add explicit spausedd dependency for revdeps CI test
9dbf03
62a1f8
* Mon Nov 25 2019 Jan Friesse <jfriesse@redhat.com> - 3.0.3-2
62a1f8
- Related: rhbz#1745623
62a1f8
62a1f8
- New upstream release of spausedd
62a1f8
62a1f8
* Mon Nov 25 2019 Jan Friesse <jfriesse@redhat.com> - 3.0.3-1
62a1f8
- Resolves: rhbz#1745623
62a1f8
62a1f8
- New upstream release
62a1f8
62a1f8
* Wed Oct 30 2019 Jan Friesse <jfriesse@redhat.com> 3.0.2-4
62a1f8
- Resolves: rhbz#1745624
62a1f8
- Resolves: rhbz#1745642
62a1f8
- Resolves: rhbz#1749263
62a1f8
- Resolves: rhbz#1765025
62a1f8
62a1f8
- totem: fix check if all nodes have same number of links (rhbz#1749263)
62a1f8
- merge upstream commit 816324c94cfb917b11f43954b8757424db28b390 (rhbz#1749263)
62a1f8
- totem: Increase ring_id seq after load (rhbz#1745624)
62a1f8
- merge upstream commit 3675daceeeeb72af043f5c051daed463fdd2d2a1 (rhbz#1745624)
62a1f8
- man: Fix link_mode priority description (rhbz#1745642)
62a1f8
- merge upstream commit 0a323ff2ed0f2aff9cb691072906e69cb96ed662 (rhbz#1745642)
62a1f8
- totemsrp: Reduce MTU to left room second mcast (rhbz#1765025)
62a1f8
- merge upstream commit ee8b8993d98b3f6af9c058194228fc534fcd0796 (rhbz#1765025)
62a1f8
62a1f8
* Tue Aug 06 2019 Jan Friesse <jfriesse@redhat.com> - 3.0.2-3
62a1f8
- Resolves: rhbz#1738218
62a1f8
62a1f8
- Do not set exec permission for service file
62a1f8
- Fix CFLAGS definition
62a1f8
2f5dcb
* Thu Jun 13 2019 Jan Friesse <jfriesse@redhat.com> 3.0.2-2
2f5dcb
- Related: rhbz#1679656
2f5dcb
2f5dcb
- Improve spausedd test
2f5dcb
2f5dcb
* Wed Jun 12 2019 Jan Friesse <jfriesse@redhat.com> 3.0.2-1
2f5dcb
- Resolves: rhbz#1705591
2f5dcb
- Resolves: rhbz#1688889
2f5dcb
2f5dcb
* Mon May 13 2019 Jan Friesse <jfriesse@redhat.com> 3.0.0-4
2f5dcb
- Related: rhbz#1679656
2f5dcb
2f5dcb
- Really add gating
2f5dcb
2f5dcb
* Mon May 13 2019 Jan Friesse <jfriesse@redhat.com> 3.0.0-3
2f5dcb
- Resolves: rhbz#1691401
2f5dcb
- Related: rhbz#1679656
2f5dcb
2f5dcb
- Add spausedd subpackage
2f5dcb
- Add gating tests
2f5dcb
2f5dcb
* Fri Jan 11 2019 Jan Friesse <jfriesse@redhat.com> 3.0.0-2
2f5dcb
- Resolves: rhbz#1665211
2f5dcb
2f5dcb
- totemip: Use AF_UNSPEC for ipv4-6 and ipv6-4 (rhbz#1665211)
2f5dcb
- merge upstream commit 2ab4d4188670356dcb82a80f2fc4598f5145c77d (rhbz#1665211)
2f5dcb
2f5dcb
* Fri Dec 14 2018 Jan Friesse <jfriesse@redhat.com> - 3.0.0-1
2f5dcb
- Resolves: rhbz#1600915
2f5dcb
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Tue Dec 11 2018 Jan Friesse <jfriesse@redhat.com> 2.99.5-2
2f5dcb
- Resolves: rhbz#1654630
2f5dcb
2f5dcb
- man: Add some information about address resolution (rhbz#1654630)
2f5dcb
- merge upstream commit 8d50bd946dd7e01da75f06da3f885e7dc82f4f12 (rhbz#1654630)
2f5dcb
- config: Look up hostnames in a defined order (rhbz#1654630)
2f5dcb
- merge upstream commit 3d7f136f86a56dd9d9caa9060f7a01e8b681eb7f (rhbz#1654630)
2f5dcb
2f5dcb
* Fri Dec  7 2018 Jan Friesse <jfriesse@redhat.com> - 2.99.5-1
2f5dcb
- Related: rhbz#1600915
2f5dcb
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Tue Dec  4 2018 Jan Friesse <jfriesse@redhat.com> - 2.99.4-2
2f5dcb
- Resolves: rhbz#1655179
2f5dcb
2f5dcb
- Add libknet1-crypto-nss-plugin dependency
2f5dcb
2f5dcb
* Tue Nov 20 2018 Jan Friesse <jfriesse@redhat.com> - 2.99.4-1
2f5dcb
- Related: rhbz#1600915
2f5dcb
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Mon Oct 15 2018 Jan Friesse <jfriesse@redhat.com> 2.99.3-5
2f5dcb
- Resolves: rhbz#1639211
2f5dcb
2f5dcb
- config: Fix crash in reload if new interfaces are added (rhbz#1639211)
2f5dcb
- merge upstream commit 9f2d5a3a3faa8bd1021b505bcf3c5428b3435e39 (rhbz#1639211)
2f5dcb
2f5dcb
* Tue Sep 18 2018 Jan Friesse <jfriesse@redhat.com> 2.99.3-4
2f5dcb
- Related: rhbz#1615945
2f5dcb
2f5dcb
- Rebuild for new LibQB
2f5dcb
2f5dcb
* Mon Aug 20 2018 Jan Friesse <jfriesse@redhat.com> 2.99.3-3
2f5dcb
- Resolves: rhbz#1602409
2f5dcb
2f5dcb
- Remove libcgroup (rhbz#1602409)
2f5dcb
- merge upstream commit c9e5d6db13fa965d83e27a3b664477e9b5b26edf (rhbz#1602409)
2f5dcb
2f5dcb
* Mon Jul 30 2018 Florian Weimer <fweimer@redhat.com> - 2.99.3-2
2f5dcb
- Rebuild with fixed binutils
2f5dcb
2f5dcb
* Fri Jul 13 2018 Jan Friesse <jfriesse@redhat.com> - 2.99.3-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Mon Apr 30 2018 Jan Friesse <jfriesse@redhat.com> - 2.99.2-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Fri Mar 16 2018 Jan Friesse <jfriesse@redhat.com> - 2.99.1-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.3-3
2f5dcb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2f5dcb
2f5dcb
* Fri Jan 19 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.4.3-2
2f5dcb
- Rebuild to fix upgradepath
2f5dcb
2f5dcb
* Fri Oct 20 2017 Jan Friesse <jfriesse@redhat.com> - 2.4.3-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Mon Oct 09 2017 Troy Dawson <tdawson@redhat.com> - 2.4.2-7
2f5dcb
- Cleanup spec file conditionals
2f5dcb
2f5dcb
* Mon Oct 02 2017 Troy Dawson <tdawson@redhat.com> - 2.4.2-6
2f5dcb
- Bump to rebuild on newer binutils
2f5dcb
2f5dcb
* Wed Aug 23 2017 Adam Williamson <awilliam@redhat.com> - 2.4.2-5
2f5dcb
- Disable RDMA on 32-bit ARM (#1484155)
2f5dcb
2f5dcb
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.2-4
2f5dcb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
2f5dcb
2f5dcb
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.2-3
2f5dcb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
2f5dcb
2f5dcb
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.2-2
2f5dcb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
2f5dcb
2f5dcb
* Mon Nov  7 2016 Jan Friesse <jfriesse@redhat.com> - 2.4.2-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Thu Aug  4 2016 Jan Friesse <jfriesse@redhat.com> - 2.4.1-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Thu Jun 30 2016 Jan Friesse <jfriesse@redhat.com> - 2.4.0-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Thu Jun 16 2016 Jan Friesse <jfriesse@redhat.com> - 2.3.6-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.5-2
2f5dcb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
2f5dcb
2f5dcb
* Wed Jul 01 2015 Jan Friesse <jfriesse@redhat.com> - 2.3.5-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.4-2
2f5dcb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2f5dcb
2f5dcb
* Tue Aug 26 2014 Jan Friesse <jfriesse@redhat.com> - 2.3.4-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.3-3
2f5dcb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2f5dcb
2f5dcb
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.3-2
2f5dcb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2f5dcb
2f5dcb
* Tue Jan 14 2014 Jan Friesse <jfriesse@redhat.com> - 2.3.3-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Mon Sep 16 2013 Jan Friesse <jfriesse@redhat.com> - 2.3.2-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Mon Aug 19 2013 Jan Friesse <jfriesse@redhat.com> 2.3.1-3
2f5dcb
- Resolves: rhbz#998362
2f5dcb
2f5dcb
- Fix scheduler pause-detection timeout (rhbz#998362)
2f5dcb
- merge upstream commit 2740cfd1eac60714601c74df2137fe588b607866 (rhbz#998362)
2f5dcb
2f5dcb
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.1-2
2f5dcb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2f5dcb
2f5dcb
* Wed Jul 10 2013 Jan Friesse <jfriesse@redhat.com> - 2.3.1-1
2f5dcb
- New upstream release
2f5dcb
- Fix incorrect dates in specfile changelog section
2f5dcb
2f5dcb
* Mon Mar 25 2013 Jan Friesse <jfriesse@redhat.com> - 2.3.0-3
2f5dcb
- Resolves: rhbz#925185
2f5dcb
2f5dcb
- Run autogen by default
2f5dcb
2f5dcb
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.0-2
2f5dcb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2f5dcb
2f5dcb
* Fri Jan 18 2013 Jan Friesse <jfriesse@redhat.com> - 2.3.0-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Wed Dec 12 2012 Jan Friesse <jfriesse@redhat.com> - 2.2.0-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Thu Oct 11 2012 Jan Friesse <jfriesse@redhat.com> - 2.1.0-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Fri Aug 3 2012 Steven Dake <sdake@redhat.com> - 2.0.1-3
2f5dcb
- add groff as a BuildRequires as it is no longer installed in the buildroot
2f5dcb
2f5dcb
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.1-2
2f5dcb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2f5dcb
2f5dcb
* Tue May 22 2012 Jan Friesse <jfriesse@redhat.com> - 2.0.1-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Tue Apr 17 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 2.0.0-2
2f5dcb
- Backport IPCS fix from master (ack by Steven)
2f5dcb
2f5dcb
* Tue Apr 10 2012 Jan Friesse <jfriesse@redhat.com> - 2.0.0-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Thu Apr 05 2012 Karsten Hopp <karsten@redhat.com> 1.99.9-1.1
2f5dcb
- bump release and rebuild on PPC
2f5dcb
2f5dcb
* Tue Mar 27 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.9-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Fri Mar 16 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.8-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Tue Mar  6 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.7-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Tue Feb 28 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.6-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Wed Feb 22 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.5-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Tue Feb 14 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.4-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Tue Feb 14 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.3-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Tue Feb  7 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.99.2-1
2f5dcb
- New upstream release
2f5dcb
- Re-enable xmlconfig bits
2f5dcb
- Ship cmap man pages
2f5dcb
- Add workaround to usrmove breakage!!
2f5dcb
2f5dcb
* Thu Feb  2 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.99.1-2
2f5dcb
- Add proper Obsoltes on openais/cman/clusterlib
2f5dcb
2f5dcb
* Wed Feb  1 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.99.1-1
2f5dcb
- New upstream release
2f5dcb
- Temporary disable xml config (broken upstream tarball)
2f5dcb
2f5dcb
* Tue Jan 24 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.0-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-2
2f5dcb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2f5dcb
2f5dcb
* Thu Oct 06 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.2-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Thu Sep 08 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.1-2
2f5dcb
- Add upstream fixes
2f5dcb
2f5dcb
* Tue Jul 26 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.1-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Wed Jul 20 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.0-2
2f5dcb
- Change attributes of cluster log directory
2f5dcb
2f5dcb
* Tue Jul 19 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.0-1
2f5dcb
- New upstream release
2f5dcb
- Resync spec file with upstream changes
2f5dcb
2f5dcb
* Fri Jul 08 2011 Jan Friesse <jfriesse@redhat.com> - 1.3.2-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Tue May 10 2011 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.3.1-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-2
2f5dcb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
2f5dcb
2f5dcb
* Thu Dec  2 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.3.0-1
2f5dcb
- New upstream release
2f5dcb
- drop upstream patch revision-2770.patch now included in release
2f5dcb
- update spec file to ship corosync-blackbox
2f5dcb
2f5dcb
* Thu Sep  2 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.8-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Thu Jul 29 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.7-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Fri Jul  9 2010 Dan Horák <dan[at]danny.cz> - 1.2.6-2
2f5dcb
- no InfiniBand stack on s390(x)
2f5dcb
2f5dcb
* Mon Jul  5 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.6-1
2f5dcb
- New upstream release
2f5dcb
- Resync spec file with upstream changes
2f5dcb
2f5dcb
* Tue May 25 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.3-1
2f5dcb
- New upstream release
2f5dcb
- Rediff revision 2770 patch
2f5dcb
2f5dcb
* Mon May 17 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.2-1
2f5dcb
- New upstream release
2f5dcb
- Add upstream trunk revision 2770 to add cpg_model_initialize api.
2f5dcb
- Fix URL and Source0 entries.
2f5dcb
- Add workaround to broken 1.2.2 Makefile with make -j.
2f5dcb
2f5dcb
* Wed Mar 24 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.1-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Tue Dec  8 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.0-1
2f5dcb
- New upstream release
2f5dcb
- Use global instead of define
2f5dcb
- Update Source0 url
2f5dcb
- Use more name macro around
2f5dcb
- Cleanup install section. Init script is now installed by upstream
2f5dcb
- Cleanup whitespace
2f5dcb
- Don't deadlock between package upgrade and corosync condrestart
2f5dcb
- Ship service.d config directory
2f5dcb
- Fix Conflicts vs Requires
2f5dcb
- Ship new sam library and man pages
2f5dcb
2f5dcb
* Fri Oct 23 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.1.2-1
2f5dcb
- New upstream release fixes major regression on specific loads
2f5dcb
2f5dcb
* Wed Oct 21 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.1.1-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Fri Sep 25 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.1.0-1
2f5dcb
- New upstream release
2f5dcb
- spec file updates:
2f5dcb
  * enable IB support
2f5dcb
  * explicitly define built-in features at configure time
2f5dcb
2f5dcb
* Tue Sep 22 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.0.1-1
2f5dcb
- New upstream release
2f5dcb
- spec file updates:
2f5dcb
  * use proper configure macro
2f5dcb
2f5dcb
* Tue Jul 28 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.0.0-3
2f5dcb
- spec file updates:
2f5dcb
  * more consistent use of macros across the board
2f5dcb
  * fix directory ownership
2f5dcb
2f5dcb
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.0-2
2f5dcb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
2f5dcb
2f5dcb
* Wed Jul  8 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.0.0-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Thu Jul  2 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.100-1
2f5dcb
- New upstream release
2f5dcb
2f5dcb
* Sat Jun 20 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.98-1
2f5dcb
- New upstream release
2f5dcb
- spec file updates:
2f5dcb
  * Drop corosync-trunk patch and alpha tag.
2f5dcb
  * Fix alphatag vs buildtrunk handling.
2f5dcb
  * Drop requirement on ais user/group and stop creating them.
2f5dcb
  * New config file locations from upstream: /etc/corosync/corosync.conf.
2f5dcb
2f5dcb
* Wed Jun 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.97-1.svn2233
2f5dcb
- spec file updates:
2f5dcb
  * Update to svn version 2233 to include library linking fixes
2f5dcb
2f5dcb
* Wed Jun 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.97-1.svn2232
2f5dcb
- New upstream release
2f5dcb
- spec file updates:
2f5dcb
  * Drop pkgconfig fix that's now upstream
2f5dcb
  * Update to svn version 2232
2f5dcb
  * Define buildtrunk if we are using svn snapshots
2f5dcb
  * BuildRequires: nss-devel to enable nss crypto for network communication
2f5dcb
  * Force autogen invokation if buildtrunk is defined
2f5dcb
  * Whitespace cleanup
2f5dcb
  * Stop shipping corosync.conf in favour of a generic example
2f5dcb
  * Update file list
2f5dcb
2f5dcb
* Mon Mar 30 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.95-2
2f5dcb
- Backport svn commit 1913 to fix pkgconfig files generation
2f5dcb
  and unbreak lvm2 build.
2f5dcb
2f5dcb
* Tue Mar 24 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.95-1
2f5dcb
- New upstream release
2f5dcb
- spec file updates:
2f5dcb
  * Drop alpha tag
2f5dcb
  * Drop local patches (no longer required)
2f5dcb
  * Allow to build from svn trunk by supporting rpmbuild --with buildtrunk 
2f5dcb
  * BuildRequires autoconf automake if building from trunk
2f5dcb
  * Execute autogen.sh if building from trunk and if no configure is available
2f5dcb
  * Switch to use rpm configure macro and set standard install paths
2f5dcb
  * Build invokation now supports _smp_mflags
2f5dcb
  * Remove install section for docs and use proper doc macro instead
2f5dcb
  * Add tree fixup bits to drop static libs and html docs (only for now)
2f5dcb
  * Add LICENSE file to all subpackages
2f5dcb
  * libraries have moved to libdir. Drop ld.so.conf.d corosync file
2f5dcb
  * Update BuildRoot usage to preferred versions/names
2f5dcb
2f5dcb
* Tue Mar 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-5.svn1797
2f5dcb
- Update the corosync-trunk patch for real this time.
2f5dcb
2f5dcb
* Tue Mar 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-4.svn1797
2f5dcb
- Import fixes from upstream:
2f5dcb
  * Cleanup logsys format init around to use default settings (1795)
2f5dcb
  * logsys_format_set should use its own internal copy of format_buffer (1796)
2f5dcb
  * Add logsys_format_get to logsys API (1797)
2f5dcb
- Cherry pick svn1807 to unbreak CPG.
2f5dcb
2f5dcb
* Mon Mar  9 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-3.svn1794
2f5dcb
- Import fixes from upstream:
2f5dcb
  * Add reserve/release feature to totem message queue space (1793)
2f5dcb
  * Fix CG shutdown (1794)
2f5dcb
2f5dcb
* Fri Mar  6 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-2.svn1792
2f5dcb
- Import fixes from upstream:
2f5dcb
  * Fix uninitialized memory. Spotted by valgrind (1788)
2f5dcb
  * Fix logsys_set_format by updating the right bits (1789)
2f5dcb
  * logsys: re-add support for timestamp  (1790)
2f5dcb
  * Fix cpg crash (1791)
2f5dcb
  * Allow logsys_format_set to reset to default (1792)
2f5dcb
2f5dcb
* Tue Mar  3 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-1
2f5dcb
- New upstream release.
2f5dcb
- Drop obsolete patches.
2f5dcb
- Add soname bump patch that was missing from upstream.
2f5dcb
2f5dcb
* Wed Feb 25 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.93-4
2f5dcb
- Add Makefile fix to install all corosync tools (commit r1780)
2f5dcb
2f5dcb
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.93-3
2f5dcb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
2f5dcb
2f5dcb
* Mon Feb 23 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.93-2
2f5dcb
- Rename gcc-4.4 patch to match svn commit (r1767).
2f5dcb
- Backport patch from trunk (commit r1774) to fix quorum engine.
2f5dcb
2f5dcb
* Thu Feb 19 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.93-1
2f5dcb
- New upstream release.
2f5dcb
- Drop alphatag from spec file.
2f5dcb
- Drop trunk patch.
2f5dcb
- Update Provides for corosynclib-devel.
2f5dcb
- Backport gcc-4.4 build fix from trunk.
2f5dcb
2f5dcb
* Mon Feb  2 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.92-7.svn1756
2f5dcb
- Update to svn trunk at revision 1756 from upstream.
2f5dcb
- Add support pkgconfig to devel package.
2f5dcb
- Tidy up spec files by re-organazing sections according to packages.
2f5dcb
- Split libraries from corosync to corosynclib.
2f5dcb
- Rename corosync-devel to corosynclib-devel.
2f5dcb
- Comply with multiarch requirements (libraries).
2f5dcb
2f5dcb
* Tue Jan 27 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.92-6.svn1750
2f5dcb
- Update to svn trunk at revision 1750 from upstream.
2f5dcb
- Include new quorum service in the packaging.
2f5dcb
2f5dcb
* Mon Dec 15 2008 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.92-5.svn1709
2f5dcb
- Update to svn trunk at revision 1709 from upstream.
2f5dcb
- Update spec file to include new include files.
2f5dcb
2f5dcb
* Wed Dec 10 2008 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.92-4.svn1707
2f5dcb
- Update to svn trunk at revision 1707 from upstream.
2f5dcb
- Update spec file to include new lcrso services and include file.
2f5dcb
2f5dcb
* Mon Oct 13 2008 Dennis Gilmore <dennis@ausil.us> - 0.92-3
2f5dcb
- remove ExclusiveArch line
2f5dcb
2f5dcb
* Wed Sep 24 2008 Steven Dake <sdake@redhat.com> - 0.92-2
2f5dcb
- Add conflicts for openais and openais-devel packages older then 0.90.
2f5dcb
2f5dcb
* Wed Sep 24 2008 Steven Dake <sdake@redhat.com> - 0.92-1
2f5dcb
- New upstream release corosync-0.92.
2f5dcb
2f5dcb
* Sun Aug 24 2008 Steven Dake <sdake@redhat.com> - 0.91-3
2f5dcb
- move logsys_overview.8.* to devel package.
2f5dcb
- move shared libs to main package.
2f5dcb
2f5dcb
* Wed Aug 20 2008 Steven Dake <sdake@redhat.com> - 0.91-2
2f5dcb
- use /sbin/service instead of calling init script directly.
2f5dcb
- put corosync-objctl man page in the main package.
2f5dcb
- change all initrddir to initddir for fedora 10 guidelines.
2f5dcb
2f5dcb
* Thu Aug 14 2008 Steven Dake <sdake@redhat.com> - 0.91-1
2f5dcb
- First upstream packaged version of corosync for rawhide review.