5ac0391a2f
* Remove merged patches: + 0001-man-Fix-small-typo-regarding-fcf-option.patch + 0002-Don-t-call-AM_INIT_AUTOMAKE-twice.patch + 0003-fipvlan-fails-on-powerpc.patch + 0004-fipvlan-Only-shutdown-interfaces-if-no-vlans-are-cre.patch + 0005-fipvlan-start-VLAN-interface-from-netlink-handler.patch + 0006-fipvlan-Extract-create_missing_vlan-function-from-lo.patch + 0007-fipvlan-create-VLANs-from-netlink-handler.patch + 0008-fipvlan-Start-FCoE-from-netlink-handler.patch + 0009-fipvlan-Update-wait-loop-to-wait-for-VLANs.patch + 0010-fipvlan-Re-send-VLAN-discovery.patch + 0011-fipvlan-update-manpage.patch + 0012-fipvlan-Leave-link-up-if-requested.patch + 0013-fipvlan-Update-manpage-to-reflect-correct-timeout.patch + 0014-fipvlan-Do-not-shut-down-FCoE-connections-on-physica.patch + 0015-fipvlan-break-out-of-receive-loop-on-error.patch + 0016-fipvlan-handle-errors-from-fip-socket-creation.patch + 0017-fipvlan-filter-interfaces-from-rtnl_getlink.patch + 0018-Add-missing-DESTDIR-when-installing-bash-completion.patch + 0019-Fix-build-with-Wl-as-needed.patch + 0020-Fix-integer-formatting.patch + 0021-fcnsq-Fixup-help-text.patch + 0022-fcnsq-Fixup-64bit-integer-handling.patch + 0023-fcoemon-add-systemd-service-file.patch + 0024-fcoemon-systemd-socket-activation.patch + 0025-doc-Update-QUICKSTART-INSTALL-docs-for-systemd-init-.patch + 0026-FIPVLAN-Really-break-out-of-the-recv_loop-upon-fip_r.patch + 0027-man-Fix-typo-in-fcoemon-documentation.patch + 0032-fipvlan-Fix-crash-in-create_and_start_vlan.patch OBS-URL: https://build.opensuse.org/package/show/network:fcoe/fcoe-utils?expand=0&rev=22
125 lines
3.2 KiB
RPMSpec
125 lines
3.2 KiB
RPMSpec
#
|
|
# spec file for package fcoe-utils
|
|
#
|
|
# Copyright (c) 2015 SUSE LINUX Products 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/
|
|
#
|
|
|
|
|
|
Name: fcoe-utils
|
|
Url: http://www.open-fcoe.org
|
|
BuildRequires: autoconf
|
|
BuildRequires: automake
|
|
BuildRequires: libHBAAPI2-devel >= 2.2.10
|
|
BuildRequires: libhbalinux2-devel >= 1.0.17
|
|
BuildRequires: libtool
|
|
BuildRequires: open-lldp-devel
|
|
BuildRequires: systemd-devel
|
|
Requires: device-mapper
|
|
Requires: iproute
|
|
Requires: libhbalinux2
|
|
Requires: open-lldp
|
|
%systemd_requires
|
|
Version: 1.0.30
|
|
Release: 0
|
|
Summary: FCoE userspace management tools
|
|
License: GPL-2.0
|
|
Group: System/Daemons
|
|
# git://open-fcoe.org/fcoe/fcoe-utils.git
|
|
Source0: %{name}-%{version}.tar.xz
|
|
# Patches from git repository
|
|
Patch1: 0001-fcoemon-Rework-daemonizing-and-error-handling.patch
|
|
Patch2: 0002-fcoemon-fix-IEEE-state-machine.patch
|
|
|
|
# Patches to be upstreamed
|
|
Patch3: 0003-systemctl-cannot-start-fcoemon.socket.patch
|
|
Patch4: 0004-fcoemon-Correctly-handle-options-in-the-service-file.patch
|
|
Patch5: 0005-fcoe.service-Add-foreground-to-prevent-fcoemon-to-be.patch
|
|
Patch6: 0006-fipvlan-fixup-return-value-on-error.patch
|
|
Patch7: 0007-fipvlan-clean-up-state-machine-for-pfd_add.patch
|
|
Patch8: 0008-Use-correct-socket-for-fcoemon.socket.patch
|
|
|
|
# Patches from Fedora
|
|
Patch101: fcoe-utils-1.0.29-make.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
Userspace tools to manage FibreChannel over Ethernet (FCoE)
|
|
connections.
|
|
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch1 -p1
|
|
%patch2 -p1
|
|
%patch3 -p1
|
|
%patch4 -p1
|
|
%patch5 -p1
|
|
%patch6 -p1
|
|
%patch7 -p1
|
|
%patch8 -p1
|
|
%patch101 -p1
|
|
|
|
%build
|
|
autoreconf -vi
|
|
%configure
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
%make_install
|
|
# old init script
|
|
rm -rf %{buildroot}/etc/init.d
|
|
|
|
# unitfile
|
|
ln -s %{_sbindir}/service %{buildroot}%{_sbindir}/rcfcoe
|
|
|
|
# contrib files
|
|
mkdir -p %{buildroot}%{_libexecdir}/fcoe
|
|
for file in \
|
|
contrib/*.sh \
|
|
debug/*sh
|
|
do install -m 755 ${file} %{buildroot}%{_libexecdir}/fcoe/
|
|
done
|
|
|
|
%pre
|
|
%service_add_pre fcoe.service
|
|
exit 0
|
|
|
|
%post
|
|
%service_add_post fcoe.service
|
|
%fillup_only -n fcoe
|
|
exit 0
|
|
|
|
%preun
|
|
%service_del_preun fcoe.service
|
|
exit 0
|
|
|
|
%postun
|
|
%service_del_preun fcoe.service
|
|
exit 0
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc README COPYING QUICKSTART
|
|
%{_sbindir}/*
|
|
%{_mandir}/man8/*
|
|
%{_unitdir}/fcoe.service
|
|
%{_unitdir}/fcoemon.socket
|
|
%{_sysconfdir}/fcoe/
|
|
%config(noreplace) %{_sysconfdir}/fcoe/config
|
|
%config(noreplace) %{_sysconfdir}/fcoe/cfg-ethx
|
|
%config %{_sysconfdir}/bash_completion.d/
|
|
%{_libexecdir}/fcoe/
|
|
|
|
%changelog
|