Blame SPECS/corosync.spec

963052
# Conditionals
963052
# Invoke "rpmbuild --without <feature>" or "rpmbuild --with <feature>"
963052
# to disable or enable specific features
963052
%bcond_with testagents
963052
%bcond_with watchdog
963052
%bcond_with monitoring
963052
%bcond_without snmp
963052
%bcond_without dbus
963052
# no InfiniBand stack on s390(x)
963052
%ifnarch s390 s390x
963052
%bcond_with rdma
963052
%endif
963052
%bcond_without systemd
963052
%bcond_with upstart
963052
%bcond_without xmlconf
963052
%bcond_without runautogen
963052
963052
%global gitver %{?numcomm:.%{numcomm}}%{?alphatag:.%{alphatag}}%{?dirty:.%{dirty}}
963052
%global gittarver %{?numcomm:.%{numcomm}}%{?alphatag:-%{alphatag}}%{?dirty:-%{dirty}}
963052
963052
Name: corosync
963052
Summary: The Corosync Cluster Engine and Application Programming Interfaces
cf1c78
Version: 2.3.3
963052
Release: 2%{?gitver}%{?dist}
963052
License: BSD
963052
Group: System Environment/Base
963052
URL: http://www.corosync.org/
963052
Source0: http://corosync.org/download/%{name}-%{version}%{?gittarver}.tar.gz
963052
cf1c78
Patch0: bz1067028-1-cpg-Refactor-mh_req_exec_cpg_procleave.patch
cf1c78
Patch1: bz1067028-2-cpg-Make-sure-nodid-is-always-logged-as-hex-num.patch
cf1c78
Patch2: bz1067028-3-cpg-Make-sure-left-nodes-are-really-removed.patch
cf1c78
963052
%if 0%{?rhel}
963052
ExclusiveArch: i686 x86_64
963052
%endif
963052
963052
# Runtime bits
963052
Requires: corosynclib = %{version}-%{release}
963052
Requires(pre): /usr/sbin/useradd
963052
Requires(post): /sbin/chkconfig
963052
Requires(preun): /sbin/chkconfig
963052
Obsoletes: openais, openais-devel, openaislib, openaislib-devel
963052
Obsoletes: cman, clusterlib, clusterlib-devel
963052
963052
# Build bits
963052
963052
BuildRequires: groff
963052
BuildRequires: libqb-devel >= 0.14.2
963052
BuildRequires: nss-devel
963052
%if %{with runautogen}
963052
BuildRequires: autoconf automake libtool
963052
%endif
963052
%if %{with monitoring}
963052
BuildRequires: libstatgrab-devel
963052
%endif
963052
%if %{with rdma}
963052
BuildRequires: libibverbs-devel librdmacm-devel
963052
%endif
963052
%if %{with snmp}
963052
BuildRequires: net-snmp-devel
963052
%endif
963052
%if %{with dbus}
963052
BuildRequires: dbus-devel
963052
%endif
963052
%if %{with systemd}
963052
BuildRequires: systemd-units
963052
Requires(post): systemd
963052
Requires(preun): systemd
963052
Requires(postun): systemd
963052
%endif
963052
%if %{with xmlconf}
963052
Requires: libxslt
963052
%endif
963052
963052
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
963052
963052
%prep
963052
%setup -q -n %{name}-%{version}%{?gittarver}
cf1c78
%patch0 -p1 -b .bz1067028-1
cf1c78
%patch1 -p1 -b .bz1067028-2
cf1c78
%patch2 -p1 -b .bz1067028-3
963052
963052
%build
963052
%if %{with runautogen}
963052
./autogen.sh
963052
%endif
963052
963052
%if %{with rdma}
963052
export ibverbs_CFLAGS=-I/usr/include/infiniband \
963052
export ibverbs_LIBS=-libverbs \
963052
export rdmacm_CFLAGS=-I/usr/include/rdma \
963052
export rdmacm_LIBS=-lrdmacm \
963052
%endif
963052
%{configure} \
963052
%if %{with testagents}
963052
	--enable-testagents \
963052
%endif
963052
%if %{with watchdog}
963052
	--enable-watchdog \
963052
%endif
963052
%if %{with monitoring}
963052
	--enable-monitoring \
963052
%endif
963052
%if %{with snmp}
963052
	--enable-snmp \
963052
%endif
963052
%if %{with dbus}
963052
	--enable-dbus \
963052
%endif
963052
%if %{with rdma}
963052
	--enable-rdma \
963052
%endif
963052
%if %{with systemd}
963052
	--enable-systemd \
963052
%endif
963052
%if %{with upstart}
963052
	--enable-upstart \
963052
%endif
963052
%if %{with xmlconf}
963052
	--enable-xmlconf \
963052
%endif
963052
	--with-initddir=%{_initrddir} \
963052
	--with-systemddir=%{_unitdir} \
963052
	--with-upstartdir=%{_sysconfdir}/init
963052
963052
make %{_smp_mflags}
963052
963052
%install
963052
rm -rf %{buildroot}
963052
963052
make install DESTDIR=%{buildroot}
963052
963052
%if %{with dbus}
963052
mkdir -p -m 0700 %{buildroot}/%{_sysconfdir}/dbus-1/system.d
963052
install -m 644 %{_builddir}/%{name}-%{version}%{?gittarver}/conf/corosync-signals.conf %{buildroot}/%{_sysconfdir}/dbus-1/system.d/corosync-signals.conf
963052
%endif
963052
963052
## tree fixup
963052
# drop static libs
963052
rm -f %{buildroot}%{_libdir}/*.a
963052
rm -f %{buildroot}%{_libdir}/*.la
963052
# drop docs and html docs for now
963052
rm -rf %{buildroot}%{_docdir}/*
963052
# /etc/sysconfig/corosync-notifyd
963052
mkdir -p %{buildroot}%{_sysconfdir}/sysconfig
963052
install -m 644 tools/corosync-notifyd.sysconfig.example \
963052
   %{buildroot}%{_sysconfdir}/sysconfig/corosync-notifyd
963052
963052
%clean
963052
rm -rf %{buildroot}
963052
963052
%description
963052
This package contains the Corosync Cluster Engine Executive, several default
963052
APIs and libraries, default configuration files, and an init script.
963052
963052
%post
963052
%if %{with systemd} && 0%{?systemd_post:1}
963052
%systemd_post corosync.service
963052
%else
963052
if [ $1 -eq 1 ]; then
963052
	/sbin/chkconfig --add corosync || :
963052
fi
963052
%endif
963052
963052
%preun
963052
%if %{with systemd} && 0%{?systemd_preun:1}
963052
%systemd_preun corosync.service
963052
%else
963052
if [ $1 -eq 0 ]; then
963052
	/sbin/service corosync stop &>/dev/null || :
963052
	/sbin/chkconfig --del corosync || :
963052
fi
963052
%endif
963052
963052
%postun
963052
%if %{with systemd} && 0%{?systemd_postun:1}
963052
%systemd_postun
963052
%endif
963052
963052
%files
963052
%defattr(-,root,root,-)
963052
%doc LICENSE SECURITY
963052
%{_sbindir}/corosync
963052
%{_sbindir}/corosync-keygen
963052
%{_sbindir}/corosync-cmapctl
963052
%{_sbindir}/corosync-cfgtool
963052
%{_sbindir}/corosync-cpgtool
963052
%{_sbindir}/corosync-quorumtool
963052
%{_sbindir}/corosync-notifyd
963052
%{_bindir}/corosync-blackbox
963052
%if %{with xmlconf}
963052
%{_bindir}/corosync-xmlproc
963052
%config(noreplace) %{_sysconfdir}/corosync/corosync.xml.example
963052
%dir %{_datadir}/corosync
963052
%{_datadir}/corosync/xml2conf.xsl
963052
%{_mandir}/man8/corosync-xmlproc.8*
963052
%{_mandir}/man5/corosync.xml.5*
963052
%endif
963052
%dir %{_sysconfdir}/corosync
963052
%dir %{_sysconfdir}/corosync/uidgid.d
963052
%config(noreplace) %{_sysconfdir}/corosync/corosync.conf.example
963052
%config(noreplace) %{_sysconfdir}/corosync/corosync.conf.example.udpu
963052
%config(noreplace) %{_sysconfdir}/sysconfig/corosync-notifyd
963052
%if %{with dbus}
963052
%{_sysconfdir}/dbus-1/system.d/corosync-signals.conf
963052
%endif
963052
%if %{with snmp}
963052
%{_datadir}/snmp/mibs/COROSYNC-MIB.txt
963052
%endif
963052
%if %{with systemd}
963052
%{_unitdir}/corosync.service
963052
%{_unitdir}/corosync-notifyd.service
963052
%dir %{_datadir}/corosync
963052
%{_datadir}/corosync/corosync
963052
%{_datadir}/corosync/corosync-notifyd
963052
%else
963052
%{_initrddir}/corosync
963052
%{_initrddir}/corosync-notifyd
963052
%endif
963052
%if %{with upstart}
963052
%{_sysconfdir}/init/corosync.conf
963052
%{_sysconfdir}/init/corosync-notifyd.conf
963052
%endif
963052
%dir %{_localstatedir}/lib/corosync
963052
%dir %{_localstatedir}/log/cluster
963052
%{_mandir}/man8/corosync_overview.8*
963052
%{_mandir}/man8/corosync.8*
963052
%{_mandir}/man8/corosync-blackbox.8*
963052
%{_mandir}/man8/corosync-cmapctl.8*
963052
%{_mandir}/man8/corosync-keygen.8*
963052
%{_mandir}/man8/corosync-cfgtool.8*
963052
%{_mandir}/man8/corosync-cpgtool.8*
963052
%{_mandir}/man8/corosync-notifyd.8*
963052
%{_mandir}/man8/corosync-quorumtool.8*
963052
%{_mandir}/man5/corosync.conf.5*
963052
%{_mandir}/man5/votequorum.5*
963052
%{_mandir}/man8/cmap_keys.8*
963052
963052
# optional testagent rpm
963052
#
963052
%if %{with testagents}
963052
963052
%package -n corosync-testagents
963052
Summary: The Corosync Cluster Engine Test Agents
963052
Group: Development/Libraries
963052
Requires: %{name} = %{version}-%{release}
963052
Requires: libqb >= 0.14.2
963052
963052
%description -n corosync-testagents
963052
This package contains corosync test agents.
963052
963052
%files -n corosync-testagents
963052
%defattr(755,root,root,-)
963052
%{_datadir}/corosync/tests/mem_leak_test.sh
963052
%{_datadir}/corosync/tests/net_breaker.sh
963052
%{_datadir}/corosync/tests/cmap-dispatch-deadlock.sh
963052
%{_datadir}/corosync/tests/shm_leak_audit.sh
963052
%{_bindir}/cpg_test_agent
963052
%{_bindir}/sam_test_agent
963052
%{_bindir}/votequorum_test_agent
963052
963052
%endif
963052
963052
# library
963052
#
963052
%package -n corosynclib
963052
Summary: The Corosync Cluster Engine Libraries
963052
Group: System Environment/Libraries
963052
Requires: %{name} = %{version}-%{release}
963052
963052
%description -n corosynclib
963052
This package contains corosync libraries.
963052
963052
%files -n corosynclib
963052
%defattr(-,root,root,-)
963052
%doc LICENSE
963052
%{_libdir}/libcfg.so.*
963052
%{_libdir}/libcpg.so.*
963052
%{_libdir}/libcmap.so.*
963052
%{_libdir}/libtotem_pg.so.*
963052
%{_libdir}/libquorum.so.*
963052
%{_libdir}/libvotequorum.so.*
963052
%{_libdir}/libsam.so.*
963052
%{_libdir}/libcorosync_common.so.*
963052
963052
%post -n corosynclib -p /sbin/ldconfig
963052
963052
%postun -n corosynclib -p /sbin/ldconfig
963052
963052
%package -n corosynclib-devel
963052
Summary: The Corosync Cluster Engine Development Kit
963052
Group: Development/Libraries
963052
Requires: corosynclib = %{version}-%{release}
963052
Requires: pkgconfig
963052
Provides: corosync-devel = %{version}
963052
Obsoletes: corosync-devel < 0.92-7
963052
963052
%description -n corosynclib-devel
963052
This package contains include files and man pages used to develop using
963052
The Corosync Cluster Engine APIs.
963052
963052
%files -n corosynclib-devel
963052
%defattr(-,root,root,-)
963052
%doc LICENSE
963052
%dir %{_includedir}/corosync/
963052
%{_includedir}/corosync/corodefs.h
963052
%{_includedir}/corosync/cfg.h
963052
%{_includedir}/corosync/cmap.h
963052
%{_includedir}/corosync/corotypes.h
963052
%{_includedir}/corosync/cpg.h
963052
%{_includedir}/corosync/hdb.h
963052
%{_includedir}/corosync/sam.h
963052
%{_includedir}/corosync/quorum.h
963052
%{_includedir}/corosync/votequorum.h
963052
%dir %{_includedir}/corosync/totem/
963052
%{_includedir}/corosync/totem/totem.h
963052
%{_includedir}/corosync/totem/totemip.h
963052
%{_includedir}/corosync/totem/totempg.h
963052
%{_libdir}/libcfg.so
963052
%{_libdir}/libcpg.so
963052
%{_libdir}/libcmap.so
963052
%{_libdir}/libtotem_pg.so
963052
%{_libdir}/libquorum.so
963052
%{_libdir}/libvotequorum.so
963052
%{_libdir}/libsam.so
963052
%{_libdir}/libcorosync_common.so
963052
%{_libdir}/pkgconfig/*.pc
963052
%{_mandir}/man3/cpg_*3*
963052
%{_mandir}/man3/quorum_*3*
963052
%{_mandir}/man3/votequorum_*3*
963052
%{_mandir}/man3/sam_*3*
963052
%{_mandir}/man8/cpg_overview.8*
963052
%{_mandir}/man8/votequorum_overview.8*
963052
%{_mandir}/man8/sam_overview.8*
963052
%{_mandir}/man3/cmap_*3*
963052
%{_mandir}/man8/cmap_overview.8*
963052
%{_mandir}/man8/quorum_overview.8*
963052
963052
%changelog
cf1c78
* Thu Feb 20 2014 Jan Friesse <jfriesse@redhat.com> 2.3.3-2
cf1c78
- Resolves: rhbz#1067028
cf1c78
cf1c78
- cpg: Refactor mh_req_exec_cpg_procleave (rhbz#1067028)
cf1c78
- merge upstream commit fcf26e03036b6ae5a8ef762ea0b5691a4f790c92 (rhbz#1067028)
cf1c78
- cpg: Make sure nodid is always logged as hex num (rhbz#1067028)
cf1c78
- merge upstream commit 83c63b247f4030fe8123df7c9f96d7a1c8e245b1 (rhbz#1067028)
cf1c78
- cpg: Make sure left nodes are really removed (rhbz#1067028)
cf1c78
- merge upstream commit fbe8768f1bbab6d546023d70e7f7b91a9dc213b0 (rhbz#1067028)
cf1c78
cf1c78
* Tue Jan 14 2014 Jan Friesse <jfriesse@redhat.com> - 2.3.3-1
cf1c78
- Resolves: rhbz#1030559
cf1c78
- Resolves: rhbz#1038652
cf1c78
- Resolves: rhbz#1052049
cf1c78
cf1c78
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.3.2-4
cf1c78
- Mass rebuild 2013-12-27
cf1c78
cf1c78
* Wed Dec 04 2013 Jan Friesse <jfriesse@redhat.com> 2.3.2-3
cf1c78
- Resolves: rhbz#1031832
cf1c78
cf1c78
- cfgtool: return error on reload failure (rhbz#1031832)
cf1c78
- merge upstream commit 7014f10123a634cf026491edc9a09d6044106116 (rhbz#1031832)
cf1c78
963052
* Thu Nov 7 2013 Jan Friesse <jfriesse@redhat.com> 2.3.2-2
963052
- Resolves: rhbz#1008561
963052
963052
- Drop support for IBA (rhbz#1008561)
963052
963052
* Mon Sep 16 2013 Jan Friesse <jfriesse@redhat.com> - 2.3.2-1
963052
- Resolves: rhbz#998882
963052
963052
- New upstream release
963052
963052
* Mon Aug 19 2013 Jan Friesse <jfriesse@redhat.com> 2.3.1-3
963052
- Resolves: rhbz#998362
963052
963052
- Fix scheduler pause-detection timeout (rhbz#998362)
963052
- merge upstream commit 2740cfd1eac60714601c74df2137fe588b607866 (rhbz#998362)
963052
963052
* Wed Jul 17 2013 Andrew Beekhof <abeekhof@redhat.com> - 2.3.1-2
963052
- Rebuild for snmp library bump
963052
963052
* Wed Jul 10 2013 Jan Friesse <jfriesse@redhat.com> - 2.3.1-1
963052
- New upstream release
963052
- Fix incorrect dates in specfile changelog section
963052
963052
* Mon Mar 25 2013 Jan Friesse <jfriesse@redhat.com> - 2.3.0-3
963052
- Resolves: rhbz#925185
963052
963052
- Run autogen by default
963052
963052
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.0-2
963052
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
963052
963052
* Fri Jan 18 2013 Jan Friesse <jfriesse@redhat.com> - 2.3.0-1
963052
- New upstream release
963052
963052
* Wed Dec 12 2012 Jan Friesse <jfriesse@redhat.com> - 2.2.0-1
963052
- New upstream release
963052
963052
* Thu Oct 11 2012 Jan Friesse <jfriesse@redhat.com> - 2.1.0-1
963052
- New upstream release
963052
963052
* Fri Aug 3 2012 Steven Dake <sdake@redhat.com> - 2.0.1-3
963052
- add groff as a BuildRequires as it is no longer installed in the buildroot
963052
963052
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.1-2
963052
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
963052
963052
* Tue May 22 2012 Jan Friesse <jfriesse@redhat.com> - 2.0.1-1
963052
- New upstream release
963052
963052
* Tue Apr 17 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 2.0.0-2
963052
- Backport IPCS fix from master (ack by Steven)
963052
963052
* Tue Apr 10 2012 Jan Friesse <jfriesse@redhat.com> - 2.0.0-1
963052
- New upstream release
963052
963052
* Thu Apr 05 2012 Karsten Hopp <karsten@redhat.com> 1.99.9-1.1
963052
- bump release and rebuild on PPC
963052
963052
* Tue Mar 27 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.9-1
963052
- New upstream release
963052
963052
* Fri Mar 16 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.8-1
963052
- New upstream release
963052
963052
* Tue Mar  6 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.7-1
963052
- New upstream release
963052
963052
* Tue Feb 28 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.6-1
963052
- New upstream release
963052
963052
* Wed Feb 22 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.5-1
963052
- New upstream release
963052
963052
* Tue Feb 14 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.4-1
963052
- New upstream release
963052
963052
* Tue Feb 14 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.3-1
963052
- New upstream release
963052
963052
* Tue Feb  7 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.99.2-1
963052
- New upstream release
963052
- Re-enable xmlconfig bits
963052
- Ship cmap man pages
963052
- Add workaround to usrmove breakage!!
963052
963052
* Thu Feb  2 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.99.1-2
963052
- Add proper Obsoltes on openais/cman/clusterlib
963052
963052
* Wed Feb  1 2012 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.99.1-1
963052
- New upstream release
963052
- Temporary disable xml config (broken upstream tarball)
963052
963052
* Tue Jan 24 2012 Jan Friesse <jfriesse@redhat.com> - 1.99.0-1
963052
- New upstream release
963052
963052
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.2-2
963052
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
963052
963052
* Thu Oct 06 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.2-1
963052
- New upstream release
963052
963052
* Thu Sep 08 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.1-2
963052
- Add upstream fixes
963052
963052
* Tue Jul 26 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.1-1
963052
- New upstream release
963052
963052
* Wed Jul 20 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.0-2
963052
- Change attributes of cluster log directory
963052
963052
* Tue Jul 19 2011 Jan Friesse <jfriesse@redhat.com> - 1.4.0-1
963052
- New upstream release
963052
- Resync spec file with upstream changes
963052
963052
* Fri Jul 08 2011 Jan Friesse <jfriesse@redhat.com> - 1.3.2-1
963052
- New upstream release
963052
963052
* Tue May 10 2011 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.3.1-1
963052
- New upstream release
963052
963052
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-2
963052
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
963052
963052
* Thu Dec  2 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.3.0-1
963052
- New upstream release
963052
- drop upstream patch revision-2770.patch now included in release
963052
- update spec file to ship corosync-blackbox
963052
963052
* Thu Sep  2 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.8-1
963052
- New upstream release
963052
963052
* Thu Jul 29 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.7-1
963052
- New upstream release
963052
963052
* Fri Jul  9 2010 Dan Horák <dan[at]danny.cz> - 1.2.6-2
963052
- no InfiniBand stack on s390(x)
963052
963052
* Mon Jul  5 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.6-1
963052
- New upstream release
963052
- Resync spec file with upstream changes
963052
963052
* Tue May 25 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.3-1
963052
- New upstream release
963052
- Rediff revision 2770 patch
963052
963052
* Mon May 17 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.2-1
963052
- New upstream release
963052
- Add upstream trunk revision 2770 to add cpg_model_initialize api.
963052
- Fix URL and Source0 entries.
963052
- Add workaround to broken 1.2.2 Makefile with make -j.
963052
963052
* Wed Mar 24 2010 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.1-1
963052
- New upstream release
963052
963052
* Tue Dec  8 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.2.0-1
963052
- New upstream release
963052
- Use global instead of define
963052
- Update Source0 url
963052
- Use more name macro around
963052
- Cleanup install section. Init script is now installed by upstream
963052
- Cleanup whitespace
963052
- Don't deadlock between package upgrade and corosync condrestart
963052
- Ship service.d config directory
963052
- Fix Conflicts vs Requires
963052
- Ship new sam library and man pages
963052
963052
* Fri Oct 23 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.1.2-1
963052
- New upstream release fixes major regression on specific loads
963052
963052
* Wed Oct 21 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.1.1-1
963052
- New upstream release
963052
963052
* Fri Sep 25 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.1.0-1
963052
- New upstream release
963052
- spec file updates:
963052
  * enable IB support
963052
  * explicitly define built-in features at configure time
963052
963052
* Tue Sep 22 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.0.1-1
963052
- New upstream release
963052
- spec file updates:
963052
  * use proper configure macro
963052
963052
* Tue Jul 28 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.0.0-3
963052
- spec file updates:
963052
  * more consistent use of macros across the board
963052
  * fix directory ownership
963052
963052
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.0-2
963052
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
963052
963052
* Wed Jul  8 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.0.0-1
963052
- New upstream release
963052
963052
* Thu Jul  2 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.100-1
963052
- New upstream release
963052
963052
* Sat Jun 20 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.98-1
963052
- New upstream release
963052
- spec file updates:
963052
  * Drop corosync-trunk patch and alpha tag.
963052
  * Fix alphatag vs buildtrunk handling.
963052
  * Drop requirement on ais user/group and stop creating them.
963052
  * New config file locations from upstream: /etc/corosync/corosync.conf.
963052
963052
* Wed Jun 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.97-1.svn2233
963052
- spec file updates:
963052
  * Update to svn version 2233 to include library linking fixes
963052
963052
* Wed Jun 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.97-1.svn2232
963052
- New upstream release
963052
- spec file updates:
963052
  * Drop pkgconfig fix that's now upstream
963052
  * Update to svn version 2232
963052
  * Define buildtrunk if we are using svn snapshots
963052
  * BuildRequires: nss-devel to enable nss crypto for network communication
963052
  * Force autogen invokation if buildtrunk is defined
963052
  * Whitespace cleanup
963052
  * Stop shipping corosync.conf in favour of a generic example
963052
  * Update file list
963052
963052
* Mon Mar 30 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.95-2
963052
- Backport svn commit 1913 to fix pkgconfig files generation
963052
  and unbreak lvm2 build.
963052
963052
* Tue Mar 24 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.95-1
963052
- New upstream release
963052
- spec file updates:
963052
  * Drop alpha tag
963052
  * Drop local patches (no longer required)
963052
  * Allow to build from svn trunk by supporting rpmbuild --with buildtrunk 
963052
  * BuildRequires autoconf automake if building from trunk
963052
  * Execute autogen.sh if building from trunk and if no configure is available
963052
  * Switch to use rpm configure macro and set standard install paths
963052
  * Build invokation now supports _smp_mflags
963052
  * Remove install section for docs and use proper doc macro instead
963052
  * Add tree fixup bits to drop static libs and html docs (only for now)
963052
  * Add LICENSE file to all subpackages
963052
  * libraries have moved to libdir. Drop ld.so.conf.d corosync file
963052
  * Update BuildRoot usage to preferred versions/names
963052
963052
* Tue Mar 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-5.svn1797
963052
- Update the corosync-trunk patch for real this time.
963052
963052
* Tue Mar 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-4.svn1797
963052
- Import fixes from upstream:
963052
  * Cleanup logsys format init around to use default settings (1795)
963052
  * logsys_format_set should use its own internal copy of format_buffer (1796)
963052
  * Add logsys_format_get to logsys API (1797)
963052
- Cherry pick svn1807 to unbreak CPG.
963052
963052
* Mon Mar  9 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-3.svn1794
963052
- Import fixes from upstream:
963052
  * Add reserve/release feature to totem message queue space (1793)
963052
  * Fix CG shutdown (1794)
963052
963052
* Fri Mar  6 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-2.svn1792
963052
- Import fixes from upstream:
963052
  * Fix uninitialized memory. Spotted by valgrind (1788)
963052
  * Fix logsys_set_format by updating the right bits (1789)
963052
  * logsys: re-add support for timestamp  (1790)
963052
  * Fix cpg crash (1791)
963052
  * Allow logsys_format_set to reset to default (1792)
963052
963052
* Tue Mar  3 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-1
963052
- New upstream release.
963052
- Drop obsolete patches.
963052
- Add soname bump patch that was missing from upstream.
963052
963052
* Wed Feb 25 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.93-4
963052
- Add Makefile fix to install all corosync tools (commit r1780)
963052
963052
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.93-3
963052
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
963052
963052
* Mon Feb 23 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.93-2
963052
- Rename gcc-4.4 patch to match svn commit (r1767).
963052
- Backport patch from trunk (commit r1774) to fix quorum engine.
963052
963052
* Thu Feb 19 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.93-1
963052
- New upstream release.
963052
- Drop alphatag from spec file.
963052
- Drop trunk patch.
963052
- Update Provides for corosynclib-devel.
963052
- Backport gcc-4.4 build fix from trunk.
963052
963052
* Mon Feb  2 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.92-7.svn1756
963052
- Update to svn trunk at revision 1756 from upstream.
963052
- Add support pkgconfig to devel package.
963052
- Tidy up spec files by re-organazing sections according to packages.
963052
- Split libraries from corosync to corosynclib.
963052
- Rename corosync-devel to corosynclib-devel.
963052
- Comply with multiarch requirements (libraries).
963052
963052
* Tue Jan 27 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.92-6.svn1750
963052
- Update to svn trunk at revision 1750 from upstream.
963052
- Include new quorum service in the packaging.
963052
963052
* Mon Dec 15 2008 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.92-5.svn1709
963052
- Update to svn trunk at revision 1709 from upstream.
963052
- Update spec file to include new include files.
963052
963052
* Wed Dec 10 2008 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.92-4.svn1707
963052
- Update to svn trunk at revision 1707 from upstream.
963052
- Update spec file to include new lcrso services and include file.
963052
963052
* Mon Oct 13 2008 Dennis Gilmore <dennis@ausil.us> - 0.92-3
963052
- remove ExclusiveArch line
963052
963052
* Wed Sep 24 2008 Steven Dake <sdake@redhat.com> - 0.92-2
963052
- Add conflicts for openais and openais-devel packages older then 0.90.
963052
963052
* Wed Sep 24 2008 Steven Dake <sdake@redhat.com> - 0.92-1
963052
- New upstream release corosync-0.92.
963052
963052
* Sun Aug 24 2008 Steven Dake <sdake@redhat.com> - 0.91-3
963052
- move logsys_overview.8.* to devel package.
963052
- move shared libs to main package.
963052
963052
* Wed Aug 20 2008 Steven Dake <sdake@redhat.com> - 0.91-2
963052
- use /sbin/service instead of calling init script directly.
963052
- put corosync-objctl man page in the main package.
963052
- change all initrddir to initddir for fedora 10 guidelines.
963052
963052
* Thu Aug 14 2008 Steven Dake <sdake@redhat.com> - 0.91-1
963052
- First upstream packaged version of corosync for rawhide review.