98b3c974fa
bsc#1076936, enable reproducible builds support OBS-URL: https://build.opensuse.org/request/show/568021 OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/drbd-utils?expand=0&rev=54
179 lines
4.9 KiB
RPMSpec
179 lines
4.9 KiB
RPMSpec
#
|
|
# spec file for package drbd-utils
|
|
#
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%bcond_without drbdmon
|
|
|
|
Name: drbd-utils
|
|
Version: 9.2.0
|
|
Release: 0
|
|
Summary: Distributed Replicated Block Device
|
|
License: GPL-2.0+
|
|
Group: Productivity/Clustering/HA
|
|
Url: http://www.drbd.org/
|
|
Source: http://www.drbd.org/download/drbd/utils/%{name}-%{version}.tar.gz
|
|
|
|
# PATCH-MISSING-TAG -- See http://wiki.opensuse.org/openSUSE:Packaging_Patches_guidelines
|
|
Patch1: init-script-fixes.diff
|
|
Patch2: fix-libdir-in-Makefile.patch
|
|
Patch3: fence-after-pacemaker-down.patch
|
|
Patch4: fix-segfault-up-stacked-resource.patch
|
|
# PATCH-SUSE-FIX: Disable quorum in default configuration (bsc#1032142)
|
|
Patch5: 0001-Disable-quorum-in-default-configuration-bsc-1032142.patch
|
|
Patch6: fix_call_khelper_with_stack.patch
|
|
Patch7: move_fencing_from_disk_to_net_in_example.patch
|
|
Patch8: skip_sh-b-pri_in_v9.patch
|
|
|
|
Provides: drbd-bash-completion = %{version}
|
|
Provides: drbd-pacemaker = %{version}
|
|
Provides: drbd-udev = %{version}
|
|
Obsoletes: drbd-bash-completion < %{version}
|
|
Obsoletes: drbd-pacemaker < %{version}
|
|
Obsoletes: drbd-udev < %{version}
|
|
# drbd-utils first splict from drbd-8.4.5(only driver)
|
|
# and suse let drbd driver goes in-kernel
|
|
# Provides: drbd = 8.4.5
|
|
# Obsoletes: drbd < 8.4.5
|
|
|
|
%ifarch %ix86 x86_64
|
|
Provides: drbd-xen = %{version}
|
|
Obsoletes: drbd-xen < %{version}
|
|
%endif
|
|
BuildRequires: autoconf
|
|
BuildRequires: automake
|
|
BuildRequires: bison
|
|
BuildRequires: docbook-xsl-stylesheets
|
|
BuildRequires: flex
|
|
BuildRequires: gcc
|
|
BuildRequires: glibc-devel
|
|
BuildRequires: libxslt
|
|
BuildRequires: make
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: systemd
|
|
BuildRequires: udev
|
|
%if %{with drbdmon}
|
|
BuildRequires: gcc-c++
|
|
%endif
|
|
Provides: drbd-control
|
|
Provides: drbdsetup
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
Drbd is a distributed replicated block device. It mirrors a block
|
|
device over the network to another machine. Think of it as networked
|
|
raid 1. It is a building block for setting up clusters.
|
|
|
|
%prep
|
|
%setup -q -n %{name}-%{version}
|
|
%patch1 -p1
|
|
%patch2 -p1
|
|
%patch3 -p1
|
|
%patch4 -p1
|
|
%patch5 -p1
|
|
%patch6 -p1
|
|
%patch7 -p1
|
|
%patch8 -p1
|
|
|
|
%build
|
|
export WANT_DRBD_REPRODUCIBLE_BUILD=1
|
|
./autogen.sh
|
|
PATH=/sbin:$PATH ./configure \
|
|
--with-udev \
|
|
--with-distro=suse \
|
|
--without-heartbeat \
|
|
--with-pacemaker \
|
|
--with-xen \
|
|
--with-bashcompletion \
|
|
--with-initscripttype=systemd \
|
|
--with-systemdunitdir=%{_prefix}/lib/systemd/system \
|
|
--prefix=/ \
|
|
--sbindir=/sbin \
|
|
--libdir=%{_prefix}/lib \
|
|
--mandir=%{_mandir} \
|
|
--sysconfdir=%{_sysconfdir} \
|
|
--datarootdir=%{_datadir} \
|
|
--datadir=%{_datadir} \
|
|
--libdir=%{_prefix}/lib \
|
|
--exec_prefix=%{_prefix}/lib \
|
|
%{?with_drbdmon: --with-drbdmon} \
|
|
--with-tmpfilesdir=%{_tmpfilesdir}
|
|
|
|
make OPTFLAGS="%{optflags}" %{?_smp_mflags}
|
|
|
|
%install
|
|
%make_install
|
|
|
|
mkdir -p %{buildroot}%{_localstatedir}/lib/drbd
|
|
%ifnarch %ix86 x86_64
|
|
rm -rf %{buildroot}%{_sysconfdir}/xen
|
|
%endif
|
|
|
|
%pre
|
|
%service_add_pre drbd.service
|
|
|
|
%post
|
|
%service_add_post drbd.service
|
|
|
|
%preun
|
|
%service_del_preun drbd.service
|
|
|
|
%postun
|
|
%service_del_postun drbd.service
|
|
|
|
%files -n drbd-utils
|
|
%defattr(-, root, root)
|
|
%config(noreplace) %{_sysconfdir}/drbd.conf
|
|
%config %{_sysconfdir}/bash_completion.d/drbdadm.sh
|
|
%config(noreplace) %{_sysconfdir}/drbd.d/global_common.conf
|
|
%{_tmpfilesdir}/drbd.conf
|
|
%doc %{_mandir}/man5/drbd.*
|
|
%doc %{_mandir}/man8/drbd*
|
|
%doc %{_mandir}/ja/man5/drbd.*
|
|
%doc %{_mandir}/ja/man8/drbd*
|
|
%doc COPYING
|
|
%doc README.md
|
|
%doc ChangeLog
|
|
%doc scripts/drbd.conf.example
|
|
%dir %{_sysconfdir}/drbd.d
|
|
/sbin/drbdadm
|
|
/sbin/drbdsetup
|
|
/sbin/drbdmeta
|
|
/sbin/drbd-overview
|
|
%if %{with drbdmon}
|
|
/sbin/drbdmon
|
|
%endif
|
|
%ifarch %ix86 x86_64
|
|
%dir %attr(700,root,root) %{_sysconfdir}/xen
|
|
%dir %{_sysconfdir}/xen/scripts
|
|
%{_sysconfdir}/xen/scripts/block-drbd
|
|
%endif
|
|
%{_prefix}/lib/ocf/resource.d/linbit/drbd
|
|
%{_prefix}/lib/ocf/resource.d/linbit/drbd.shellfuncs.sh
|
|
%{_udevrulesdir}/65-drbd.rules
|
|
%{_unitdir}/drbd.service
|
|
%{_prefix}/lib/systemd/system/drbd.service
|
|
%defattr(-, root, root)
|
|
%{_localstatedir}/lib/drbd
|
|
%{_prefix}/lib/drbd
|
|
/lib/drbd
|
|
/lib/drbd/drbd*
|
|
%dir %{_prefix}/lib/ocf
|
|
%dir %{_prefix}/lib/ocf/resource.d
|
|
%dir %{_prefix}/lib/ocf/resource.d/linbit
|
|
|
|
%changelog
|