Whamcloud - gitweb
LU-10752 build: properly package lsvcgss for rpm builds
[fs/lustre-release.git] / lustre.spec.in
1 # lustre.spec
2
3 # Declare rpmbuild --with/--without parameters
4 %bcond_without servers
5 %bcond_without ldiskfs
6 %bcond_with zfs
7 %bcond_without lustre_tests
8 %bcond_without lustre_utils
9 %bcond_without lustre_iokit
10 %bcond_without lustre_modules
11 %bcond_with snmp
12 %bcond_without gss_keyring
13 %bcond_without manpages
14 %bcond_without shared
15 %bcond_without static
16 %bcond_with    systemd
17
18 %if %{without servers}
19     # --without servers overrides --with {ldiskfs|zfs}
20     # so undefine the internal variables set by bcond_*
21     %undefine with_ldiskfs
22     %undefine with_zfs
23 %endif
24
25 %{!?version: %global version @VERSION@}
26 %{!?kver:    %global kver    %(uname -r)}
27 %{!?kdir:    %global kdir    /lib/modules/%{kver}/source}
28 %{!?kobjdir: %global kobjdir %(if [ "%{kdir}" = "/lib/modules/%{kver}/source" ]; then echo "/lib/modules/%{kver}/build"; else echo "%{kdir}"; fi)}
29
30 # as an alternative to this implementation we could simply "make -C $kdir kernelversion"
31 %{!?kversion: %global kversion %(files="include/generated/utsrelease.h include/linux/utsrelease.h include/linux/version.h"; for f in $files; do if test -r %{kobjdir}/$f && grep UTS_RELEASE %{kobjdir}/$f >/dev/null; then sed -ne '/^#define UTS_RELEASE/s/.*"\\(.*\\)"$/\\1/p' %{kobjdir}/$f; break; fi; done)}
32
33 # We set this because kernel_module_package has its own method of identifying
34 # which kernel to build against, and it is unlikely that its decision will
35 # match with Lustre's method of selecting which kernel to build against.
36 # By setting this variable, we override kernel_module_package's kernel
37 # selection with our selection.
38 %{!?kernel_version: %global kernel_version %kversion}
39
40 # in order to get kernel symset and/or kernel module dependencies into
41 # the RPM, in order to support weak-modules, the internal dependency gen-
42 # erator needs to be disabled
43 # this is done with (reduce the double % down to a single %):
44 #
45 # %%global _use_internal_dependency_generator 0
46 #
47 # on SLES10, /usr/lib/rpm/macros already sets this, so no harm in also
48 # defining it here (until Suse changes their mind)
49 #
50 # on RHEL5, however, we do need to explicitly disable the internal dep-
51 # endency generator and allow the external one be used
52 # but since RedHat's kABI is only a subset of the total kernel ABI, it
53 # doesn't include all of the symbols we (or OFED for that matter) need
54 # until RedHat includes all of the symbols we need in their symsets we
55 # cannot support weak-modules
56 # we did e-mail the maintainer of all of this stuff @redhat but got no
57 # response from them
58 #%%global _use_internal_dependency_generator 0
59
60 # Set the package name prefix
61 %if %{undefined lustre_name}
62     %if %{with servers}
63         %global lustre_name lustre
64     %else
65         %global lustre_name lustre-client
66     %endif
67 %endif
68
69 %if %{undefined kmoddir}
70     %if %{defined kernel_module_package_moddir}
71         %global kmoddir %{kernel_module_package_moddir}
72     %else
73         %if %{defined suse_kernel_module_package}
74             %global kmoddir updates
75         %else
76             %global kmoddir extra
77         %endif
78     %endif
79 %endif
80
81 %global modules_fs_path /lib/modules/%{kversion}/%{kmoddir}
82
83 %if %{_vendor}=="redhat" || %{_vendor}=="fedora"
84         %global requires_kmod_name kmod-%{lustre_name}
85         %if %{with lustre_tests}
86                 %global requires_kmod_tests_name kmod-%{lustre_name}-tests
87         %endif
88         %global requires_kmod_version %{version}
89 %else   #for Suse
90         %global requires_kmod_name %{lustre_name}-kmp
91         %if %{with lustre_tests}
92                 %global requires_kmod_tests_name %{lustre_name}-tests-kmp
93         %endif
94         %define krequires %(echo %{kversion} | sed -e 's/\.x86_64$//' -e 's/\.i[3456]86$//' -e 's/-smp$//' -e 's/-bigsmp$//' -e 's/[-.]ppc64$//' -e 's/\.aarch64$//' -e 's/-default$//')
95         %if 0%{?suse_version} >= 1200
96                 %global requires_kmod_version %{version}_k%(echo %{krequires} | sed -r 'y/-/_/; s/^(2\.6\.[0-9]+)_/\\1.0_/;')
97         %else
98                 %global requires_kmod_version %{version}_%(echo %{krequires} | sed -r 'y/-/_/; s/^(2\.6\.[0-9]+)_/\\1.0_/;')
99         %endif
100 %endif
101
102 # RHEL >= 7 comes with systemd
103 %if 0%{?rhel} >= 7
104 %define with_systemd 1
105 %endif
106
107 # Fedora >= 15 comes with systemd, but only >= 18 has
108 # the proper macros
109 %if 0%{?fedora} >= 18
110 %define with_systemd 1
111 %endif
112
113 # opensuse >= 12.1 comes with systemd, but only >= 13.1
114 # has the proper macros
115 %if 0%{?suse_version} >= 1310
116 %define with_systemd 1
117 %endif
118
119 Summary: Lustre File System
120 Name: %{lustre_name}
121 Version: %{version}
122 Release: 1%{?dist}
123 License: GPL
124 Group: System Environment/Kernel
125 Source: lustre-%{version}.tar.gz
126 Source1: kmp-lustre.preamble
127 Source2: kmp-lustre.files
128 Source3: kmp-lustre-osd-ldiskfs.preamble
129 Source4: kmp-lustre-osd-ldiskfs.files
130 Source5: kmp-lustre-osd-zfs.preamble
131 Source6: kmp-lustre-osd-zfs.files
132 Source7: kmp-lustre-tests.files
133 URL: https://wiki.hpdd.intel.com/
134 BuildRoot: %{_tmppath}/lustre-%{version}-root
135 Requires: %{requires_kmod_name} = %{requires_kmod_version}
136 BuildRequires: libtool
137 %if %{with servers}
138 Requires: lustre-osd
139 Requires: lustre-osd-mount
140 Obsoletes: lustre-client < %{version}
141 Provides: lustre-client = %{version}-%{release}
142 %endif
143 # GSS requires this: BuildRequires: pkgconfig, libgssapi-devel >= 0.10
144 %if %{_vendor}=="redhat" || %{_vendor}=="fedora"
145 #suse don't support selinux
146 BuildRequires: libselinux-devel
147 Requires: libselinux
148 %endif
149 %if %{with lustre_modules}
150 BuildRequires: %kernel_module_package_buildreqs
151 %if %{_vendor}=="redhat"
152 BuildRequires: redhat-rpm-config
153 %endif
154 %endif
155
156 %if %{with systemd}
157 Requires(post): systemd
158 Requires(preun): systemd
159 Requires(postun): systemd
160 BuildRequires: systemd
161 %endif
162
163 %description
164 Userspace tools and files for the Lustre file system.
165
166 %if %{with lustre_modules}
167 %kernel_module_package -n %{name} -p %SOURCE1 -f %SOURCE2 default
168
169 %if %{with ldiskfs}
170 %kernel_module_package -n %{name}-osd-ldiskfs -p %SOURCE3 -f %SOURCE4 default
171 %if %{with lustre_utils}
172 %package osd-ldiskfs-mount
173 Summary: osd-ldiskfs-mount contains mount's ldiskfs specific dso.
174 Provides: lustre-osd-mount = %{version}-%{fullrelease}
175 Group: System Environment/Kernel
176
177 %description osd-ldiskfs-mount
178 LDISKFS hooks for mount/mkfs into a dynamic library.
179
180 %endif  # with lustre_utils
181 %endif  # with ldiskfs
182
183 %if %{with zfs}
184 %kernel_module_package -n %{name}-osd-zfs -p %SOURCE5 -f %SOURCE6 default
185 %if %{with lustre_utils}
186 %package osd-zfs-mount
187 Summary: osd-zfs-mount contains mount's zfs specific dso.
188 Provides: lustre-osd-mount = %{version}-%{fullrelease}
189 Group: System Environment/Kernel
190
191 %description osd-zfs-mount
192 ZFS hooks for mount/mkfs into a dynamic library.
193
194 %endif  # with lustre_utils
195 %endif  # with zfs
196
197 %endif # with lustre_modules
198
199 %if %{with servers}
200 %package resource-agents
201 Summary: HA Resuable Cluster Resource Scripts for Lustre
202 Group: System Environment/Base
203 Requires: lustre
204 Requires: resource-agents
205
206 %description resource-agents
207 A set of scripts to operate Lustre resources in a High Availablity
208 environment for both Pacemaker and rgmanager.
209 %endif
210
211 %if %{with lustre_tests}
212 %package tests
213 Summary: Lustre testing framework
214 Group: System Environment/Kernel
215 Provides: %{name}-tests = %{version}
216 %if %{with lustre_iokit}
217 Requires: %{name} = %{version}, lustre-iokit
218 %else
219 Requires: %{name} = %{version}
220 %endif
221 Requires: %{requires_kmod_name} = %{requires_kmod_version}
222 Requires: %{requires_kmod_tests_name} = %{requires_kmod_version}
223 Requires: attr, rsync, perl, lsof, /usr/bin/getconf
224
225 %description tests
226 This package contains a set of test binaries and scripts that are intended
227 to be used by the Lustre testing framework.
228
229 %if %{with lustre_modules}
230 %kernel_module_package -n %{name}-tests -f %SOURCE7 default
231 %endif
232 %endif
233
234 %if %{with lustre_iokit}
235 %package -n lustre-iokit
236 Summary: The Lustre IO-Kit is a collection of benchmark tools for a cluster with the Lustre file system.
237 Group: Applications/System
238 Requires: python > 2.2, sg3_utils
239
240 %description -n lustre-iokit
241 This package includes five tools:
242 sgpdd-survey:
243 A test of the 'bare metal' performance, bypassing as much of the kernel as we can. Uses the sgp_dd utility.
244
245 obdfilter-survey
246 This survey can be run in 3 modes to test disk I/O including the filesystem,
247 network I/O, and disk I/O via the network.  The script does sequential I/O
248 with varying numbers of threads and objects (files) by using lctl::test_brw
249 to drive the echo_client connected to local or remote obdfilter instances,
250 or remote obdecho instances.
251
252 ost-survey
253 This survey tests the client-to-disk performance of individual OSTs, and
254 ranks then for comparison.
255
256 stats-collect
257 This script will collect IO stats on a defined set of nodes.
258
259 ior-survey:
260 A script to run the IOR benchmark. The latest version can be downloaded from
261 http://www.llnl.gov/asci/purple/benchmarks/limited/ior/
262
263 mds-survey:
264 This survey tests the local metadata performance using the echo_client to drive
265 the MDD layer to perform operations. It is run with multiple threads (to
266 simulate MDT service threads) locally on the MDS node, and does not need Lustre
267 clients in order to run
268 %endif
269
270 %if 0%{?suse_version}
271 %debug_package
272 %endif
273 %prep
274 %setup -qn lustre-%{version}
275 ln lustre/ChangeLog ChangeLog-lustre
276 ln lnet/ChangeLog ChangeLog-lnet
277
278 %build
279 # Set an explicit path to our Linux tree, if we can.
280 cd $RPM_BUILD_DIR/lustre-%{version}
281 # override %optflags so that the vendor's overzealous flags don't create
282 # build failures
283 %define optflags -g -O2 -Werror
284
285 CONFIGURE_ARGS="%{?configure_args}"
286 if [ -n "$CONFIGURE_ARGS" ]; then
287         # make sure %%kdir and %%kobjdir are not in the configure arguments
288         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux=[^ ][^ ]* \?//')
289         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-linux-obj=[^ ][^ ]* \?//')
290         # remove --with-kmp-moddir from configure arguments,
291         # it will be set --with-kmp-moddir=%%kmoddir
292         CONFIGURE_ARGS=$(echo $CONFIGURE_ARGS | sed -e 's/"\?--with-kmp-moddir=[^ ][^ ]* \?//')
293 fi
294
295 # we need to eval "configure" because $CONFIGURE_ARGS could have a quoted
296 # string in it which we don't want word splitted by the shell
297 # also remove (build|host|target) options because they will be specified
298 # inside $CONFIGURE_ARGS
299 # kmod tools/scripts require %{name} directory with kernel modules
300 %define eval_configure %(echo '%configure' | sed -e 's#\./configure#eval ./configure#' -e 's/--\\(build\\|host\\|target\\)=[^ ][^ ]* //g')
301
302 %eval_configure $CONFIGURE_ARGS \
303         %{?with_lustre_tests:--enable-tests}%{!?with_lustre_tests:--disable-tests} \
304         %{?with_lustre_utils:--enable-utils}%{!?with_lustre_utils:--disable-utils} \
305         %{?with_lustre_modules:--enable-modules}%{!?with_lustre_modules:--disable-modules} \
306         %{!?with_shared:--disable-shared} \
307         %{!?with_static:--disable-static} \
308         %{!?with_lustre_iokit:--disable-iokit} \
309         %{!?with_ldiskfs:--disable-ldiskfs} \
310         %{!?with_servers:--disable-server} \
311         %{!?with_zfs:--without-zfs} \
312         %{!?with_snmp:--disable-snmp} \
313         %{!?with_gss_keyring:--disable-gss-keyring} \
314         %{!?with_manpages:--disable-manpages} \
315         %{!?with_systemd:--with-systemdsystemunitdir=no} \
316         %{?with_systemd:--with-systemdsystemunitdir=%{_unitdir}} \
317         --with-linux=%{kdir} \
318         --with-linux-obj=%{kobjdir} \
319         --with-kmp-moddir=%{kmoddir}/%{name}
320
321 make %{?_smp_mflags} -s %{?make_args}
322
323 %install
324 make install DESTDIR=$RPM_BUILD_ROOT
325
326 # RHEL's kernel_module_path macro expects that all the modules
327 # in a kmod package will be in modules_fs_path/<sub packagename>
328 # but Lustre installs all of the modules in a single pass into
329 # a shared location.  Since this is a restriction imposed by
330 # RHEL, we handle this here in the spec file rather than in
331 # Lustre's build system.  This is not expected to bother SLES's
332 # kernel_module_path macro.
333 basemodpath=$RPM_BUILD_ROOT%{modules_fs_path}/%{lustre_name}
334 %if %{with ldiskfs}
335 mkdir -p $basemodpath-osd-ldiskfs/fs
336 mv $basemodpath/fs/osd_ldiskfs.ko $basemodpath-osd-ldiskfs/fs/osd_ldiskfs.ko
337 mv $basemodpath/fs/ldiskfs.ko $basemodpath-osd-ldiskfs/fs/ldiskfs.ko
338 %endif
339 %if %{with zfs}
340 mkdir -p $basemodpath-osd-zfs/fs
341 mv $basemodpath/fs/osd_zfs.ko $basemodpath-osd-zfs/fs/osd_zfs.ko
342 %endif
343 %if %{with lustre_tests}
344 mkdir -p $basemodpath-tests/fs
345 mv $basemodpath/fs/llog_test.ko $basemodpath-tests/fs/llog_test.ko
346 mkdir -p $RPM_BUILD_ROOT%{_libdir}/lustre/tests/kernel/
347 mv $basemodpath/fs/kinode.ko $RPM_BUILD_ROOT%{_libdir}/lustre/tests/kernel/
348 %endif
349
350 :> lustre.files
351
352 %if %{with servers} && %{with lustre_utils}
353 # The .ha_v2 extension identifies the heartbeat resource agent as using
354 # legacy syntax. Install a compatibility symlink to avoid conflicts when
355 # newer-style agents are added.
356 ln -s Lustre.ha_v2 $RPM_BUILD_ROOT%{_sysconfdir}/ha.d/resource.d/Lustre
357 echo '%{_sysconfdir}/ha.d/resource.d/Lustre.ha_v2' >>lustre.files
358 echo '%{_sysconfdir}/ha.d/resource.d/Lustre' >>lustre.files
359 %endif
360
361 # systemd is on redhat, fedora, and suse
362 %if %{with systemd}
363 echo '%{_unitdir}/lnet.service' >>lustre.files
364 %endif
365
366 %if %{_vendor}=="redhat"
367 # The following scripts are Red Hat specific
368 %if %{with servers}
369 echo '%{_sysconfdir}/init.d/lustre' >>lustre.files
370 echo '%{_sysconfdir}/sysconfig/lustre' >>lustre.files
371 %if %{with gss_keyring}
372 echo '%{_sysconfdir}/init.d/lsvcgss' >>lustre.files
373 echo '%{_sysconfdir}/sysconfig/lsvcgss' >>lustre.files
374 %endif
375 %endif
376
377 %if %{without systemd}
378 echo '%{_sysconfdir}/init.d/lnet' >>lustre.files
379 %endif
380 %endif
381
382 %if %{with servers}
383 mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/ocf/resource.d/lustre/
384 install -m 0755 contrib/scripts/pacemaker/* $RPM_BUILD_ROOT%{_prefix}/lib/ocf/resource.d/lustre/
385 %endif
386
387 # fc18 needs 'x' permission for library files
388 find $RPM_BUILD_ROOT -name \*.so -type f -exec chmod +x {} \;
389
390 rm -f $RPM_BUILD_ROOT%{_libdir}/liblnetconfig.la
391 %if %{with static}
392 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.a' >>lustre.files
393 %endif
394 %if %{with shared}
395 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so' >>lustre.files
396 echo '%attr(-, root, root) %{_libdir}/liblnetconfig.so.*' >>lustre.files
397 %endif
398
399 %if %{with ldiskfs}
400 echo '%{_libdir}/libiam.a' >>lustre.files
401 %endif
402
403 %if %{with snmp}
404 mkdir -p $RPM_BUILD_ROOT/%{_libdir}/lustre/snmp
405 echo '%{_libdir}/lustre/snmp' >>lustre.files
406 %endif
407
408 %if %{with lustre_utils}
409 mkdir -p $RPM_BUILD_ROOT/%{_datadir}/lustre
410 if [ -d $RPM_BUILD_ROOT%{_libdir}/lustre ] ; then
411         find $RPM_BUILD_ROOT%{_libdir}/@PACKAGE@ -name \*.la -type f -exec rm -f {} \;
412 fi
413 %endif
414
415 %if %{with lustre_modules}
416 # mark modules executable for find-debuginfo.sh
417 find $RPM_BUILD_ROOT/lib/modules -name \*.ko -type f -exec chmod u+x {} \;
418 %endif
419
420 rm -f $RPM_BUILD_ROOT%{_libdir}/liblustreapi.la
421
422 %if %{with lustre_tests}
423 :> lustre-tests.files
424 echo '%{_libdir}/lustre/tests/*' >>lustre-tests.files
425 echo '%{_bindir}/mcreate' >>lustre-tests.files
426 echo '%{_bindir}/munlink' >>lustre-tests.files
427 echo '%{_sbindir}/wirecheck' >>lustre-tests.files
428 echo '%{_sbindir}/wiretest' >>lustre-tests.files
429 %endif
430
431 %files -f lustre.files
432 %defattr(-,root,root)
433 %{_sbindir}/*
434 %if %{with lustre_tests}
435 %exclude %{_sbindir}/wirecheck
436 %exclude %{_sbindir}/wiretest
437 %endif
438 %if %{with zfs}
439 %exclude %{_sbindir}/zfsobj2fid
440 %endif
441 %if %{with lustre_utils}
442 %if %{with servers}
443 %{_libexecdir}/lustre/lc_common
444 %{_libexecdir}/lustre/haconfig
445 %{_bindir}/lustre_req_history
446 %endif
447
448 %{_bindir}/llobdstat
449 %{_bindir}/llstat
450 %{_bindir}/plot-llstat
451
452 %{_bindir}/lfs
453 %{_bindir}/lfs_migrate
454 /sbin/mount.lustre
455 %if %{with static}
456 %{_libdir}/liblustreapi.a
457 %endif
458 %if %{with shared}
459 %{_libdir}/liblustreapi.so*
460 %endif
461 %if %{with manpages}
462 %{_mandir}/man?/*
463 %endif
464 %{_datadir}/lustre
465 %{_includedir}/lustre
466 %{_includedir}/linux/lnet
467 %{_includedir}/linux/lustre
468 %endif
469 %{_sysconfdir}/udev/rules.d/99-lustre.rules
470 %if %{with zfs}
471 %config(noreplace) %{_sysconfdir}/ldev.conf
472 %endif
473 %config(noreplace) %{_sysconfdir}/lnet.conf
474 %config(noreplace) %{_sysconfdir}/modprobe.d/ko2iblnd.conf
475 %if %{with lustre_utils}
476 %config(noreplace) %{_sysconfdir}/lnet_routes.conf
477 %endif
478 %if %{with lustre_modules}
479
480 %if %{with shared}
481 %if %{with ldiskfs}
482 %if %{with lustre_utils}
483 %files osd-ldiskfs-mount
484 %defattr(-,root,root)
485 %{_libdir}/@PACKAGE@/mount_osd_ldiskfs.so
486 %endif
487 %endif
488 %endif
489
490 %if %{with shared}
491 %if %{with zfs}
492 %if %{with lustre_utils}
493 %files osd-zfs-mount
494 %defattr(-,root,root)
495 %{_libdir}/@PACKAGE@/mount_osd_zfs.so
496 %{_sysconfdir}/zfs/zed.d/*
497 %endif
498 %endif
499 %endif
500
501 %endif # with lustre_modules
502
503 %if %{with servers}
504 %files resource-agents
505 %defattr(0755,root,root)
506 %{_prefix}/lib/ocf/resource.d/lustre/
507 %endif
508
509 %if %{with lustre_tests}
510 %files tests -f lustre-tests.files
511 %defattr(-,root,root)
512 %endif
513
514 %if %{with lustre_iokit}
515 %files -n lustre-iokit
516 %defattr(-, root, root)
517 %{_bindir}/iokit-config
518 %{_bindir}/iokit-gather-stats
519 %{_bindir}/iokit-libecho
520 %{_bindir}/iokit-lstats
521 %{_bindir}/iokit-parse-ior
522 %{_bindir}/iokit-plot-obdfilter
523 %{_bindir}/iokit-plot-ost
524 %{_bindir}/iokit-plot-sgpdd
525 %{_bindir}/ior-survey
526 %{_bindir}/mds-survey
527 %{_bindir}/obdfilter-survey
528 %{_bindir}/ost-survey
529 %{_bindir}/sgpdd-survey
530 %doc lustre-iokit/ior-survey/README.ior-survey
531 %doc lustre-iokit/mds-survey/README.mds-survey
532 %doc lustre-iokit/obdfilter-survey/README.obdfilter-survey
533 %doc lustre-iokit/ost-survey/README.ost-survey
534 %doc lustre-iokit/sgpdd-survey/README.sgpdd-survey
535 %doc lustre-iokit/stats-collect/README.iokit-lstats
536 %endif
537
538 %post
539 %if %{with systemd}
540 %systemd_post lnet.service
541 %endif
542
543 %preun
544 %if %{with systemd}
545 %systemd_preun lnet.service
546 %endif
547
548 %postun
549 %if %{with systemd}
550 %systemd_postun_with_restart lnet.service
551 %endif
552
553 %clean
554 rm -rf $RPM_BUILD_ROOT
555 rm -rf %{_tmppath}/kmp