]> git.proxmox.com Git - mirror_corosync.git/blob - corosync.spec.in
drop evs service
[mirror_corosync.git] / corosync.spec.in
1 %global alphatag @alphatag@
2 %global numcomm @numcomm@
3 %global dirty @dirty@
4
5 # Conditionals
6 # Invoke "rpmbuild --without <feature>" or "rpmbuild --with <feature>"
7 # to disable or enable specific features
8 %bcond_with testagents
9 %bcond_with watchdog
10 %bcond_with monitoring
11 %bcond_with snmp
12 %bcond_with dbus
13 %bcond_with rdma
14 %bcond_with systemd
15 %bcond_with nss
16 %bcond_with xmlconf
17
18 Name: corosync
19 Summary: The Corosync Cluster Engine and Application Programming Interfaces
20 Version: @version@
21 Release: 1%{?numcomm:.%{numcomm}}%{?alphatag:.%{alphatag}}%{?dirty:.%{dirty}}%{?dist}
22 License: BSD
23 Group: System Environment/Base
24 URL: http://ftp.corosync.org
25 Source0: ftp://ftp:user@ftp.corosync.org/downloads/%{name}-%{version}/%{name}-%{version}%{?numcomm:.%{numcomm}}%{?alphatag:-%{alphatag}}%{?dirty:-%{dirty}}.tar.gz
26
27 # Runtime bits
28 Requires: corosynclib = %{version}-%{release}
29 Requires(pre): /usr/sbin/useradd
30 Requires(post): /sbin/chkconfig
31 Requires(preun): /sbin/chkconfig
32 Conflicts: openais <= 0.89, openais-devel <= 0.89
33
34 # Build bits
35
36 %define buildtrunk 0
37 %{?_with_buildtrunk: %define buildtrunk 1}
38
39 BuildRequires: libqb-devel
40 %if %{buildtrunk}
41 BuildRequires: autoconf automake
42 %endif
43 %if %{with nss}
44 BuildRequires: nss-devel
45 %endif
46 %if %{with rdma}
47 BuildRequires: libibverbs-devel librdmacm-devel
48 %endif
49 %if %{with snmp}
50 BuildRequires: net-snmp-devel
51 %endif
52 %if %{with dbus}
53 BuildRequires: dbus-devel
54 %endif
55 %if %{with systemd}
56 BuildRequires: systemd-units
57 %endif
58 %if %{with xmlconf}
59 Requires: libxslt
60 %endif
61
62 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
63
64 %prep
65 %setup -q -n %{name}-%{version}%{?numcomm:.%{numcomm}}%{?alphatag:-%{alphatag}}%{?dirty:-%{dirty}}
66
67 %build
68 %if %{buildtrunk}
69 ./autogen.sh
70 %endif
71
72 %if %{with rdma}
73 export ibverbs_CFLAGS=-I/usr/include/infiniband \
74 export ibverbs_LIBS=-libverbs \
75 export rdmacm_CFLAGS=-I/usr/include/rdma \
76 export rdmacm_LIBS=-lrdmacm \
77 %endif
78 %{configure} \
79 %if %{with nss}
80 --enable-nss \
81 %else
82 --disable-nss \
83 %endif
84 %if %{with testagents}
85 --enable-testagents \
86 %endif
87 %if %{with watchdog}
88 --enable-watchdog \
89 %endif
90 %if %{with monitoring}
91 --enable-monitoring \
92 %endif
93 %if %{with snmp}
94 --enable-snmp \
95 %endif
96 %if %{with dbus}
97 --enable-dbus \
98 %endif
99 %if %{with rdma}
100 --enable-rdma \
101 %endif
102 %if %{with systemd}
103 --enable-systemd \
104 %endif
105 %if %{with xmlconf}
106 --enable-xmlconf \
107 %endif
108 --with-initddir=%{_initrddir}
109
110 make %{_smp_mflags}
111
112 %install
113 rm -rf %{buildroot}
114
115 make install DESTDIR=%{buildroot}
116
117 %if %{with dbus}
118 mkdir -p -m 0700 %{buildroot}/%{_sysconfdir}/dbus-1/system.d
119 install -m 644 %{_builddir}/%{name}-%{version}/conf/corosync-signals.conf %{buildroot}/%{_sysconfdir}/dbus-1/system.d/corosync-signals.conf
120 %endif
121
122 ## tree fixup
123 # drop static libs
124 rm -f %{buildroot}%{_libdir}/*.a
125 # drop docs and html docs for now
126 rm -rf %{buildroot}%{_docdir}/*
127
128 %clean
129 rm -rf %{buildroot}
130
131 %description
132 This package contains the Corosync Cluster Engine Executive, several default
133 APIs and libraries, default configuration files, and an init script.
134
135 %post
136 if [ $1 -eq 1 ]; then
137 /sbin/chkconfig --add corosync || :
138 fi
139
140 %preun
141 if [ $1 -eq 0 ]; then
142 /sbin/service corosync stop &>/dev/null || :
143 /sbin/chkconfig --del corosync || :
144 fi
145
146 %files
147 %defattr(-,root,root,-)
148 %doc LICENSE SECURITY
149 %{_sbindir}/corosync
150 %{_sbindir}/corosync-keygen
151 %{_sbindir}/corosync-cmapctl
152 %{_sbindir}/corosync-cfgtool
153 %{_sbindir}/corosync-fplay
154 %{_sbindir}/corosync-cpgtool
155 %{_sbindir}/corosync-quorumtool
156 %{_sbindir}/corosync-notifyd
157 %{_bindir}/corosync-blackbox
158 %if %{with xmlconf}
159 %{_bindir}/corosync-xmlproc
160 %config(noreplace) %{_sysconfdir}/corosync/corosync.xml.example
161 %dir %{_datadir}/corosync
162 %dir %{_datadir}/corosync/xml2conf.xsl
163 %{_mandir}/man8/corosync-xmlproc.8*
164 %{_mandir}/man5/corosync.xml.5*
165 %endif
166 %dir %{_sysconfdir}/corosync
167 %dir %{_sysconfdir}/corosync/uidgid.d
168 %config(noreplace) %{_sysconfdir}/corosync/corosync.conf.example
169 %config(noreplace) %{_sysconfdir}/corosync/corosync.conf.example.udpu
170 %if %{with dbus}
171 %{_sysconfdir}/dbus-1/system.d/corosync-signals.conf
172 %endif
173 %if %{with snmp}
174 %{_datadir}/snmp/mibs/COROSYNC-MIB.txt
175 %endif
176 %if %{with systemd}
177 %{_unitdir}/corosync.service
178 %{_unitdir}/corosync-notifyd.service
179 %else
180 %{_initrddir}/corosync
181 %{_initrddir}/corosync-notifyd
182 %endif
183 %dir %{_localstatedir}/lib/corosync
184 %dir %{_localstatedir}/log/cluster
185 %{_mandir}/man8/corosync_overview.8*
186 %{_mandir}/man8/corosync.8*
187 %{_mandir}/man8/corosync-blackbox.8*
188 %{_mandir}/man8/corosync-cmapctl.8*
189 %{_mandir}/man8/corosync-keygen.8*
190 %{_mandir}/man8/corosync-cfgtool.8*
191 %{_mandir}/man8/corosync-cpgtool.8*
192 %{_mandir}/man8/corosync-fplay.8*
193 %{_mandir}/man8/corosync-notifyd.8*
194 %{_mandir}/man8/corosync-quorumtool.8*
195 %{_mandir}/man5/corosync.conf.5*
196 %{_mandir}/man5/votequorum.5*
197
198 # optional testagent rpm
199 #
200 %if %{with testagents}
201
202 %package -n corosync-testagents
203 Summary: The Corosync Cluster Engine Test Agents
204 Group: Development/Libraries
205 Requires: %{name} = %{version}-%{release}
206
207 %description -n corosync-testagents
208 This package contains corosync test agents.
209
210 %files -n corosync-testagents
211 %defattr(755,root,root,-)
212 %{_datadir}/corosync/tests/mem_leak_test.sh
213 %{_datadir}/corosync/tests/net_breaker.sh
214 %{_datadir}/corosync/tests/cmap-dispatch-deadlock.sh
215 %{_datadir}/corosync/tests/shm_leak_audit.sh
216 %{_bindir}/cpg_test_agent
217 %{_bindir}/sam_test_agent
218 %{_bindir}/votequorum_test_agent
219
220 %endif
221
222 # library
223 #
224 %package -n corosynclib
225 Summary: The Corosync Cluster Engine Libraries
226 Group: System Environment/Libraries
227 Requires: %{name} = %{version}-%{release}
228
229 %description -n corosynclib
230 This package contains corosync libraries.
231
232 %files -n corosynclib
233 %defattr(-,root,root,-)
234 %doc LICENSE
235 %{_libdir}/libcfg.so.*
236 %{_libdir}/libcpg.so.*
237 %{_libdir}/libcmap.so.*
238 %{_libdir}/libtotem_pg.so.*
239 %{_libdir}/libquorum.so.*
240 %{_libdir}/libvotequorum.so.*
241 %{_libdir}/libsam.so.*
242 %{_libdir}/libcorosync_common.so.*
243
244 %post -n corosynclib -p /sbin/ldconfig
245
246 %postun -n corosynclib -p /sbin/ldconfig
247
248 %package -n corosynclib-devel
249 Summary: The Corosync Cluster Engine Development Kit
250 Group: Development/Libraries
251 Requires: corosynclib = %{version}-%{release}
252 Requires: pkgconfig
253 Provides: corosync-devel = %{version}
254 Obsoletes: corosync-devel < 0.92-7
255
256 %description -n corosynclib-devel
257 This package contains include files and man pages used to develop using
258 The Corosync Cluster Engine APIs.
259
260 %files -n corosynclib-devel
261 %defattr(-,root,root,-)
262 %doc LICENSE
263 %dir %{_includedir}/corosync/
264 %{_includedir}/corosync/corodefs.h
265 %{_includedir}/corosync/cfg.h
266 %{_includedir}/corosync/cmap.h
267 %{_includedir}/corosync/corotypes.h
268 %{_includedir}/corosync/cpg.h
269 %{_includedir}/corosync/hdb.h
270 %{_includedir}/corosync/sam.h
271 %{_includedir}/corosync/quorum.h
272 %{_includedir}/corosync/votequorum.h
273 %dir %{_includedir}/corosync/totem/
274 %{_includedir}/corosync/totem/totem.h
275 %{_includedir}/corosync/totem/totemip.h
276 %{_includedir}/corosync/totem/totempg.h
277 %{_libdir}/libcfg.so
278 %{_libdir}/libcpg.so
279 %{_libdir}/libcmap.so
280 %{_libdir}/libtotem_pg.so
281 %{_libdir}/libquorum.so
282 %{_libdir}/libvotequorum.so
283 %{_libdir}/libsam.so
284 %{_libdir}/libcorosync_common.so
285 %{_libdir}/pkgconfig/*.pc
286 %{_mandir}/man3/cpg_*3*
287 %{_mandir}/man3/quorum_*3*
288 %{_mandir}/man3/votequorum_*3*
289 %{_mandir}/man3/sam_*3*
290 %{_mandir}/man8/cpg_overview.8*
291 %{_mandir}/man8/votequorum_overview.8*
292 %{_mandir}/man8/sam_overview.8*
293 %{_mandir}/man3/cmap_*3*
294 %{_mandir}/man8/cmap_overview.8*
295 %{_mandir}/man8/quorum_overview.8*
296
297 %changelog
298 * @date@ Autotools generated version <nobody@nowhere.org> - @version@-1-@numcomm@.@alphatag@.@dirty@
299 - Autotools generated version