Whamcloud - gitweb
~grumble~ Shared build modules.
[fs/lustre-release.git] / build / lustre.spec.in
1 # lustre.spec
2 %define version @VERSION@
3 %define kversion @LINUXRELEASE@
4
5 Summary: Lustre File System
6 Name: lustre
7 Version: %{version}
8 Release: @RELEASE@
9 License: GPL
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
17
18 %description
19 Userspace tools and files for the Lustre file system.
20
21 %package modules
22 Summary: Kernel Lustre modules for Linux %{kversion}
23 Requires: modutils >= 2.4.10
24 Group: Development/Kernel
25
26 %description modules
27 Lustre file system, server and network drivers for Linux %{kversion}.
28
29 %package source
30 Summary: Object-Based Disk storage driver source
31 Group: Development/Kernel
32
33 %description source
34 Lustre sources for further development
35
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).
39 #
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.
44 #
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
48 # add.
49
50 %package deps-sles
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
56
57 %description deps-sles
58 This package has RPM dependencies appropriate for SLES systems.
59
60 %package deps-rhel
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
66
67 %description deps-rhel
68 This package has RPM dependencies appropriate for RHEL, RHL, and FC
69 systems.
70
71 %prep
72 %setup -qn lustre-%{version}
73
74 %build
75 # if RPM_BUILD_NCPUS unset, set it
76 if [ -z "$RPM_BUILD_NCPUS" ] ; then
77     RPM_BUILD_NCPUS=$(egrep -c "^cpu[0-9]+" /proc/stat 2>/dev/null || echo 0 :)
78     if [ $RPM_BUILD_NCPUS -eq 0 ] ; then
79         RPM_BUILD_NCPUS=1
80     fi
81     if [ $RPM_BUILD_NCPUS -gt 8 ] ; then
82         RPM_BUILD_NCPUS=8
83     fi
84 fi
85
86 rm -rf $RPM_BUILD_ROOT
87
88 # Set an explicit path to our Linux tree, if we can.
89 cd $RPM_BUILD_DIR/lustre-%{version}
90 ./configure @ac_configure_args@ %{?configure_flags:configure_flags} \
91         --sysconfdir=%{_sysconfdir} \
92         --mandir=%{_mandir} \
93         --libdir=%{_libdir}
94 make -j $RPM_BUILD_NCPUS -s
95
96 %install
97 make install DESTDIR=$RPM_BUILD_ROOT
98 # hack to avoid changing the libsysio code for "make install"
99 rm -f $RPM_BUILD_ROOT%{_libdir}/libsysio.a
100
101 # Create the pristine source directory.
102 cd $RPM_BUILD_DIR/lustre-%{version}
103 mkdir -p $RPM_BUILD_ROOT/usr/src
104 rm -f lustre-source
105 ln -s $RPM_BUILD_ROOT/usr/src lustre-source
106 make distdir distdir=lustre-source/lustre-%{version}
107
108 cat >lustre.files <<EOF
109 %attr(-, root, root) /sbin/mount.lustre
110 %attr(-, root, root) /usr/sbin/*
111 %attr(-, root, root) /usr/bin/*
112
113 %attr(-, root, root) /usr/share/lustre/*
114
115 %attr(-, root, root) %{_libdir}/libptlctl.a
116 %attr(-, root, root) %{_libdir}/liblustreapi.a
117 %attr(-, root, root) /usr/include/lustre
118
119 %attr(-, root, root) %{_mandir}/man?/*
120
121 %attr(-, root, root) %{_libdir}/lustre/lc_common.sh
122 EOF
123
124 if [ -f $RPM_BUILD_ROOT%{_libdir}/liblustre.so ] ; then
125   echo '%attr(-, root, root) %{_libdir}/liblustre.a' >>lustre.files
126   echo '%attr(-, root, root) %{_libdir}/liblustre.so' >>lustre.files
127 fi
128
129 if [ -f $RPM_BUILD_DIR/lustre-%{version}/lustre/utils/libiam.c ] ; then
130   echo '%attr(-, root, root) %{_libdir}/libiam.a' >>lustre.files
131 fi
132
133 if [ -d $RPM_BUILD_ROOT%{_libdir}/lustre/snmp ] ; then
134   echo '%attr(-, root, root) %{_libdir}/lustre/snmp' >>lustre.files
135   echo '%attr(-, root, root) %{_datadir}/lustre/snmp/mibs' >>lustre.files
136 fi
137
138 # Have universal lustre headers 
139 if [ -f $RPM_BUILD_DIR/lustre-%{version}/lustre/include/lustre/lustre_idl.h ] ; then
140   echo '%attr(-, root, root) /usr/include/lustre/lustre_idl.h' >>lustre.files
141   echo '%attr(-, root, root) /usr/include/linux/lustre_types.h' >>lustre.files
142   echo '%attr(-, root, root) /usr/include/linux/lustre_user.h' >>lustre.files
143 else
144   echo '%attr(-, root, root) /usr/include/linux/lustre_idl.h' >>lustre.files
145 fi
146
147 %files -f lustre.files
148
149 %files modules
150 %attr(-, root, root) %doc COPYING
151 %attr(-, root, root) /lib/modules/%{kversion}/kernel/fs/lustre
152 %attr(-, root, root) /lib/modules/%{kversion}/kernel/net/lustre
153
154 %files source
155 %attr(-, root, root) /usr/src/lustre-%{version}
156
157 # uncomment these lines to enable deps packages
158 # %files deps-sles
159 # %files deps-rhel
160
161 %post modules
162 if [ -f /boot/System.map-%{kversion} ]; then
163         depmod -ae -F /boot/System.map-%{kversion} %{kversion} || exit 0
164 else
165         depmod -ae %{kversion} || exit 0
166 fi
167
168 # for update from < v1.4.6
169
170 for f in /etc/modules.conf /etc/modprobe.conf /etc/modprobe.conf.local ; 
171 do
172         if [ -f $f ]; then
173                 if grep 'lustre llite' $f >/dev/null 2>/dev/null ; then
174                         [ ! -f $f.rpmsave ] && cp $f $f.rpmsave
175                         TMPFILE=`mktemp $f.XXXXXX` && \
176                         rm -f $TMPFILE && touch $TMPFILE && \
177                         grep -v 'lustre llite' $f >> $TMPFILE && \
178                         mv $TMPFILE $f
179                 fi
180                 if egrep "^[^#]*(add below|install) ptlrpc" $f ; then
181                         [ ! -f $f.rpmsave ] && cp $f $f.rpmsave
182                         TMPFILE=`mktemp $f.XXXXXX` && \
183                         rm -f $TMPFILE && touch $TMPFILE && \
184                         sed -e "s/^[^#]*\(add below\|install\) ptlrpc.*/#&/" $f >> $TMPFILE && \
185                         mv $TMPFILE $f
186                 fi
187         fi
188 done
189
190
191 %postun modules
192 if [ -f /boot/System.map-%{kversion} ]; then
193         depmod -ae -F /boot/System.map-%{kversion} %{kversion} || exit 0
194 else
195         depmod -ae %{kversion} || exit 0
196 fi
197
198 %clean
199 rm -rf $RPM_BUILD_ROOT