5 # LUTF Turn off brp-python-precompile script as we don't want the python files
6 # to be compiled on installation
7 %global __os_install_post %(echo '%{__os_install_post}' | sed -e 's!/usr/lib[^[:space:]]*/brp-python-bytecompile[[:space:]].*$!!g')
9 # Set the package name prefix
13 %define module @PACKAGE@-all
15 %define module @PACKAGE@-zfs
18 %if %{without ldiskfs}
19 %define module @PACKAGE@-BADSTATE
21 %define module @PACKAGE@-ldiskfs
24 %define lustre_name @PACKAGE@
27 %define module @PACKAGE@-client
28 %define lustre_name @PACKAGE@-client
31 %if %{_vendor}=="redhat" || %{_vendor}=="fedora"
32 %global kmod_name kmod-%{lustre_name}
33 %define mkconf_options %{nil}
34 %else #for Suse / Ubuntu
35 %global kmod_name %{lustre_name}-kmp
36 %define mkconf_options "-k updates"
40 %define mkconf lustre/scripts/dkms.mkconf
42 # There should be a better (non-arch dependent) way to require ext4
44 %define ext4_source_rpm kernel-debuginfo-common-x86_64
49 Release: %{buildid}%{?dist}
50 Summary: Kernel module(s) (dkms)
52 Group: System Environment/Kernel
54 URL: http://lustre.opensfs.org/
55 Source0: @PACKAGE@-%{version}.tar.gz
56 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
59 # DKMS >= 2.2.0.3-28.git.7c3e7c5 to fully support inter-modules deps
60 # (ie, "BUILD_DEPENDS[#]=<pkg>"), and have latest DKMS fixes integrated
61 # for bugs that prevented our module to build/install.
62 Requires: dkms >= 2.2.0.3-28.git.7c3e7c5
64 Requires: libyaml-devel
67 Requires: libnl3-devel
69 # If client package is installed when installing server, remove it since
70 # the server package also includes the client. This can be removed if/when
71 # the packages are split into independent client/server/common packages.
72 Obsoletes: @PACKAGE@-client < %{version}
74 Requires: zfs-dkms >= 0.6.5
75 Requires: @PACKAGE@-osd-zfs-mount
76 Conflicts: @PACKAGE@-ldiskfs-dkms
77 Conflicts: @PACKAGE@-client-dkms
78 # lustre-zfs-dkms replicates the functionality old lustre-dkms package
79 Provides: @PACKAGE@-dkms
80 Obsoletes: @PACKAGE@-dkms
84 Requires: %{ext4_source_rpm}
85 Requires: @PACKAGE@-osd-ldiskfs-mount
86 Conflicts: @PACKAGE@-zfs-dkms
87 Conflicts: @PACKAGE@-client-dkms
88 %if "%{module}" != "@PACKAGE@-all"
89 Conflicts: @PACKAGE@-dkms
92 %if "%{module}" != "@PACKAGE@-all"
93 Conflicts: @PACKAGE@-all-dkms
96 Requires: gcc, make, perl
97 Requires: kernel-devel
98 Provides: %{kmod_name} = %{version}
99 Provides: @PACKAGE@-modules = %{version}
102 Provides: @PACKAGE@-osd-zfs = %{version}
105 Provides: @PACKAGE@-osd-ldiskfs = %{version}
107 Provides: @PACKAGE@-osd
109 Provides: @PACKAGE@-client
113 This package contains the dkms Lustre kernel modules.
116 The required %{ext4_source_rpm} package is available from
117 the repository with other debuginfo rpms.
121 %setup -q -n @PACKAGE@-%{version}
124 %{mkconf} -n %{module} -v %{version} -f dkms.conf %{mkconf_options}
127 if [ "$RPM_BUILD_ROOT" != "/" ]; then
128 rm -rf $RPM_BUILD_ROOT
130 mkdir -p $RPM_BUILD_ROOT/usr/src/
131 cp -rfp ${RPM_BUILD_DIR}/@PACKAGE@-%{version} $RPM_BUILD_ROOT/usr/src/
132 mv $RPM_BUILD_ROOT/usr/src/@PACKAGE@-%{version} $RPM_BUILD_ROOT/usr/src/%{module}-%{version}
135 if [ "$RPM_BUILD_ROOT" != "/" ]; then
136 rm -rf $RPM_BUILD_ROOT
140 %defattr(-,root,root)
141 /usr/src/%{module}-%{version}
144 for POSTINST in /usr/lib/dkms/common.postinst; do
145 if [ -f $POSTINST ]; then
146 $POSTINST %{module} %{version}
149 echo "WARNING: $POSTINST does not exist."
151 echo -e "ERROR: DKMS version is too old and %{module} was not"
152 echo -e "built with legacy DKMS support."
153 echo -e "You must either rebuild %{module} with legacy postinst"
154 echo -e "support or upgrade DKMS to a more current version."
158 dkms remove -m %{module} -v %{version} --all --rpm_safe_upgrade
162 * Wed May 16 2018 Joe Grund <joe.grund@intel.com>
163 - Add patch requirement
164 * Mon Aug 1 2016 Nathaniel Clark <nathaniel.l.clark@intel.com>
165 - Add option to build either ldiskfs or zfs flavour of server version
166 * Sat Jan 23 2016 Bruno Faccini <bruno.faccini@intel.com>
167 - detect and handle cases where [spl,zfs]-dkms packages are not built
168 - also handle on-target configure issues
169 * Wed Oct 7 2015 Bruno Faccini <bruno.faccini@intel.com>
170 - adapted for Lustre Client DKMS creation
171 - allow for on-target reconfig to prevent static deps requires
172 * Mon Apr 8 2013 Brian Behlendorf <behlendorf1@llnl.gov> - 2.3.63-1
173 - First DKMS packages.