2011-07-19 14:45:40 +00:00
|
|
|
# Conditionals
|
|
|
|
# Invoke "rpmbuild --without <feature>" or "rpmbuild --with <feature>"
|
|
|
|
# to disable or enable specific features
|
|
|
|
%bcond_with testagents
|
|
|
|
%bcond_with watchdog
|
|
|
|
%bcond_with monitoring
|
|
|
|
%bcond_without snmp
|
|
|
|
%bcond_without dbus
|
2012-02-01 05:14:45 +00:00
|
|
|
%bcond_without systemd
|
2012-02-07 11:01:32 +00:00
|
|
|
%bcond_without xmlconf
|
2013-03-25 16:11:32 +00:00
|
|
|
%bcond_without runautogen
|
2017-10-20 14:35:57 +00:00
|
|
|
%bcond_without libcgroup
|
2012-10-11 09:16:29 +00:00
|
|
|
|
|
|
|
%global gitver %{?numcomm:.%{numcomm}}%{?alphatag:.%{alphatag}}%{?dirty:.%{dirty}}
|
|
|
|
%global gittarver %{?numcomm:.%{numcomm}}%{?alphatag:-%{alphatag}}%{?dirty:-%{dirty}}
|
2008-12-10 07:42:53 +00:00
|
|
|
|
2008-09-25 06:16:38 +00:00
|
|
|
Name: corosync
|
|
|
|
Summary: The Corosync Cluster Engine and Application Programming Interfaces
|
2018-07-13 12:28:39 +00:00
|
|
|
Version: 2.99.3
|
2018-08-16 19:06:55 +00:00
|
|
|
Release: 3%{?gitver}%{?dist}
|
2008-09-25 06:16:38 +00:00
|
|
|
License: BSD
|
2016-01-05 16:12:38 +00:00
|
|
|
URL: http://corosync.github.io/corosync/
|
|
|
|
Source0: http://build.clusterlabs.org/corosync/releases/%{name}-%{version}%{?gittarver}.tar.gz
|
2018-08-16 19:06:55 +00:00
|
|
|
Patch0: https://github.com/corosync/corosync/commit/c34208ad402b45f52b5d3ee8d2a08df0779ec9aa.patch
|
2012-05-22 08:42:02 +00:00
|
|
|
|
2009-02-02 07:30:05 +00:00
|
|
|
# Runtime bits
|
2017-10-20 14:35:57 +00:00
|
|
|
# The automatic dependency overridden in favor of explicit version lock
|
|
|
|
Requires: corosynclib%{?_isa} = %{version}-%{release}
|
2008-09-25 06:16:38 +00:00
|
|
|
|
2009-12-08 01:38:52 +00:00
|
|
|
# Build bits
|
2018-07-10 06:16:51 +00:00
|
|
|
BuildRequires: gcc
|
2012-08-03 16:26:58 +00:00
|
|
|
BuildRequires: groff
|
2018-03-22 08:03:07 +00:00
|
|
|
BuildRequires: libqb-devel
|
2012-03-16 09:52:12 +00:00
|
|
|
BuildRequires: nss-devel
|
2018-03-22 08:03:07 +00:00
|
|
|
BuildRequires: libknet1-devel
|
2015-07-01 15:32:58 +00:00
|
|
|
BuildRequires: zlib-devel
|
2012-10-11 09:16:29 +00:00
|
|
|
%if %{with runautogen}
|
|
|
|
BuildRequires: autoconf automake libtool
|
|
|
|
%endif
|
|
|
|
%if %{with monitoring}
|
|
|
|
BuildRequires: libstatgrab-devel
|
2009-03-24 07:33:41 +00:00
|
|
|
%endif
|
2011-07-19 14:45:40 +00:00
|
|
|
%if %{with snmp}
|
|
|
|
BuildRequires: net-snmp-devel
|
|
|
|
%endif
|
|
|
|
%if %{with dbus}
|
|
|
|
BuildRequires: dbus-devel
|
|
|
|
%endif
|
2012-02-01 05:14:45 +00:00
|
|
|
%if %{with systemd}
|
2018-03-22 08:03:07 +00:00
|
|
|
%{?systemd_requires}
|
|
|
|
BuildRequires: systemd
|
|
|
|
BuildRequires: systemd-devel
|
|
|
|
%else
|
|
|
|
Requires(post): /sbin/chkconfig
|
|
|
|
Requires(preun): /sbin/chkconfig
|
2012-02-01 05:14:45 +00:00
|
|
|
%endif
|
|
|
|
%if %{with xmlconf}
|
|
|
|
Requires: libxslt
|
|
|
|
%endif
|
2017-10-20 14:35:57 +00:00
|
|
|
%if %{with libcgroup}
|
|
|
|
BuildRequires: libcgroup-devel
|
|
|
|
%endif
|
2009-03-24 07:33:41 +00:00
|
|
|
|
2018-08-16 19:06:55 +00:00
|
|
|
# git-style patch application
|
|
|
|
BuildRequires: git
|
|
|
|
|
2008-09-25 06:16:38 +00:00
|
|
|
%prep
|
2012-10-11 09:16:29 +00:00
|
|
|
%setup -q -n %{name}-%{version}%{?gittarver}
|
2018-08-16 19:06:55 +00:00
|
|
|
%global __scm git_am
|
|
|
|
%__scm_setup_git
|
|
|
|
%autopatch -p1
|
2008-09-25 06:16:38 +00:00
|
|
|
|
2010-07-05 12:15:34 +00:00
|
|
|
%build
|
2012-10-11 09:16:29 +00:00
|
|
|
%if %{with runautogen}
|
2009-06-10 06:59:19 +00:00
|
|
|
./autogen.sh
|
2009-03-24 07:33:41 +00:00
|
|
|
%endif
|
2008-09-25 06:16:38 +00:00
|
|
|
|
2009-09-25 09:52:16 +00:00
|
|
|
%{configure} \
|
2011-07-19 14:45:40 +00:00
|
|
|
%if %{with testagents}
|
|
|
|
--enable-testagents \
|
|
|
|
%endif
|
|
|
|
%if %{with watchdog}
|
|
|
|
--enable-watchdog \
|
|
|
|
%endif
|
|
|
|
%if %{with monitoring}
|
|
|
|
--enable-monitoring \
|
|
|
|
%endif
|
|
|
|
%if %{with snmp}
|
|
|
|
--enable-snmp \
|
|
|
|
%endif
|
|
|
|
%if %{with dbus}
|
|
|
|
--enable-dbus \
|
|
|
|
%endif
|
2012-02-01 05:14:45 +00:00
|
|
|
%if %{with systemd}
|
|
|
|
--enable-systemd \
|
|
|
|
%endif
|
|
|
|
%if %{with xmlconf}
|
|
|
|
--enable-xmlconf \
|
2016-06-30 15:38:02 +00:00
|
|
|
%endif
|
2017-10-20 14:35:57 +00:00
|
|
|
%if %{with libcgroup}
|
|
|
|
--enable-libcgroup \
|
2010-07-09 11:10:57 +00:00
|
|
|
%endif
|
2012-04-10 15:05:59 +00:00
|
|
|
--with-initddir=%{_initrddir} \
|
2013-07-10 11:13:55 +00:00
|
|
|
--with-systemddir=%{_unitdir} \
|
2018-03-22 08:03:07 +00:00
|
|
|
--docdir=%{_docdir}
|
2009-03-24 07:33:41 +00:00
|
|
|
|
2010-05-25 06:12:52 +00:00
|
|
|
make %{_smp_mflags}
|
2008-09-25 06:16:38 +00:00
|
|
|
|
|
|
|
%install
|
2009-03-24 07:33:41 +00:00
|
|
|
make install DESTDIR=%{buildroot}
|
|
|
|
|
2011-07-19 14:45:40 +00:00
|
|
|
%if %{with dbus}
|
|
|
|
mkdir -p -m 0700 %{buildroot}/%{_sysconfdir}/dbus-1/system.d
|
2012-10-11 09:16:29 +00:00
|
|
|
install -m 644 %{_builddir}/%{name}-%{version}%{?gittarver}/conf/corosync-signals.conf %{buildroot}/%{_sysconfdir}/dbus-1/system.d/corosync-signals.conf
|
2011-07-19 14:45:40 +00:00
|
|
|
%endif
|
|
|
|
|
2009-03-24 07:33:41 +00:00
|
|
|
## tree fixup
|
|
|
|
# drop static libs
|
|
|
|
rm -f %{buildroot}%{_libdir}/*.a
|
2012-10-11 09:16:29 +00:00
|
|
|
rm -f %{buildroot}%{_libdir}/*.la
|
2009-03-24 07:33:41 +00:00
|
|
|
# drop docs and html docs for now
|
|
|
|
rm -rf %{buildroot}%{_docdir}/*
|
2013-07-10 11:13:55 +00:00
|
|
|
# /etc/sysconfig/corosync-notifyd
|
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/sysconfig
|
|
|
|
install -m 644 tools/corosync-notifyd.sysconfig.example \
|
|
|
|
%{buildroot}%{_sysconfdir}/sysconfig/corosync-notifyd
|
2014-08-26 14:20:19 +00:00
|
|
|
# /etc/sysconfig/corosync
|
|
|
|
install -m 644 init/corosync.sysconfig.example \
|
|
|
|
%{buildroot}%{_sysconfdir}/sysconfig/corosync
|
2008-09-25 06:16:38 +00:00
|
|
|
|
2009-12-08 01:38:52 +00:00
|
|
|
%description
|
2009-02-02 07:30:05 +00:00
|
|
|
This package contains the Corosync Cluster Engine Executive, several default
|
|
|
|
APIs and libraries, default configuration files, and an init script.
|
|
|
|
|
2008-09-25 06:16:38 +00:00
|
|
|
%post
|
2012-10-11 09:16:29 +00:00
|
|
|
%if %{with systemd} && 0%{?systemd_post:1}
|
|
|
|
%systemd_post corosync.service
|
|
|
|
%else
|
2010-07-05 12:15:34 +00:00
|
|
|
if [ $1 -eq 1 ]; then
|
|
|
|
/sbin/chkconfig --add corosync || :
|
|
|
|
fi
|
2012-10-11 09:16:29 +00:00
|
|
|
%endif
|
2008-09-25 06:16:38 +00:00
|
|
|
|
|
|
|
%preun
|
2012-10-11 09:16:29 +00:00
|
|
|
%if %{with systemd} && 0%{?systemd_preun:1}
|
|
|
|
%systemd_preun corosync.service
|
|
|
|
%else
|
2008-09-25 06:16:38 +00:00
|
|
|
if [ $1 -eq 0 ]; then
|
|
|
|
/sbin/service corosync stop &>/dev/null || :
|
|
|
|
/sbin/chkconfig --del corosync || :
|
|
|
|
fi
|
2012-10-11 09:16:29 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%if %{with systemd} && 0%{?systemd_postun:1}
|
2018-03-22 08:03:07 +00:00
|
|
|
%systemd_postun corosync.service
|
2012-10-11 09:16:29 +00:00
|
|
|
%endif
|
2008-09-25 06:16:38 +00:00
|
|
|
|
2009-12-08 01:38:52 +00:00
|
|
|
%files
|
2018-04-30 14:24:16 +00:00
|
|
|
%doc LICENSE
|
2011-07-19 14:45:40 +00:00
|
|
|
%{_sbindir}/corosync
|
2008-09-25 06:16:38 +00:00
|
|
|
%{_sbindir}/corosync-keygen
|
2012-02-01 05:14:45 +00:00
|
|
|
%{_sbindir}/corosync-cmapctl
|
2008-09-25 06:16:38 +00:00
|
|
|
%{_sbindir}/corosync-cfgtool
|
2009-09-25 09:52:16 +00:00
|
|
|
%{_sbindir}/corosync-cpgtool
|
|
|
|
%{_sbindir}/corosync-quorumtool
|
2011-07-19 14:45:40 +00:00
|
|
|
%{_sbindir}/corosync-notifyd
|
2012-02-01 05:14:45 +00:00
|
|
|
%{_bindir}/corosync-blackbox
|
|
|
|
%if %{with xmlconf}
|
|
|
|
%{_bindir}/corosync-xmlproc
|
2012-02-07 11:01:32 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/corosync/corosync.xml.example
|
|
|
|
%dir %{_datadir}/corosync
|
2013-07-10 11:13:55 +00:00
|
|
|
%{_datadir}/corosync/xml2conf.xsl
|
2012-02-07 11:01:32 +00:00
|
|
|
%{_mandir}/man8/corosync-xmlproc.8*
|
|
|
|
%{_mandir}/man5/corosync.xml.5*
|
2012-02-01 05:14:45 +00:00
|
|
|
%endif
|
2009-07-28 07:22:41 +00:00
|
|
|
%dir %{_sysconfdir}/corosync
|
|
|
|
%dir %{_sysconfdir}/corosync/uidgid.d
|
|
|
|
%config(noreplace) %{_sysconfdir}/corosync/corosync.conf.example
|
2010-12-02 08:21:21 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/corosync/corosync.conf.example.udpu
|
2013-07-10 11:13:55 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/corosync-notifyd
|
2014-08-26 14:20:19 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/corosync
|
2015-07-01 15:32:58 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/logrotate.d/corosync
|
2011-07-19 14:45:40 +00:00
|
|
|
%if %{with dbus}
|
|
|
|
%{_sysconfdir}/dbus-1/system.d/corosync-signals.conf
|
|
|
|
%endif
|
|
|
|
%if %{with snmp}
|
|
|
|
%{_datadir}/snmp/mibs/COROSYNC-MIB.txt
|
|
|
|
%endif
|
2012-02-01 05:14:45 +00:00
|
|
|
%if %{with systemd}
|
|
|
|
%{_unitdir}/corosync.service
|
|
|
|
%{_unitdir}/corosync-notifyd.service
|
|
|
|
%else
|
2010-07-05 12:15:34 +00:00
|
|
|
%{_initrddir}/corosync
|
2011-07-19 14:45:40 +00:00
|
|
|
%{_initrddir}/corosync-notifyd
|
2012-02-01 05:14:45 +00:00
|
|
|
%endif
|
2009-07-28 07:22:41 +00:00
|
|
|
%dir %{_localstatedir}/lib/corosync
|
2010-07-05 12:15:34 +00:00
|
|
|
%dir %{_localstatedir}/log/cluster
|
2018-03-22 08:03:07 +00:00
|
|
|
%{_mandir}/man7/corosync_overview.7*
|
2010-07-05 12:15:34 +00:00
|
|
|
%{_mandir}/man8/corosync.8*
|
|
|
|
%{_mandir}/man8/corosync-blackbox.8*
|
2012-02-01 05:14:45 +00:00
|
|
|
%{_mandir}/man8/corosync-cmapctl.8*
|
2010-07-05 12:15:34 +00:00
|
|
|
%{_mandir}/man8/corosync-keygen.8*
|
|
|
|
%{_mandir}/man8/corosync-cfgtool.8*
|
|
|
|
%{_mandir}/man8/corosync-cpgtool.8*
|
2011-07-19 14:45:40 +00:00
|
|
|
%{_mandir}/man8/corosync-notifyd.8*
|
2010-07-05 12:15:34 +00:00
|
|
|
%{_mandir}/man8/corosync-quorumtool.8*
|
2009-02-02 10:19:41 +00:00
|
|
|
%{_mandir}/man5/corosync.conf.5*
|
2012-02-01 05:14:45 +00:00
|
|
|
%{_mandir}/man5/votequorum.5*
|
2012-04-10 15:05:59 +00:00
|
|
|
%{_mandir}/man8/cmap_keys.8*
|
2012-02-01 05:14:45 +00:00
|
|
|
|
|
|
|
# optional testagent rpm
|
|
|
|
#
|
|
|
|
%if %{with testagents}
|
2009-02-02 10:19:41 +00:00
|
|
|
|
2012-02-01 05:14:45 +00:00
|
|
|
%package -n corosync-testagents
|
|
|
|
Summary: The Corosync Cluster Engine Test Agents
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n corosync-testagents
|
|
|
|
This package contains corosync test agents.
|
|
|
|
|
|
|
|
%files -n corosync-testagents
|
|
|
|
%defattr(755,root,root,-)
|
|
|
|
%{_datadir}/corosync/tests/mem_leak_test.sh
|
|
|
|
%{_datadir}/corosync/tests/net_breaker.sh
|
|
|
|
%{_datadir}/corosync/tests/cmap-dispatch-deadlock.sh
|
|
|
|
%{_datadir}/corosync/tests/shm_leak_audit.sh
|
|
|
|
%{_bindir}/cpg_test_agent
|
|
|
|
%{_bindir}/sam_test_agent
|
|
|
|
%{_bindir}/votequorum_test_agent
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
# library
|
|
|
|
#
|
2009-02-02 10:23:29 +00:00
|
|
|
%package -n corosynclib
|
2009-02-02 10:19:41 +00:00
|
|
|
Summary: The Corosync Cluster Engine Libraries
|
|
|
|
|
2009-02-02 10:23:29 +00:00
|
|
|
%description -n corosynclib
|
2009-02-02 10:19:41 +00:00
|
|
|
This package contains corosync libraries.
|
|
|
|
|
2009-02-02 10:23:29 +00:00
|
|
|
%files -n corosynclib
|
2009-03-24 07:33:41 +00:00
|
|
|
%doc LICENSE
|
|
|
|
%{_libdir}/libcfg.so.*
|
|
|
|
%{_libdir}/libcpg.so.*
|
2012-02-01 05:14:45 +00:00
|
|
|
%{_libdir}/libcmap.so.*
|
2009-03-24 07:33:41 +00:00
|
|
|
%{_libdir}/libtotem_pg.so.*
|
|
|
|
%{_libdir}/libquorum.so.*
|
|
|
|
%{_libdir}/libvotequorum.so.*
|
2009-12-08 01:38:52 +00:00
|
|
|
%{_libdir}/libsam.so.*
|
2012-02-22 12:58:06 +00:00
|
|
|
%{_libdir}/libcorosync_common.so.*
|
2009-02-02 10:19:41 +00:00
|
|
|
|
2009-02-02 10:23:29 +00:00
|
|
|
%post -n corosynclib -p /sbin/ldconfig
|
2009-02-02 10:19:41 +00:00
|
|
|
|
2009-02-02 10:23:29 +00:00
|
|
|
%postun -n corosynclib -p /sbin/ldconfig
|
2008-09-25 06:16:38 +00:00
|
|
|
|
2009-02-02 10:23:29 +00:00
|
|
|
%package -n corosynclib-devel
|
2009-02-02 07:59:42 +00:00
|
|
|
Summary: The Corosync Cluster Engine Development Kit
|
2017-10-20 14:35:57 +00:00
|
|
|
Requires: corosynclib%{?_isa} = %{version}-%{release}
|
2009-02-02 07:30:05 +00:00
|
|
|
Requires: pkgconfig
|
2009-02-19 08:56:09 +00:00
|
|
|
Provides: corosync-devel = %{version}
|
2009-02-02 07:30:05 +00:00
|
|
|
|
2009-02-02 10:23:29 +00:00
|
|
|
%description -n corosynclib-devel
|
2009-02-02 07:30:05 +00:00
|
|
|
This package contains include files and man pages used to develop using
|
|
|
|
The Corosync Cluster Engine APIs.
|
|
|
|
|
2009-02-02 10:23:29 +00:00
|
|
|
%files -n corosynclib-devel
|
2012-02-01 05:14:45 +00:00
|
|
|
%doc LICENSE
|
2008-09-25 06:16:38 +00:00
|
|
|
%dir %{_includedir}/corosync/
|
2009-06-10 06:59:19 +00:00
|
|
|
%{_includedir}/corosync/corodefs.h
|
2008-09-25 06:16:38 +00:00
|
|
|
%{_includedir}/corosync/cfg.h
|
2012-02-01 05:14:45 +00:00
|
|
|
%{_includedir}/corosync/cmap.h
|
2008-12-10 07:42:53 +00:00
|
|
|
%{_includedir}/corosync/corotypes.h
|
2008-09-25 06:16:38 +00:00
|
|
|
%{_includedir}/corosync/cpg.h
|
|
|
|
%{_includedir}/corosync/hdb.h
|
2009-12-08 01:38:52 +00:00
|
|
|
%{_includedir}/corosync/sam.h
|
2009-01-27 10:44:56 +00:00
|
|
|
%{_includedir}/corosync/quorum.h
|
|
|
|
%{_includedir}/corosync/votequorum.h
|
2008-09-25 06:16:38 +00:00
|
|
|
%dir %{_includedir}/corosync/totem/
|
|
|
|
%{_includedir}/corosync/totem/totem.h
|
|
|
|
%{_includedir}/corosync/totem/totemip.h
|
|
|
|
%{_includedir}/corosync/totem/totempg.h
|
2018-03-22 08:03:07 +00:00
|
|
|
%{_includedir}/corosync/totem/totemstats.h
|
2009-03-24 07:33:41 +00:00
|
|
|
%{_libdir}/libcfg.so
|
|
|
|
%{_libdir}/libcpg.so
|
2012-02-01 05:14:45 +00:00
|
|
|
%{_libdir}/libcmap.so
|
2009-03-24 07:33:41 +00:00
|
|
|
%{_libdir}/libtotem_pg.so
|
|
|
|
%{_libdir}/libquorum.so
|
|
|
|
%{_libdir}/libvotequorum.so
|
2009-12-08 01:38:52 +00:00
|
|
|
%{_libdir}/libsam.so
|
2012-02-22 12:58:06 +00:00
|
|
|
%{_libdir}/libcorosync_common.so
|
2009-02-02 07:19:05 +00:00
|
|
|
%{_libdir}/pkgconfig/*.pc
|
2008-09-25 06:16:38 +00:00
|
|
|
%{_mandir}/man3/cpg_*3*
|
2012-02-01 05:14:45 +00:00
|
|
|
%{_mandir}/man3/quorum_*3*
|
2009-01-27 10:44:56 +00:00
|
|
|
%{_mandir}/man3/votequorum_*3*
|
2009-12-08 01:38:52 +00:00
|
|
|
%{_mandir}/man3/sam_*3*
|
2012-02-14 11:28:45 +00:00
|
|
|
%{_mandir}/man3/cmap_*3*
|
2016-06-30 15:38:02 +00:00
|
|
|
|
2008-09-25 06:16:38 +00:00
|
|
|
%changelog
|
2018-08-16 19:06:55 +00:00
|
|
|
* Thu Aug 16 2018 Jan Pokorný <jpokorny+rpm-corosync@redhat.com> - 2.99.3-3
|
|
|
|
- Rebuild again, since the previous one was so unfortunate it got affected
|
|
|
|
with binutils (2.31.1-3.fc29) producing non-monotonically increasing
|
|
|
|
section offsets causing unprepared eu-strip to damage the binary
|
|
|
|
(related: rhbz#1609577)
|
|
|
|
- Apply patch to drop prevent redundancy in systemd journal
|
|
|
|
|
2018-07-24 21:40:15 +00:00
|
|
|
* Tue Jul 24 2018 Adam Williamson <awilliam@redhat.com> - 2.99.3-2
|
|
|
|
- Rebuild for new net-snmp
|
|
|
|
|
2018-07-13 12:28:39 +00:00
|
|
|
* Fri Jul 13 2018 Jan Friesse <jfriesse@redhat.com> - 2.99.3-1
|
|
|
|
- New upstream release
|
|
|
|
|
2018-07-12 22:15:59 +00:00
|
|
|
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.99.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-04-30 14:24:16 +00:00
|
|
|
* Mon Apr 30 2018 Jan Friesse <jfriesse@redhat.com> - 2.99.2-1
|
|
|
|
- New upstream release
|
|
|
|
|
2018-03-22 08:03:07 +00:00
|
|
|
* Fri Mar 16 2018 Jan Friesse <jfriesse@redhat.com> - 2.99.1-1
|
|
|
|
- New upstream release
|
|
|
|
|
2018-02-07 05:46:28 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-19 09:14:55 +00:00
|
|
|
* Fri Jan 19 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.4.3-2
|
|
|
|
- Rebuild to fix upgradepath
|
|
|
|
|
2017-10-20 14:35:57 +00:00
|
|
|
* Fri Oct 20 2017 Jan Friesse <jfriesse@redhat.com> - 2.4.3-1
|
|
|
|
- New upstream release
|
|
|
|
|
2017-10-09 21:53:31 +00:00
|
|
|
* Mon Oct 09 2017 Troy Dawson <tdawson@redhat.com> - 2.4.2-7
|
|
|
|
- Cleanup spec file conditionals
|
|
|
|
|
2017-10-02 14:27:50 +00:00
|
|
|
* Mon Oct 02 2017 Troy Dawson <tdawson@redhat.com> - 2.4.2-6
|
|
|
|
- Bump to rebuild on newer binutils
|
|
|
|
|
2017-08-23 18:48:07 +00:00
|
|
|
* Wed Aug 23 2017 Adam Williamson <awilliam@redhat.com> - 2.4.2-5
|
|
|
|
- Disable RDMA on 32-bit ARM (#1484155)
|
|
|
|
|
2017-08-02 19:11:31 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 05:32:01 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-10 07:54:54 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-11-07 16:52:52 +00:00
|
|
|
* Mon Nov 7 2016 Jan Friesse <jfriesse@redhat.com> - 2.4.2-1
|
|
|
|
- New upstream release
|
|
|
|
|
2016-08-04 15:51:46 +00:00
|
|
|
* Thu Aug 4 2016 Jan Friesse <jfriesse@redhat.com> - 2.4.1-1
|
|
|
|
- New upstream release
|
|
|
|
|
2016-06-30 15:38:02 +00:00
|
|
|
* Thu Jun 30 2016 Jan Friesse <jfriesse@redhat.com> - 2.4.0-1
|
|
|
|
- New upstream release
|
|
|
|
|
2016-06-16 08:56:18 +00:00
|
|
|
* Thu Jun 16 2016 Jan Friesse <jfriesse@redhat.com> - 2.3.6-1
|
|
|
|
- New upstream release
|
|
|
|
|
2016-02-03 18:08:13 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-07-01 15:32:58 +00:00
|
|
|
* Wed Jul 01 2015 Jan Friesse <jfriesse@redhat.com> - 2.3.5-1
|
|
|
|
- New upstream release
|
|
|
|
|
2015-06-17 03:16:37 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2014-08-26 14:20:19 +00:00
|
|
|
* Tue Aug 26 2014 Jan Friesse <jfriesse@redhat.com> - 2.3.4-1
|
|
|
|
- New upstream release
|
|
|
|
|
2014-08-16 01:19:51 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-07 05:57:18 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-01-14 15:25:55 +00:00
|
|
|
* Tue Jan 14 2014 Jan Friesse <jfriesse@redhat.com> - 2.3.3-1
|
|
|
|
- New upstream release
|
|
|
|
|
2013-09-16 09:18:36 +00:00
|
|
|
* Mon Sep 16 2013 Jan Friesse <jfriesse@redhat.com> - 2.3.2-1
|
|
|
|
- New upstream release
|
|
|
|
|
2013-08-19 09:04:03 +00:00
|
|
|
* Mon Aug 19 2013 Jan Friesse <jfriesse@redhat.com> 2.3.1-3
|
|
|
|
- Resolves: rhbz#998362
|
|
|
|
|
|
|
|
- Fix scheduler pause-detection timeout (rhbz#998362)
|
|
|
|
- merge upstream commit 2740cfd1eac60714601c74df2137fe588b607866 (rhbz#998362)
|
|
|
|
|
2013-08-03 05:53:34 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-10 11:13:55 +00:00
|
|
|
* Wed Jul 10 2013 Jan Friesse <jfriesse@redhat.com> - 2.3.1-1
|
|
|
|
- New upstream release
|
|
|
|
- Fix incorrect dates in specfile changelog section
|
|
|
|
|
2013-03-25 16:11:32 +00:00
|
|
|
* Mon Mar 25 2013 Jan Friesse <jfriesse@redhat.com> - 2.3.0-3
|
|
|
|
- Resolves: rhbz#925185
|
|
|
|
|
|
|
|
- Run autogen by default
|
|
|
|
|
2013-02-13 18:59:39 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2013-01-18 09:08:19 +00:00
|
|
|
* Fri Jan 18 2013 Jan Friesse <jfriesse@redhat.com> - 2.3.0-1
|
|
|
|
- New upstream release
|
|
|
|
|
2012-12-12 14:39:05 +00:00
|
|
|
* Wed Dec 12 2012 Jan Friesse <jfriesse@redhat.com> - 2.2.0-1
|
|
|
|
- New upstream release
|
|
|
|
|
2012-10-11 09:16:29 +00:00
|
|
|
* Thu Oct 11 2012 Jan Friesse <jfriesse@redhat.com> - 2.1.0-1
|
|
|
|
- New upstream release
|
|
|
|
|
2012-08-03 16:26:58 +00:00
|
|
|
* Fri Aug 3 2012 Steven Dake <sdake@redhat.com> - 2.0.1-3
|
|
|
|
- add groff as a BuildRequires as it is no longer installed in the buildroot
|
|
|
|
|
2012-07-18 19:42:16 +00:00
|
|
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2013-07-10 11:13:55 +00:00
|
|
|
* Tue May 22 2012 Jan Friesse <jfriesse@redhat.com> - 2.0.1-1
|
2012-05-22 08:42:02 +00:00
|
|
|
- New upstream release
|
|
|
|
|
2012-04-17 06:44:31 +00:00
|
|
|
* Tue Apr 17 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 2.0.0-2
|
|
|
|
- Backport IPCS fix from master (ack by Steven)
|
|
|
|
|
2012-04-10 15:05:59 +00:00
|
|
|
* Tue Apr 10 2012 Jan Friesse <jfriesse@redhat.com> - 2.0.0-1
|
|
|
|
- New upstream release
|
|
|
|
|
2012-04-04 22:37:52 +00:00
|
|
|
* Thu Apr 05 2012 Karsten Hopp <karsten@redhat.com> 1.99.9-1.1
|
|
|
|
- bump release and rebuild on PPC
|
|
|
|
|
2012-03-27 11:39:56 +00:00
|
|
|
* Tue Mar 27 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.9-1
|
|
|
|
- New upstream release
|
|
|
|
|
2012-03-16 09:52:12 +00:00
|
|
|
* Fri Mar 16 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.8-1
|
|
|
|
- New upstream release
|
|
|
|
|
2012-03-06 09:21:30 +00:00
|
|
|
* Tue Mar 6 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.7-1
|
|
|
|
- New upstream release
|
|
|
|
|
2012-02-28 12:27:17 +00:00
|
|
|
* Tue Feb 28 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.6-1
|
|
|
|
- New upstream release
|
|
|
|
|
2012-02-22 12:58:06 +00:00
|
|
|
* Wed Feb 22 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.5-1
|
|
|
|
- New upstream release
|
|
|
|
|
2012-02-14 12:54:57 +00:00
|
|
|
* Tue Feb 14 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.4-1
|
|
|
|
- New upstream release
|
|
|
|
|
2012-02-14 11:28:45 +00:00
|
|
|
* Tue Feb 14 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.3-1
|
|
|
|
- New upstream release
|
|
|
|
|
2012-02-07 11:01:32 +00:00
|
|
|
* Tue Feb 7 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.99.2-1
|
|
|
|
- New upstream release
|
|
|
|
- Re-enable xmlconfig bits
|
|
|
|
- Ship cmap man pages
|
|
|
|
- Add workaround to usrmove breakage!!
|
|
|
|
|
2012-02-02 10:19:50 +00:00
|
|
|
* Thu Feb 2 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.99.1-2
|
|
|
|
- Add proper Obsoltes on openais/cman/clusterlib
|
|
|
|
|
2012-02-01 05:14:45 +00:00
|
|
|
* Wed Feb 1 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.99.1-1
|
|
|
|
- New upstream release
|
|
|
|
- Temporary disable xml config (broken upstream tarball)
|
|
|
|
|
2013-07-10 11:13:55 +00:00
|
|
|
* Tue Jan 24 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.0-1
|
2012-02-01 05:14:45 +00:00
|
|
|
- New upstream release
|
|
|
|
|
2012-01-12 23:53:26 +00:00
|
|
|
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2013-07-10 11:13:55 +00:00
|
|
|
* Thu Oct 06 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.2-1
|
2011-10-06 08:21:42 +00:00
|
|
|
- New upstream release
|
|
|
|
|
2011-09-08 08:00:35 +00:00
|
|
|
* Thu Sep 08 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.1-2
|
|
|
|
- Add upstream fixes
|
|
|
|
|
2011-07-26 08:24:59 +00:00
|
|
|
* Tue Jul 26 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.1-1
|
|
|
|
- New upstream release
|
|
|
|
|
2011-07-20 11:54:22 +00:00
|
|
|
* Wed Jul 20 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.0-2
|
|
|
|
- Change attributes of cluster log directory
|
|
|
|
|
2013-07-10 11:13:55 +00:00
|
|
|
* Tue Jul 19 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.0-1
|
2011-07-19 14:45:40 +00:00
|
|
|
- New upstream release
|
|
|
|
- Resync spec file with upstream changes
|
|
|
|
|
2011-07-08 08:10:54 +00:00
|
|
|
* Fri Jul 08 2011 Jan Friesse <jfriesse@redhat.com> - 1.3.2-1
|
|
|
|
- New upstream release
|
|
|
|
|
2011-05-10 10:00:28 +00:00
|
|
|
* Tue May 10 2011 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.3.1-1
|
|
|
|
- New upstream release
|
|
|
|
|
2011-02-08 11:30:07 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-12-02 08:21:21 +00:00
|
|
|
* Thu Dec 2 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.3.0-1
|
|
|
|
- New upstream release
|
|
|
|
- drop upstream patch revision-2770.patch now included in release
|
|
|
|
- update spec file to ship corosync-blackbox
|
|
|
|
|
2010-09-02 07:28:44 +00:00
|
|
|
* Thu Sep 2 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.8-1
|
|
|
|
- New upstream release
|
|
|
|
|
2010-07-30 12:17:12 +00:00
|
|
|
* Thu Jul 29 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.7-1
|
|
|
|
- New upstream release
|
|
|
|
|
2010-07-09 11:10:57 +00:00
|
|
|
* Fri Jul 9 2010 Dan Horák <dan[at]danny.cz> - 1.2.6-2
|
|
|
|
- no InfiniBand stack on s390(x)
|
|
|
|
|
2010-07-05 12:15:34 +00:00
|
|
|
* Mon Jul 5 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.6-1
|
|
|
|
- New upstream release
|
|
|
|
- Resync spec file with upstream changes
|
|
|
|
|
2010-05-25 06:12:52 +00:00
|
|
|
* Tue May 25 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.3-1
|
|
|
|
- New upstream release
|
|
|
|
- Rediff revision 2770 patch
|
|
|
|
|
2010-05-17 07:42:06 +00:00
|
|
|
* Mon May 17 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.2-1
|
|
|
|
- New upstream release
|
|
|
|
- Add upstream trunk revision 2770 to add cpg_model_initialize api.
|
|
|
|
- Fix URL and Source0 entries.
|
|
|
|
- Add workaround to broken 1.2.2 Makefile with make -j.
|
|
|
|
|
2010-03-24 19:54:45 +00:00
|
|
|
* Wed Mar 24 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.1-1
|
|
|
|
- New upstream release
|
|
|
|
|
2009-12-08 01:38:52 +00:00
|
|
|
* Tue Dec 8 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.0-1
|
|
|
|
- New upstream release
|
|
|
|
- Use global instead of define
|
|
|
|
- Update Source0 url
|
2013-01-18 09:08:19 +00:00
|
|
|
- Use more name macro around
|
2009-12-08 01:38:52 +00:00
|
|
|
- Cleanup install section. Init script is now installed by upstream
|
|
|
|
- Cleanup whitespace
|
|
|
|
- Don't deadlock between package upgrade and corosync condrestart
|
|
|
|
- Ship service.d config directory
|
|
|
|
- Fix Conflicts vs Requires
|
|
|
|
- Ship new sam library and man pages
|
|
|
|
|
2009-10-23 06:13:15 +00:00
|
|
|
* Fri Oct 23 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.1.2-1
|
|
|
|
- New upstream release fixes major regression on specific loads
|
|
|
|
|
2009-10-21 05:00:41 +00:00
|
|
|
* Wed Oct 21 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.1.1-1
|
|
|
|
- New upstream release
|
|
|
|
|
2009-09-25 09:52:16 +00:00
|
|
|
* Fri Sep 25 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.1.0-1
|
|
|
|
- New upstream release
|
|
|
|
- spec file updates:
|
|
|
|
* enable IB support
|
|
|
|
* explicitly define built-in features at configure time
|
|
|
|
|
2009-09-22 13:15:23 +00:00
|
|
|
* Tue Sep 22 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.0.1-1
|
|
|
|
- New upstream release
|
|
|
|
- spec file updates:
|
|
|
|
* use proper configure macro
|
|
|
|
|
2009-07-28 07:22:41 +00:00
|
|
|
* Tue Jul 28 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.0.0-3
|
|
|
|
- spec file updates:
|
|
|
|
* more consistent use of macros across the board
|
|
|
|
* fix directory ownership
|
|
|
|
|
2009-07-24 19:30:46 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-07-08 19:03:18 +00:00
|
|
|
* Wed Jul 8 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.0.0-1
|
|
|
|
- New upstream release
|
|
|
|
|
2009-07-01 22:10:28 +00:00
|
|
|
* Thu Jul 2 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.100-1
|
|
|
|
- New upstream release
|
|
|
|
|
2009-06-20 07:52:36 +00:00
|
|
|
* Sat Jun 20 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.98-1
|
|
|
|
- New upstream release
|
|
|
|
- spec file updates:
|
|
|
|
* Drop corosync-trunk patch and alpha tag.
|
|
|
|
* Fix alphatag vs buildtrunk handling.
|
|
|
|
* Drop requirement on ais user/group and stop creating them.
|
|
|
|
* New config file locations from upstream: /etc/corosync/corosync.conf.
|
|
|
|
|
2009-06-11 14:34:26 +00:00
|
|
|
* Wed Jun 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.97-1.svn2233
|
|
|
|
- spec file updates:
|
|
|
|
* Update to svn version 2233 to include library linking fixes
|
|
|
|
|
2009-06-11 05:50:25 +00:00
|
|
|
* Wed Jun 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.97-1.svn2232
|
2009-06-10 06:59:19 +00:00
|
|
|
- New upstream release
|
|
|
|
- spec file updates:
|
|
|
|
* Drop pkgconfig fix that's now upstream
|
2009-06-11 05:50:25 +00:00
|
|
|
* Update to svn version 2232
|
2009-06-10 06:59:19 +00:00
|
|
|
* Define buildtrunk if we are using svn snapshots
|
|
|
|
* BuildRequires: nss-devel to enable nss crypto for network communication
|
|
|
|
* Force autogen invokation if buildtrunk is defined
|
|
|
|
* Whitespace cleanup
|
|
|
|
* Stop shipping corosync.conf in favour of a generic example
|
|
|
|
* Update file list
|
|
|
|
|
2009-03-30 07:00:39 +00:00
|
|
|
* Mon Mar 30 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.95-2
|
|
|
|
- Backport svn commit 1913 to fix pkgconfig files generation
|
|
|
|
and unbreak lvm2 build.
|
|
|
|
|
2009-03-24 07:33:41 +00:00
|
|
|
* Tue Mar 24 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.95-1
|
|
|
|
- New upstream release
|
|
|
|
- spec file updates:
|
|
|
|
* Drop alpha tag
|
|
|
|
* Drop local patches (no longer required)
|
|
|
|
* Allow to build from svn trunk by supporting rpmbuild --with buildtrunk
|
|
|
|
* BuildRequires autoconf automake if building from trunk
|
|
|
|
* Execute autogen.sh if building from trunk and if no configure is available
|
|
|
|
* Switch to use rpm configure macro and set standard install paths
|
|
|
|
* Build invokation now supports _smp_mflags
|
|
|
|
* Remove install section for docs and use proper doc macro instead
|
|
|
|
* Add tree fixup bits to drop static libs and html docs (only for now)
|
|
|
|
* Add LICENSE file to all subpackages
|
|
|
|
* libraries have moved to libdir. Drop ld.so.conf.d corosync file
|
|
|
|
* Update BuildRoot usage to preferred versions/names
|
|
|
|
|
2009-03-10 11:42:15 +00:00
|
|
|
* Tue Mar 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-5.svn1797
|
|
|
|
- Update the corosync-trunk patch for real this time.
|
|
|
|
|
2009-03-10 11:34:31 +00:00
|
|
|
* Tue Mar 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-4.svn1797
|
|
|
|
- Import fixes from upstream:
|
|
|
|
* Cleanup logsys format init around to use default settings (1795)
|
|
|
|
* logsys_format_set should use its own internal copy of format_buffer (1796)
|
|
|
|
* Add logsys_format_get to logsys API (1797)
|
|
|
|
- Cherry pick svn1807 to unbreak CPG.
|
|
|
|
|
2009-03-09 09:53:21 +00:00
|
|
|
* Mon Mar 9 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-3.svn1794
|
|
|
|
- Import fixes from upstream:
|
|
|
|
* Add reserve/release feature to totem message queue space (1793)
|
|
|
|
* Fix CG shutdown (1794)
|
|
|
|
|
2009-03-06 07:30:44 +00:00
|
|
|
* Fri Mar 6 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-2.svn1792
|
|
|
|
- Import fixes from upstream:
|
|
|
|
* Fix uninitialized memory. Spotted by valgrind (1788)
|
|
|
|
* Fix logsys_set_format by updating the right bits (1789)
|
|
|
|
* logsys: re-add support for timestamp (1790)
|
|
|
|
* Fix cpg crash (1791)
|
|
|
|
* Allow logsys_format_set to reset to default (1792)
|
|
|
|
|
2009-03-03 05:48:35 +00:00
|
|
|
* Tue Mar 3 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-1
|
|
|
|
- New upstream release.
|
|
|
|
- Drop obsolete patches.
|
|
|
|
- Add soname bump patch that was missing from upstream.
|
|
|
|
|
2009-02-25 05:12:19 +00:00
|
|
|
* Wed Feb 25 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.93-4
|
|
|
|
- Add Makefile fix to install all corosync tools (commit r1780)
|
|
|
|
|
2009-02-24 09:15:21 +00:00
|
|
|
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.93-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-02-23 09:32:40 +00:00
|
|
|
* Mon Feb 23 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.93-2
|
|
|
|
- Rename gcc-4.4 patch to match svn commit (r1767).
|
|
|
|
- Backport patch from trunk (commit r1774) to fix quorum engine.
|
|
|
|
|
2009-02-19 08:56:09 +00:00
|
|
|
* Thu Feb 19 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.93-1
|
|
|
|
- New upstream release.
|
|
|
|
- Drop alphatag from spec file.
|
|
|
|
- Drop trunk patch.
|
|
|
|
- Update Provides for corosynclib-devel.
|
|
|
|
- Backport gcc-4.4 build fix from trunk.
|
|
|
|
|
2009-02-02 07:19:05 +00:00
|
|
|
* Mon Feb 2 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.92-7.svn1756
|
|
|
|
- Update to svn trunk at revision 1756 from upstream.
|
|
|
|
- Add support pkgconfig to devel package.
|
2009-02-02 07:30:05 +00:00
|
|
|
- Tidy up spec files by re-organazing sections according to packages.
|
2009-02-02 10:23:29 +00:00
|
|
|
- Split libraries from corosync to corosynclib.
|
|
|
|
- Rename corosync-devel to corosynclib-devel.
|
2009-02-02 11:15:07 +00:00
|
|
|
- Comply with multiarch requirements (libraries).
|
2009-02-02 07:19:05 +00:00
|
|
|
|
2009-01-27 10:44:56 +00:00
|
|
|
* Tue Jan 27 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.92-6.svn1750
|
|
|
|
- Update to svn trunk at revision 1750 from upstream.
|
|
|
|
- Include new quorum service in the packaging.
|
|
|
|
|
2008-12-15 18:15:18 +00:00
|
|
|
* Mon Dec 15 2008 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.92-5.svn1709
|
|
|
|
- Update to svn trunk at revision 1709 from upstream.
|
|
|
|
- Update spec file to include new include files.
|
|
|
|
|
2008-12-10 07:42:53 +00:00
|
|
|
* Wed Dec 10 2008 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.92-4.svn1707
|
|
|
|
- Update to svn trunk at revision 1707 from upstream.
|
|
|
|
- Update spec file to include new lcrso services and include file.
|
|
|
|
|
2008-10-14 04:06:08 +00:00
|
|
|
* Mon Oct 13 2008 Dennis Gilmore <dennis@ausil.us> - 0.92-3
|
|
|
|
- remove ExclusiveArch line
|
|
|
|
|
2013-07-10 11:13:55 +00:00
|
|
|
* Wed Sep 24 2008 Steven Dake <sdake@redhat.com> - 0.92-2
|
2008-09-26 21:02:14 +00:00
|
|
|
- Add conflicts for openais and openais-devel packages older then 0.90.
|
|
|
|
|
2008-09-25 06:16:38 +00:00
|
|
|
* Wed Sep 24 2008 Steven Dake <sdake@redhat.com> - 0.92-1
|
|
|
|
- New upstream release corosync-0.92.
|
|
|
|
|
|
|
|
* Sun Aug 24 2008 Steven Dake <sdake@redhat.com> - 0.91-3
|
|
|
|
- move logsys_overview.8.* to devel package.
|
|
|
|
- move shared libs to main package.
|
|
|
|
|
|
|
|
* Wed Aug 20 2008 Steven Dake <sdake@redhat.com> - 0.91-2
|
|
|
|
- use /sbin/service instead of calling init script directly.
|
|
|
|
- put corosync-objctl man page in the main package.
|
|
|
|
- change all initrddir to initddir for fedora 10 guidelines.
|
|
|
|
|
|
|
|
* Thu Aug 14 2008 Steven Dake <sdake@redhat.com> - 0.91-1
|
|
|
|
- First upstream packaged version of corosync for rawhide review.
|