2 %define version @VERSION@
3 %define kversion @LINUXRELEASE@
5 Summary: Lustre File System
10 Group: Utilities/System
11 Source: lustre-%{version}.tar.gz
12 URL: http://clusterfs.com/
13 BuildRoot: %{_tmppath}/lustre-%{version}-root
14 Obsoletes: lustre-lite, lustre-lite-utils, lustre-ldap nfs-utils-lustre
15 Provides: lustre-lite = %{version}, lustre-lite-utils = %{version}
16 # GSS requires this: BuildRequires: pkgconfig, libgssapi-devel >= 0.10
19 Userspace tools and files for the Lustre file system.
22 Summary: Kernel Lustre modules for Linux %{kversion}
23 Requires: modutils >= 2.4.10
24 Group: Development/Kernel
27 Lustre file system, server and network drivers for Linux %{kversion}.
30 Summary: Object-Based Disk storage driver source
31 Group: Development/Kernel
34 Lustre sources for further development
36 # Since the RPMs we ship are to be used on both SLES and RHEL, we
37 # can't include any dependency information (since the package names
38 # are different on the two platforms).
40 # Instead, we can build these empty meta-packages that only include
41 # dependency information. These let people get the correct
42 # dependencies for their platform and lets them use tools like yum and
43 # red carpet to install the correct files.
45 # Unfortunately I have not seen this come up on the lists much, so I
46 # have disabled them (by commenting out their empty files section
47 # below) until it's clear that they resolve more confusion than they
51 Summary: Lustre dependencies meta-package for SLES
52 Group: Utilities/System
53 Provides: lustre-deps = %{version}
54 Requires: lustre = %{version}, sles-release
55 Conflicts: lustre-deps-rhel
57 %description deps-sles
58 This package has RPM dependencies appropriate for SLES systems.
61 Summary: Lustre dependencies meta-package for RHEL
62 Group: Utilities/System
63 Provides: lustre-deps = %{version}
64 Requires: lustre = %{version}, redhat-release
65 Conflicts: lustre-deps-sles
67 %description deps-rhel
68 This package has RPM dependencies appropriate for RHEL, RHL, and FC
72 Summary: Lustre testing framework
73 Group: Development/Kernel
74 Provides: lustre-tests = %{version}
75 Requires: lustre = %{version}
78 This package contains a set of test binaries and scripts that are intended
79 to be used by the Lustre testing framework.
82 %setup -qn lustre-%{version}
85 # if RPM_BUILD_NCPUS unset, set it
86 if [ -z "$RPM_BUILD_NCPUS" ] ; then
87 RPM_BUILD_NCPUS=$(egrep -c "^cpu[0-9]+" /proc/stat 2>/dev/null || echo 0 :)
88 if [ $RPM_BUILD_NCPUS -eq 0 ] ; then
91 if [ $RPM_BUILD_NCPUS -gt 8 ] ; then
96 rm -rf $RPM_BUILD_ROOT
98 # Set an explicit path to our Linux tree, if we can.
99 cd $RPM_BUILD_DIR/lustre-%{version}
100 ./configure @ac_configure_args@ %{?configure_flags:configure_flags} \
101 --sysconfdir=%{_sysconfdir} \
102 --mandir=%{_mandir} \
104 make -j $RPM_BUILD_NCPUS -s
107 make install DESTDIR=$RPM_BUILD_ROOT
108 # hack to avoid changing the libsysio code for "make install"
109 rm -f $RPM_BUILD_ROOT%{_libdir}/libsysio.a
110 # Remove ldiskfs module(s) - they are packaged by the ldiskfs .spec.
111 rm -rf $RPM_BUILD_ROOT/lib/modules/%{kversion}/kernel/fs/lustre-ldiskfs
113 # hack to include the llog_test module in lustre-tests
114 llog_base=$RPM_BUILD_DIR/lustre-%{version}/lustre/obdclass/llog_test
115 if [ -e ${llog_base}.ko ]; then
116 cp ${llog_base}.ko $RPM_BUILD_ROOT/lib/modules/%{kversion}/kernel/fs/lustre
117 elif [ -e ${llog_base}.o ]; then
118 cp ${llog_base}.o $RPM_BUILD_ROOT/lib/modules/%{kversion}/kernel/fs/lustre
121 # Create the pristine source directory.
122 cd $RPM_BUILD_DIR/lustre-%{version}
123 mkdir -p $RPM_BUILD_ROOT/usr/src
125 ln -s $RPM_BUILD_ROOT/usr/src lustre-source
126 make distdir distdir=lustre-source/lustre-%{version}
128 cat >lustre.files <<EOF
129 %attr(-, root, root) /sbin/mount.lustre
130 %attr(-, root, root) /usr/sbin/*
131 %attr(-, root, root) /usr/bin/*
133 %attr(-, root, root) /usr/share/lustre/*
135 %attr(-, root, root) %{_libdir}/libptlctl.a
136 %attr(-, root, root) %{_libdir}/liblustreapi.a
137 %attr(-, root, root) /usr/include/lustre
139 %attr(-, root, root) %{_mandir}/man?/*
141 %attr(-, root, root) %{_libdir}/lustre/lc_common
144 if [ -f $RPM_BUILD_ROOT%{_libdir}/liblustre.so ] ; then
145 echo '%attr(-, root, root) %{_libdir}/liblustre.a' >>lustre.files
146 echo '%attr(-, root, root) %{_libdir}/liblustre.so' >>lustre.files
149 if [ -f $RPM_BUILD_DIR/lustre-%{version}/lustre/utils/libiam.c ] ; then
150 echo '%attr(-, root, root) %{_libdir}/libiam.a' >>lustre.files
153 if [ -d $RPM_BUILD_ROOT%{_libdir}/lustre/snmp ] ; then
154 echo '%attr(-, root, root) %{_libdir}/lustre/snmp' >>lustre.files
155 echo '%attr(-, root, root) %{_datadir}/lustre/snmp/mibs' >>lustre.files
158 # Have universal lustre headers
159 if [ -f $RPM_BUILD_DIR/lustre-%{version}/lustre/include/lustre/lustre_idl.h ] ; then
160 echo '%attr(-, root, root) /usr/include/linux/lustre_types.h' >>lustre.files
161 echo '%attr(-, root, root) /usr/include/linux/lustre_user.h' >>lustre.files
163 echo '%attr(-, root, root) /usr/include/linux/lustre_idl.h' >>lustre.files
166 echo '%attr(-, root, root) %{_libdir}/lustre/tests/*' >lustre-tests.files
167 echo '%attr(-, root, root) /lib/modules/%{kversion}/kernel/fs/lustre/llog_test.*' >>lustre-tests.files
168 modules_excludes="llog_test"
169 if [ -d $RPM_BUILD_ROOT%{_libdir}/lustre/liblustre/tests ] ; then
170 echo '%attr(-, root, root) %{_libdir}/lustre/liblustre/tests/*' >>lustre-tests.files
173 pushd $RPM_BUILD_ROOT >/dev/null
174 find lib/modules/%{kversion}/kernel -type f | awk "!/($modules_excludes)/ {print \"/\"\$0}" >>$RPM_BUILD_DIR/lustre-%{version}/lustre-modules.files
177 %files -f lustre.files
179 %files modules -f lustre-modules.files
180 %attr(-, root, root) %doc COPYING
183 %attr(-, root, root) /usr/src/lustre-%{version}
185 # uncomment these lines to enable deps packages
189 %files tests -f lustre-tests.files
192 if [ -f /boot/System.map-%{kversion} ]; then
193 depmod -ae -F /boot/System.map-%{kversion} %{kversion} || exit 0
195 depmod -ae %{kversion} || exit 0
198 # for update from < v1.4.6
200 for f in /etc/modules.conf /etc/modprobe.conf /etc/modprobe.conf.local ;
203 if grep 'lustre llite' $f >/dev/null 2>/dev/null ; then
204 [ ! -f $f.rpmsave ] && cp $f $f.rpmsave
205 TMPFILE=`mktemp $f.XXXXXX` && \
206 rm -f $TMPFILE && touch $TMPFILE && \
207 grep -v 'lustre llite' $f >> $TMPFILE && \
210 if egrep "^[^#]*(add below|install) ptlrpc" $f ; then
211 [ ! -f $f.rpmsave ] && cp $f $f.rpmsave
212 TMPFILE=`mktemp $f.XXXXXX` && \
213 rm -f $TMPFILE && touch $TMPFILE && \
214 sed -e "s/^[^#]*\(add below\|install\) ptlrpc.*/#&/" $f >> $TMPFILE && \
221 if [ -f /boot/System.map-%{kversion} ]; then
222 depmod -ae -F /boot/System.map-%{kversion} %{kversion} || exit 0
224 depmod -ae %{kversion} || exit 0
228 if [ -f /boot/System.map-%{kversion} ]; then
229 depmod -ae -F /boot/System.map-%{kversion} %{kversion} || exit 0
231 depmod -ae %{kversion} || exit 0
235 if [ -f /boot/System.map-%{kversion} ]; then
236 depmod -ae -F /boot/System.map-%{kversion} %{kversion} || exit 0
238 depmod -ae %{kversion} || exit 0
242 rm -rf $RPM_BUILD_ROOT