280 lines
9.3 KiB
RPMSpec
280 lines
9.3 KiB
RPMSpec
%define alphatag svn1797
|
|
|
|
Name: corosync
|
|
Summary: The Corosync Cluster Engine and Application Programming Interfaces
|
|
Version: 0.94
|
|
Release: 5%{?alphatag:.%{alphatag}}%{?dist}
|
|
License: BSD
|
|
Group: System Environment/Base
|
|
URL: http://www.openais.org
|
|
Source0: http://developer.osdl.org/dev/openais/downloads/corosync-%{version}/corosync-%{version}.tar.gz
|
|
Patch0: corosync-bump-soname.diff
|
|
Patch1: corosync-trunk.diff
|
|
Patch2: corosync-1807.diff
|
|
|
|
# Runtime bits
|
|
Requires: corosynclib = %{version}-%{release}
|
|
Requires(pre): /usr/sbin/useradd
|
|
Requires(post): /sbin/chkconfig
|
|
Requires(preun): /sbin/chkconfig
|
|
Conflicts: openais <= 0.89, openais-devel <= 0.89
|
|
|
|
# Setup/build bits
|
|
%define ais_user_uid 39
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
%prep
|
|
%setup -q -n corosync-%{version}
|
|
%patch0 -p1
|
|
%patch1 -p1
|
|
%patch2 -p1
|
|
|
|
%build
|
|
|
|
# -O3 required for performance reasons
|
|
# So we get proper debug output, for now we don't compile with O3
|
|
#CFLAGS="$(echo '%{optflags}' | sed -e 's/-O[0-9]*//') -O3"
|
|
CFLAGS="$(echo '%{optflags}')"
|
|
make CFLAGS="$CFLAGS"
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
make install DESTDIR=$RPM_BUILD_ROOT STATICLIBS=NO
|
|
mkdir -p $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}
|
|
mkdir -p $RPM_BUILD_ROOT%{_initddir}
|
|
install -m 644 LICENSE SECURITY README.devmap \
|
|
$RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/
|
|
install -m 755 init/redhat $RPM_BUILD_ROOT%{_initddir}/corosync
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%description
|
|
This package contains the Corosync Cluster Engine Executive, several default
|
|
APIs and libraries, default configuration files, and an init script.
|
|
|
|
%pre
|
|
# Add the "ais" user
|
|
/usr/sbin/useradd -c 'The Corosync Cluster Engine' \
|
|
-u %{ais_user_uid} -s /sbin/nologin -r -d '/' ais 2> /dev/null || :
|
|
|
|
%post
|
|
/sbin/chkconfig --add corosync || :
|
|
|
|
%preun
|
|
if [ $1 -eq 0 ]; then
|
|
/sbin/service corosync stop &>/dev/null || :
|
|
/sbin/chkconfig --del corosync || :
|
|
fi
|
|
|
|
%postun
|
|
[ "$1" -ge "1" ] && /sbin/service corosync condrestart &>/dev/null || :
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%dir %{_docdir}/%{name}-%{version}
|
|
%doc %{_docdir}/%{name}-%{version}/LICENSE
|
|
%doc %{_docdir}/%{name}-%{version}/SECURITY
|
|
%{_sbindir}/corosync
|
|
%{_sbindir}/corosync-keygen
|
|
%{_sbindir}/corosync-objctl
|
|
%{_sbindir}/corosync-cfgtool
|
|
%{_sbindir}/corosync-fplay
|
|
%{_sbindir}/corosync-pload
|
|
%config(noreplace) /etc/corosync.conf
|
|
%{_initddir}/corosync
|
|
%dir %{_libexecdir}/lcrso
|
|
%{_libexecdir}/lcrso/coroparse.lcrso
|
|
%{_libexecdir}/lcrso/objdb.lcrso
|
|
%{_libexecdir}/lcrso/service_cfg.lcrso
|
|
%{_libexecdir}/lcrso/service_cpg.lcrso
|
|
%{_libexecdir}/lcrso/service_evs.lcrso
|
|
%{_libexecdir}/lcrso/service_confdb.lcrso
|
|
%{_libexecdir}/lcrso/service_pload.lcrso
|
|
%{_libexecdir}/lcrso/service_votequorum.lcrso
|
|
%{_libexecdir}/lcrso/testquorum.lcrso
|
|
%{_libexecdir}/lcrso/vsf_quorum.lcrso
|
|
%{_libexecdir}/lcrso/vsf_ykd.lcrso
|
|
%{_mandir}/man8/corosync_overview.8*
|
|
%{_mandir}/man8/corosync-objctl.8*
|
|
%{_mandir}/man5/corosync.conf.5*
|
|
|
|
%package -n corosynclib
|
|
Summary: The Corosync Cluster Engine Libraries
|
|
Group: System Environment/Libraries
|
|
Conflicts: corosync < 0.92-7
|
|
|
|
%description -n corosynclib
|
|
This package contains corosync libraries.
|
|
|
|
%files -n corosynclib
|
|
%defattr(-,root,root,-)
|
|
%dir %{_libdir}/corosync
|
|
%config(noreplace) /etc/ld.so.conf.d/corosync-*.conf
|
|
%{_libdir}/corosync/libcfg.so.*
|
|
%{_libdir}/corosync/libcpg.so.*
|
|
%{_libdir}/corosync/libconfdb.so.*
|
|
%{_libdir}/corosync/libevs.so.*
|
|
%{_libdir}/corosync/libtotem_pg.so.*
|
|
%{_libdir}/corosync/liblogsys.so.*
|
|
%{_libdir}/corosync/libcoroipc.so.*
|
|
%{_libdir}/corosync/libquorum.so.*
|
|
%{_libdir}/corosync/libvotequorum.so.*
|
|
|
|
%post -n corosynclib -p /sbin/ldconfig
|
|
|
|
%postun -n corosynclib -p /sbin/ldconfig
|
|
|
|
%package -n corosynclib-devel
|
|
Summary: The Corosync Cluster Engine Development Kit
|
|
Group: Development/Libraries
|
|
Requires: corosynclib = %{version}-%{release}
|
|
Requires: pkgconfig
|
|
Provides: corosync-devel = %{version}
|
|
Obsoletes: corosync-devel < 0.92-7
|
|
|
|
%description -n corosynclib-devel
|
|
This package contains include files and man pages used to develop using
|
|
The Corosync Cluster Engine APIs.
|
|
|
|
%files -n corosynclib-devel
|
|
%defattr(-,root,root,-)
|
|
%dir %{_docdir}/%{name}-%{version}
|
|
%doc %{_docdir}/%{name}-%{version}/README.devmap
|
|
%dir %{_includedir}/corosync/
|
|
%{_includedir}/corosync/coroipc.h
|
|
%{_includedir}/corosync/cfg.h
|
|
%{_includedir}/corosync/confdb.h
|
|
%{_includedir}/corosync/corotypes.h
|
|
%{_includedir}/corosync/cpg.h
|
|
%{_includedir}/corosync/evs.h
|
|
%{_includedir}/corosync/hdb.h
|
|
%{_includedir}/corosync/ipc_gen.h
|
|
%{_includedir}/corosync/list.h
|
|
%{_includedir}/corosync/mar_gen.h
|
|
%{_includedir}/corosync/swab.h
|
|
%{_includedir}/corosync/quorum.h
|
|
%{_includedir}/corosync/votequorum.h
|
|
%dir %{_includedir}/corosync/totem/
|
|
%{_includedir}/corosync/totem/coropoll.h
|
|
%{_includedir}/corosync/totem/totem.h
|
|
%{_includedir}/corosync/totem/totemip.h
|
|
%{_includedir}/corosync/totem/totempg.h
|
|
%dir %{_includedir}/corosync/lcr/
|
|
%{_includedir}/corosync/lcr/lcr_ckpt.h
|
|
%{_includedir}/corosync/lcr/lcr_comp.h
|
|
%{_includedir}/corosync/lcr/lcr_ifact.h
|
|
%dir %{_includedir}/corosync/engine
|
|
%{_includedir}/corosync/engine/config.h
|
|
%{_includedir}/corosync/engine/coroapi.h
|
|
%{_includedir}/corosync/engine/logsys.h
|
|
%{_includedir}/corosync/engine/objdb.h
|
|
%{_includedir}/corosync/engine/quorum.h
|
|
%{_libdir}/corosync/libcfg.so
|
|
%{_libdir}/corosync/libcpg.so
|
|
%{_libdir}/corosync/libconfdb.so
|
|
%{_libdir}/corosync/libevs.so
|
|
%{_libdir}/corosync/libtotem_pg.so
|
|
%{_libdir}/corosync/liblogsys.so
|
|
%{_libdir}/corosync/libcoroipc.so
|
|
%{_libdir}/corosync/libquorum.so
|
|
%{_libdir}/corosync/libvotequorum.so
|
|
%{_libdir}/pkgconfig/*.pc
|
|
%{_mandir}/man3/cpg_*3*
|
|
%{_mandir}/man3/evs_*3*
|
|
%{_mandir}/man3/confdb_*3*
|
|
%{_mandir}/man3/votequorum_*3*
|
|
%{_mandir}/man8/cpg_overview.8*
|
|
%{_mandir}/man8/evs_overview.8*
|
|
%{_mandir}/man8/confdb_overview.8*
|
|
%{_mandir}/man8/logsys_overview.8*
|
|
%{_mandir}/man8/votequorum_overview.8*
|
|
|
|
%changelog
|
|
* Tue Mar 10 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.94-5.svn1797
|
|
- Update the corosync-trunk patch for real this time.
|
|
|
|
* 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.
|
|
|
|
* 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)
|
|
|
|
* 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)
|
|
|
|
* 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.
|
|
|
|
* Wed Feb 25 2009 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.93-4
|
|
- Add Makefile fix to install all corosync tools (commit r1780)
|
|
|
|
* 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
|
|
|
|
* 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.
|
|
|
|
* 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.
|
|
|
|
* 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.
|
|
- Tidy up spec files by re-organazing sections according to packages.
|
|
- Split libraries from corosync to corosynclib.
|
|
- Rename corosync-devel to corosynclib-devel.
|
|
- Comply with multiarch requirements (libraries).
|
|
|
|
* 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.
|
|
|
|
* 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.
|
|
|
|
* 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.
|
|
|
|
* Mon Oct 13 2008 Dennis Gilmore <dennis@ausil.us> - 0.92-3
|
|
- remove ExclusiveArch line
|
|
|
|
* Fri Sep 24 2008 Steven Dake <sdake@redhat.com> - 0.92-2
|
|
- Add conflicts for openais and openais-devel packages older then 0.90.
|
|
|
|
* 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.
|