103 lines
2.9 KiB
RPMSpec
103 lines
2.9 KiB
RPMSpec
|
%{?!packager: %define packager Brian Behlendorf <behlendorf1@llnl.gov>}
|
||
|
|
||
|
%if ! 0%{?rhel}%{?fedora}%{?mageia}%{?suse_version}
|
||
|
%define not_rpm 1
|
||
|
%endif
|
||
|
|
||
|
# See comment in zfs.spec.in.
|
||
|
%global __brp_mangle_shebangs_exclude_from arc_summary.py|arcstat.py|dbufstat.py|test-runner.py|zts-report.py
|
||
|
|
||
|
%define module zfs
|
||
|
%define mkconf scripts/dkms.mkconf
|
||
|
|
||
|
Name: %{module}-dkms
|
||
|
|
||
|
Version: 0.8.0
|
||
|
Release: 1%{?dist}
|
||
|
Summary: Kernel module(s) (dkms)
|
||
|
|
||
|
Group: System Environment/Kernel
|
||
|
License: CDDL
|
||
|
URL: http://zfsonlinux.org/
|
||
|
Source0: %{module}-%{version}.tar.gz
|
||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||
|
BuildArch: noarch
|
||
|
|
||
|
Requires: dkms >= 2.2.0.3
|
||
|
Requires: gcc, make, perl, diffutils
|
||
|
%if 0%{?rhel}%{?fedora}%{?mageia}%{?suse_version}
|
||
|
Requires: kernel-devel
|
||
|
Obsoletes: spl-dkms
|
||
|
%endif
|
||
|
Provides: %{module}-kmod = %{version}
|
||
|
AutoReqProv: no
|
||
|
|
||
|
%description
|
||
|
This package contains the dkms ZFS kernel modules.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n %{module}-%{version}
|
||
|
|
||
|
%build
|
||
|
%{mkconf} -n %{module} -v %{version} -f dkms.conf
|
||
|
|
||
|
%install
|
||
|
if [ "$RPM_BUILD_ROOT" != "/" ]; then
|
||
|
rm -rf $RPM_BUILD_ROOT
|
||
|
fi
|
||
|
mkdir -p $RPM_BUILD_ROOT/usr/src/
|
||
|
cp -rf ${RPM_BUILD_DIR}/%{module}-%{version} $RPM_BUILD_ROOT/usr/src/
|
||
|
|
||
|
%clean
|
||
|
if [ "$RPM_BUILD_ROOT" != "/" ]; then
|
||
|
rm -rf $RPM_BUILD_ROOT
|
||
|
fi
|
||
|
|
||
|
%files
|
||
|
%defattr(-,root,root)
|
||
|
/usr/src/%{module}-%{version}
|
||
|
|
||
|
%post
|
||
|
for POSTINST in /usr/lib/dkms/common.postinst; do
|
||
|
if [ -f $POSTINST ]; then
|
||
|
$POSTINST %{module} %{version}
|
||
|
exit $?
|
||
|
fi
|
||
|
echo "WARNING: $POSTINST does not exist."
|
||
|
done
|
||
|
echo -e "ERROR: DKMS version is too old and %{module} was not"
|
||
|
echo -e "built with legacy DKMS support."
|
||
|
echo -e "You must either rebuild %{module} with legacy postinst"
|
||
|
echo -e "support or upgrade DKMS to a more current version."
|
||
|
exit 1
|
||
|
|
||
|
%preun
|
||
|
# Are we doing an upgrade?
|
||
|
if [ $1 -ne 0 ] ; then
|
||
|
# Yes we are. Are we upgrading to a new ZFS version?
|
||
|
NEWEST_VER=$(dkms status zfs | sed 's/,//g' | sort -r -V | awk '/installed/{print $2; exit}')
|
||
|
if [ "$NEWEST_VER" != "%{version}" ] ; then
|
||
|
# Yes, it's a new ZFS version. We'll uninstall the old module
|
||
|
# later on in this script.
|
||
|
true
|
||
|
else
|
||
|
# No, it's probably an upgrade of the same ZFS version
|
||
|
# to a new distro (zfs-dkms-0.7.12.fc28->zfs-dkms-0.7.12.fc29).
|
||
|
# Don't remove our modules, since the rebuild for the new
|
||
|
# distro will automatically delete the old modules.
|
||
|
exit 0
|
||
|
fi
|
||
|
fi
|
||
|
|
||
|
# If we're here then we're doing an uninstall (not upgrade).
|
||
|
CONFIG_H="/var/lib/dkms/%{module}/%{version}/*/*/%{module}_config.h"
|
||
|
SPEC_META_ALIAS="zfs-0.8.0-1"
|
||
|
DKMS_META_ALIAS=`cat $CONFIG_H 2>/dev/null |
|
||
|
awk -F'"' '/META_ALIAS/ { print $2; exit 0 }'`
|
||
|
if [ "$SPEC_META_ALIAS" = "$DKMS_META_ALIAS" ]; then
|
||
|
echo -e
|
||
|
echo -e "Uninstall of %{module} module ($SPEC_META_ALIAS) beginning:"
|
||
|
dkms remove -m %{module} -v %{version} --all %{!?not_rpm:--rpm_safe_upgrade}
|
||
|
fi
|
||
|
exit 0
|