2007-01-15 10:53:19 +01:00
|
|
|
#
|
2011-03-10 12:48:15 +01:00
|
|
|
# spec file for package drbd
|
2007-01-15 10:53:19 +01:00
|
|
|
#
|
2020-01-03 10:09:09 +01:00
|
|
|
# Copyright (c) 2020 SUSE LLC
|
2007-01-15 10:53:19 +01:00
|
|
|
#
|
2008-08-18 18:28:48 +02:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2019-09-10 09:54:08 +02:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2007-01-15 10:53:19 +01:00
|
|
|
#
|
2015-07-25 07:44:30 +02:00
|
|
|
# needssslcertforbuild
|
|
|
|
|
2017-07-19 09:00:23 +02:00
|
|
|
|
2020-06-10 05:27:13 +02:00
|
|
|
# RT enabled in Leap15.2(but not in Tumbleweed)
|
|
|
|
%if ! 0%{?is_opensuse} || 0%{?sle_version} >= 150200
|
2015-07-25 07:44:30 +02:00
|
|
|
%ifarch x86_64
|
2018-02-11 11:03:24 +01:00
|
|
|
%define buildrt 1
|
2015-07-25 07:44:30 +02:00
|
|
|
%endif
|
2016-12-06 11:22:12 +01:00
|
|
|
%endif
|
2007-01-15 10:53:19 +01:00
|
|
|
Name: drbd
|
2020-09-18 11:29:11 +02:00
|
|
|
Version: 9.0.25~0+git.bd41626d
|
2015-07-25 07:44:30 +02:00
|
|
|
Release: 0
|
2019-09-10 09:54:08 +02:00
|
|
|
Summary: Linux driver for the "Distributed Replicated Block Device"
|
|
|
|
License: GPL-2.0-or-later
|
|
|
|
URL: https://drbd.linbit.com/
|
2016-04-13 14:42:42 +02:00
|
|
|
Source: %{name}-%{version}.tar.bz2
|
2015-07-25 07:44:30 +02:00
|
|
|
Source1: preamble
|
2015-08-19 11:34:13 +02:00
|
|
|
#In kernel is: kernel/drivers/block/drbd/drbd.ko
|
2015-07-25 07:44:30 +02:00
|
|
|
Source2: Module.supported
|
2016-04-13 14:42:42 +02:00
|
|
|
Source3: drbd_git_revision
|
2017-03-29 10:55:06 +02:00
|
|
|
Patch1: fix-resync-finished-with-syncs-have-bits-set.patch
|
2019-09-09 10:04:57 +02:00
|
|
|
Patch2: rely-on-sb-handlers.patch
|
2019-12-16 07:39:41 +01:00
|
|
|
Patch3: drbd-fix-zero-metadata-limit-by-page-size-misaligned.patch
|
2020-08-14 05:04:57 +02:00
|
|
|
Patch4: compat_remove_pgprot_88dca4c.patch
|
|
|
|
Patch5: compat_remove_include_vermagic.patch
|
|
|
|
Patch6: compat_remove_kernel_setsockopt.patch
|
2020-02-25 10:53:38 +01:00
|
|
|
Patch99: suse-coccinelle.patch
|
2019-09-23 08:02:25 +02:00
|
|
|
#https://github.com/openSUSE/rpmlint-checks/blob/master/KMPPolicyCheck.py
|
2020-02-25 10:53:38 +01:00
|
|
|
BuildRequires: coccinelle >= 1.0.8
|
2015-07-25 07:44:30 +02:00
|
|
|
BuildRequires: kernel-source
|
|
|
|
BuildRequires: kernel-syms
|
2017-11-17 04:55:51 +01:00
|
|
|
BuildRequires: libelf-devel
|
2019-09-10 09:54:08 +02:00
|
|
|
BuildRequires: modutils
|
2017-12-28 10:53:16 +01:00
|
|
|
Requires: drbd-utils >= 9.2.0
|
|
|
|
Supplements: drbd-utils >= 9.2.0
|
2015-07-29 03:10:03 +02:00
|
|
|
Obsoletes: drbd-kmp < %{version}
|
2015-07-25 07:44:30 +02:00
|
|
|
ExcludeArch: i586 s390
|
2016-10-26 05:56:30 +02:00
|
|
|
%kernel_module_package -n drbd -p %{_sourcedir}/preamble
|
|
|
|
%if 0%{?buildrt} == 1
|
|
|
|
BuildRequires: kernel-source-rt
|
|
|
|
BuildRequires: kernel-syms-rt
|
|
|
|
%endif
|
2007-01-15 10:53:19 +01:00
|
|
|
|
|
|
|
%description
|
2019-09-10 09:54:08 +02:00
|
|
|
DRBD is a distributed replicated block device. It mirrors a block
|
2015-07-29 03:10:03 +02:00
|
|
|
device over the network to another machine. Think of it as networked
|
|
|
|
raid 1. It is a building block for setting up clusters.
|
|
|
|
|
|
|
|
%package KMP
|
2019-09-09 10:04:57 +02:00
|
|
|
Summary: Kernel driver
|
2019-09-23 08:02:25 +02:00
|
|
|
URL: http://drbd.linbit.com/
|
2015-07-29 03:10:03 +02:00
|
|
|
|
|
|
|
%description KMP
|
2016-10-26 05:56:30 +02:00
|
|
|
This module is the kernel-dependent driver for DRBD. This is split out so
|
2015-07-25 07:44:30 +02:00
|
|
|
that multiple kernel driver versions can be installed, one for each
|
|
|
|
installed kernel.
|
2007-01-15 10:53:19 +01:00
|
|
|
|
|
|
|
%prep
|
2015-07-25 07:44:30 +02:00
|
|
|
%setup -q -n drbd-%{version}
|
2017-03-29 10:55:06 +02:00
|
|
|
%patch1 -p1
|
2018-11-21 09:55:22 +01:00
|
|
|
%patch2 -p1
|
2019-09-23 08:02:25 +02:00
|
|
|
%patch3 -p1
|
2020-08-14 05:04:57 +02:00
|
|
|
%patch4 -p1
|
|
|
|
%patch5 -p1
|
|
|
|
%patch6 -p1
|
2020-02-25 10:53:38 +01:00
|
|
|
%patch99 -p1
|
2016-04-13 14:42:42 +02:00
|
|
|
|
|
|
|
mkdir source
|
|
|
|
cp -a drbd/. source/. || :
|
|
|
|
cp $RPM_SOURCE_DIR/drbd_git_revision source/.drbd_git_revision
|
2007-01-15 10:53:19 +01:00
|
|
|
|
|
|
|
%build
|
2015-07-25 07:44:30 +02:00
|
|
|
rm -rf obj
|
|
|
|
mkdir obj
|
|
|
|
ln -s ../scripts obj/
|
|
|
|
|
2017-07-19 09:00:23 +02:00
|
|
|
export WANT_DRBD_REPRODUCIBLE_BUILD=1
|
2016-04-13 14:42:42 +02:00
|
|
|
export CONFIG_BLK_DEV_DRBD=m
|
|
|
|
export EXTRA_CFLAGS='-DVERSION=\"%{version}\"'
|
2019-10-11 05:26:45 +02:00
|
|
|
# Unset SPAAS or set as 'true' will use `spatch-as-a-service` from drbd.io
|
|
|
|
# when "coccinelle" not installed. Set SPAAS to 'false' to force an ERROR.
|
|
|
|
export SPAAS='false'
|
2016-04-13 14:42:42 +02:00
|
|
|
|
2016-10-26 05:56:30 +02:00
|
|
|
for flavor in %{flavors_to_build}; do
|
2016-04-13 14:42:42 +02:00
|
|
|
rm -rf $flavor
|
2020-03-11 04:00:26 +01:00
|
|
|
cp -a -r source $flavor
|
|
|
|
cp -a %{_sourcedir}/Module.supported $flavor
|
2016-04-13 14:42:42 +02:00
|
|
|
export DRBDSRC="$PWD/obj/$flavor"
|
2020-01-09 07:05:38 +01:00
|
|
|
# bsc#1160194, check the coccicheck work.
|
|
|
|
#make coccicheck
|
2019-10-11 05:26:45 +02:00
|
|
|
make %{?_smp_mflags} -C %{kernel_source $flavor} modules M=$PWD/$flavor SPAAS=${SPAAS}
|
2019-09-09 10:04:57 +02:00
|
|
|
|
2020-01-09 07:05:38 +01:00
|
|
|
# Check the compat result
|
2018-11-21 09:55:22 +01:00
|
|
|
cat $PWD/$flavor/compat.h
|
2015-07-25 07:44:30 +02:00
|
|
|
done
|
2007-01-15 10:53:19 +01:00
|
|
|
|
|
|
|
%install
|
2015-07-25 07:44:30 +02:00
|
|
|
export INSTALL_MOD_PATH=%{buildroot}
|
|
|
|
export INSTALL_MOD_DIR=updates
|
2016-04-13 14:42:42 +02:00
|
|
|
for flavor in %{flavors_to_build}; do
|
|
|
|
make -C %{kernel_source $flavor} modules_install M=$PWD/$flavor
|
2015-07-25 07:44:30 +02:00
|
|
|
done
|
|
|
|
|
2015-09-28 04:50:59 +02:00
|
|
|
mkdir -p %{buildroot}/%{_sbindir}
|
2017-06-22 10:38:38 +02:00
|
|
|
ln -s -f %{_sbindir}/service %{buildroot}/%{_sbindir}/rc%{name}
|
2015-07-25 07:44:30 +02:00
|
|
|
rm -f drbd.conf
|
|
|
|
|
|
|
|
%files
|
2019-09-23 08:02:25 +02:00
|
|
|
%license COPYING
|
2010-04-16 00:07:17 +02:00
|
|
|
%doc ChangeLog
|
2015-09-28 04:50:59 +02:00
|
|
|
%{_sbindir}/rc%{name}
|
2007-01-15 10:53:19 +01:00
|
|
|
|
2007-03-30 02:32:51 +02:00
|
|
|
%changelog
|