Update to 1.1.4 from upstream
This commit is contained in:
parent
4e63626776
commit
dab371101f
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
b3cb4f4a30ae.tar.bz2
|
b3cb4f4a30ae.tar.bz2
|
||||||
|
/Pacemaker-1.1.4.tar.bz2
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
%global pcmk_docdir %{_docdir}/%{name}
|
%global pcmk_docdir %{_docdir}/%{name}
|
||||||
|
|
||||||
# Supported cluster stacks, must support at least one
|
# Supported cluster stacks, must support at least one
|
||||||
%bcond_with cman
|
%bcond_without cman
|
||||||
%bcond_without ais
|
%bcond_without ais
|
||||||
%bcond_without heartbeat
|
%bcond_without heartbeat
|
||||||
|
|
||||||
@ -14,11 +14,14 @@
|
|||||||
# SNMP trap support only works with Net-SNMP 5.4 and above
|
# SNMP trap support only works with Net-SNMP 5.4 and above
|
||||||
%bcond_without snmp
|
%bcond_without snmp
|
||||||
|
|
||||||
|
# Support additional trace logging
|
||||||
|
%bcond_with tracedata
|
||||||
|
|
||||||
# We generate some docs using Publican, but its not available everywhere
|
# We generate some docs using Publican, but its not available everywhere
|
||||||
%bcond_without publican
|
%bcond_without publican
|
||||||
|
|
||||||
%global specversion 1
|
%global specversion 1
|
||||||
%global upstream_version 3f04d59d464c
|
%global upstream_version Pacemaker-1.1.4
|
||||||
%global upstream_prefix Pacemaker-1-1-
|
%global upstream_prefix Pacemaker-1-1-
|
||||||
|
|
||||||
# Keep around for when/if required
|
# Keep around for when/if required
|
||||||
@ -36,8 +39,8 @@
|
|||||||
|
|
||||||
Name: pacemaker
|
Name: pacemaker
|
||||||
Summary: Scalable High-Availability cluster resource manager
|
Summary: Scalable High-Availability cluster resource manager
|
||||||
Version: 1.1.3
|
Version: 1.1.4
|
||||||
Release: %{pcmk_release}.1
|
Release: %{pcmk_release}
|
||||||
License: GPLv2+ and LGPLv2+
|
License: GPLv2+ and LGPLv2+
|
||||||
Url: http://www.clusterlabs.org
|
Url: http://www.clusterlabs.org
|
||||||
Group: System Environment/Daemons
|
Group: System Environment/Daemons
|
||||||
@ -170,11 +173,14 @@ resource health.
|
|||||||
%build
|
%build
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
%{configure} \
|
%{configure} \
|
||||||
%{?_without_heartbeat} \
|
%{!?_with_heartbeat: --without-heartbeat} \
|
||||||
%{?_without_ais} \
|
%{!?_with_ais: --without-ais} \
|
||||||
%{?_with_cman} \
|
%{!?_with_esmtp: --without-esmtp} \
|
||||||
%{?_without_esmtp} \
|
%{!?_with_snmp: --without-snmp} \
|
||||||
%{?_without_snmp} \
|
%{?_with_cman: --with-cman} \
|
||||||
|
%{?_with_profiling: --with-profiling} \
|
||||||
|
%{?_with_gcov: --with-gcov} \
|
||||||
|
%{?_with_tracedata --with-tracedata} \
|
||||||
--docdir=%{pcmk_docdir} \
|
--docdir=%{pcmk_docdir} \
|
||||||
--localstatedir=%{_var} \
|
--localstatedir=%{_var} \
|
||||||
--with-initdir=%{_initddir} \
|
--with-initdir=%{_initddir} \
|
||||||
@ -190,7 +196,7 @@ make DESTDIR=%{buildroot} install
|
|||||||
mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}/sysconfig
|
mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}/sysconfig
|
||||||
install -m 644 mcp/pacemaker.sysconfig ${RPM_BUILD_ROOT}%{_sysconfdir}/sysconfig/pacemaker
|
install -m 644 mcp/pacemaker.sysconfig ${RPM_BUILD_ROOT}%{_sysconfdir}/sysconfig/pacemaker
|
||||||
|
|
||||||
# Scripts that need should be executable
|
# Scripts that should be executable
|
||||||
chmod a+x %{buildroot}/%{_datadir}/pacemaker/tests/cts/CTSlab.py
|
chmod a+x %{buildroot}/%{_datadir}/pacemaker/tests/cts/CTSlab.py
|
||||||
chmod a+x %{buildroot}/%{_datadir}/pacemaker/tests/cts/extracttests.py
|
chmod a+x %{buildroot}/%{_datadir}/pacemaker/tests/cts/extracttests.py
|
||||||
|
|
||||||
@ -265,6 +271,7 @@ rm -rf %{buildroot}
|
|||||||
|
|
||||||
%doc COPYING
|
%doc COPYING
|
||||||
%doc AUTHORS
|
%doc AUTHORS
|
||||||
|
%doc ChangeLog
|
||||||
|
|
||||||
%dir %attr (750, %{uname}, %{gname}) %{_var}/lib/heartbeat/crm
|
%dir %attr (750, %{uname}, %{gname}) %{_var}/lib/heartbeat/crm
|
||||||
%dir %attr (750, %{uname}, %{gname}) %{_var}/lib/pengine
|
%dir %attr (750, %{uname}, %{gname}) %{_var}/lib/pengine
|
||||||
@ -310,6 +317,10 @@ rm -rf %{buildroot}
|
|||||||
%doc AUTHORS
|
%doc AUTHORS
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Nov 15 2010 Andrew Beekhof <andrew@beekhof.net> 1.1.4-1
|
||||||
|
- Upstream release of 1.1.4
|
||||||
|
- See included ChangeLog file or http://hg.clusterlabs.org/pacemaker/1.1/file/tip/ChangeLog for details
|
||||||
|
|
||||||
* Wed Sep 29 2010 jkeating - 1.1.3-1.1
|
* Wed Sep 29 2010 jkeating - 1.1.3-1.1
|
||||||
- Rebuilt for gcc bug 634757
|
- Rebuilt for gcc bug 634757
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user