243 lines
8.6 KiB
RPMSpec
243 lines
8.6 KiB
RPMSpec
# https://fedoraproject.org/wiki/Packaging:Guidelines#Compiler_flags
|
|
%define _hardened_build 1
|
|
|
|
Name: fcoe-utils
|
|
Version: 1.0.23
|
|
Release: 1%{?dist}
|
|
Summary: Fibre Channel over Ethernet utilities
|
|
Group: Applications/System
|
|
License: GPLv2
|
|
URL: http://www.open-fcoe.org
|
|
# git://open-fcoe.org/fcoe/fcoe-utils.git
|
|
Source0: %{name}-%{version}.tar.bz2
|
|
Source1: quickstart.txt
|
|
Source2: fcoe.service
|
|
Source3: fcoe.config
|
|
ExcludeArch: ppc s390 s390x
|
|
# Generic Fedora patches
|
|
Patch1: fcoe-utils-1.0.19-make.patch
|
|
Patch2: fcoe-utils-1.0.18-help.patch
|
|
Patch3: fcoe-utils-1.0.18-config.patch
|
|
BuildRequires: libtool automake autoconf
|
|
BuildRequires: lldpad-devel >= 0.9.43
|
|
BuildRequires: libhbaapi-devel >= 2.2-12
|
|
BuildRequires: libhbalinux-devel >= 1.0.13
|
|
BuildRequires: libnl-devel
|
|
BuildRequires: systemd-units
|
|
Requires: lldpad >= 0.9.43
|
|
Requires: libhbalinux >= 1.0.13
|
|
Requires: iproute
|
|
Requires: device-mapper-multipath
|
|
Requires(post): systemd-units
|
|
Requires(preun): systemd-units
|
|
Requires(postun): systemd-units
|
|
|
|
%description
|
|
Fibre Channel over Ethernet utilities
|
|
fcoeadm - command line tool for configuring FCoE interfaces
|
|
fcoemon - service to configure DCB Ethernet QOS filters, works with lldpad
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch1 -p1 -b .make
|
|
%patch2 -p1 -b .help
|
|
%patch3 -p1 -b .config
|
|
|
|
%build
|
|
./bootstrap.sh
|
|
%configure
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make install DESTDIR=%{buildroot}
|
|
rm -rf %{buildroot}/etc/init.d
|
|
install -m 644 %{SOURCE1} quickstart.txt
|
|
mkdir -p %{buildroot}%{_sysconfdir}/sysconfig %{buildroot}%{_unitdir}
|
|
install -m 644 %{SOURCE2} %{buildroot}%{_unitdir}
|
|
install -m 644 %{SOURCE3} %{buildroot}%{_sysconfdir}/sysconfig/fcoe
|
|
mkdir -p %{buildroot}%{_libexecdir}/fcoe
|
|
install -m 755 contrib/fcc.sh %{buildroot}%{_libexecdir}/fcoe/fcc.sh
|
|
install -m 755 contrib/fcoe_edd.sh %{buildroot}%{_libexecdir}/fcoe/fcoe_edd.sh
|
|
install -m 755 contrib/fcoe-setup.sh %{buildroot}%{_libexecdir}/fcoe/fcoe-setup.sh
|
|
install -m 755 debug/fcoedump.sh %{buildroot}%{_libexecdir}/fcoe/fcoedump.sh
|
|
install -m 755 debug/dcbcheck.sh %{buildroot}%{_libexecdir}/fcoe/dcbcheck.sh
|
|
|
|
%post
|
|
if [ $1 -eq 1 ]; then
|
|
systemctl daemon-reload >/dev/null 2>&1 || :
|
|
fi
|
|
|
|
%preun
|
|
if [ $1 -eq 0 ]; then
|
|
systemctl --no-reload disable fcoe.service >/dev/null 2>&1 || :
|
|
systemctl stop fcoe.service >/dev/null 2>&1 || :
|
|
fi
|
|
|
|
%postun
|
|
if [ $1 -ge 1 ]; then
|
|
systemctl try-restart %{name}.service >/dev/null 2>&1 || :
|
|
fi
|
|
|
|
%files
|
|
%doc README COPYING quickstart.txt
|
|
%{_sbindir}/*
|
|
%{_mandir}/man8/*
|
|
%{_unitdir}/fcoe.service
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/fcoe
|
|
%dir %{_sysconfdir}/fcoe/
|
|
%config(noreplace) %{_sysconfdir}/fcoe/cfg-ethx
|
|
%dir %{_sysconfdir}/bash_completion.d/
|
|
%{_sysconfdir}/bash_completion.d/*
|
|
%attr(0755,root,root) %{_libexecdir}/fcoe/fcoe_edd.sh
|
|
%attr(0755,root,root) %{_libexecdir}/fcoe/fcoe-setup.sh
|
|
%attr(0755,root,root) %{_libexecdir}/fcoe/fcc.sh
|
|
%attr(0755,root,root) %{_libexecdir}/fcoe/fcoedump.sh
|
|
%attr(0755,root,root) %{_libexecdir}/fcoe/dcbcheck.sh
|
|
|
|
|
|
%changelog
|
|
* Mon Jun 25 2012 Petr Šabata <contyk@redhat.com> - 1.0.23-1
|
|
- Update to 1.0.23
|
|
- Re-introduce ExcludeArch to be in line with EL.
|
|
|
|
* Thu Feb 16 2012 Petr Šabata <contyk@redhat.com> - 1.0.22-2
|
|
- Fix the incorrect libhbalinux runtime dependency
|
|
|
|
* Mon Jan 23 2012 Petr Šabata <contyk@redhat.com> - 1.0.22-1
|
|
- 1.0.22 bump
|
|
- Remove dcbd from Description
|
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.21-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
* Thu Nov 24 2011 Petr Šabata <contyk@redhat.com> - 1.0.21-1
|
|
- 1.0.21 bump
|
|
|
|
* Mon Oct 31 2011 Petr Sabata <contyk@redhat.com> - 1.0.20-5
|
|
- Remove useless PIDFile from fcoe.service unit file
|
|
|
|
* Thu Oct 06 2011 Petr Sabata <contyk@redhat.com> - 1.0.20-4
|
|
- Do not enable fcoemon by default (#701999)
|
|
- Silence systemctl output
|
|
|
|
* Fri Sep 23 2011 Petr Sabata <contyk@redhat.com> - 1.0.20-3
|
|
- Enable hardened build
|
|
|
|
* Mon Jul 18 2011 Petr Sabata <contyk@redhat.com> - 1.0.20-2
|
|
- Drop SysV support in favor of systemd (#714683)
|
|
- Remove ancient scriptlets (pre-1.0.7 era)
|
|
- Update quickstart.txt to reflect new changes
|
|
|
|
* Thu Jul 07 2011 Petr Sabata <contyk@redhat.com> - 1.0.20-1
|
|
- 1.0.20 bump
|
|
|
|
* Thu Jun 02 2011 Petr Sabata <contyk@redhat.com> - 1.0.19-1
|
|
- 1.0.19 bump
|
|
|
|
* Wed May 3 2011 Petr Sabata <psabata@redhat.com> - 1.0.18-2
|
|
- fcoemon: Do not create a world and group writable PID file
|
|
|
|
* Wed Apr 20 2011 Petr Sabata <psabata@redhat.com> - 1.0.18-1
|
|
- 1.0.18 bump with latest bugfixes
|
|
- Removing ExcludeArch completely; not related for Fedora
|
|
- Buildroot cleanup
|
|
|
|
* Tue Apr 19 2011 Karsten Hopp <karsten@redhat.com> 1.0.17-1.1
|
|
- remove excludearch ppc, required by anaconda.ppc
|
|
|
|
* Thu Feb 24 2011 Fabio M. Di Nitto <fdinitto@redhat.com> - 1.0.17-1
|
|
- Pull in new upstream release (required to build)
|
|
- Fix git clone URL in comments
|
|
- Drop fcoe-utils-1.0.7-init.patch, fcoe-utils-1.0.7-init-condrestart.patch
|
|
and fcoe-utils-1.0.8-init-LSB.patch that are now upstream
|
|
- Drop fcoe-utils-1.0.8-includes.patch and use a copy of kernel headers
|
|
for all architectures (rename fcoe-sparc.patch to fcoe-include-headers.patch)
|
|
Upstream added detection to avoid inclusion of kernel headers in the build
|
|
and it expects to find the userland headers installed. Those have not
|
|
yet propagated in Fedora.
|
|
Use temporary this workaround, since fcoe is a requiment for anaconda
|
|
and it failed to build for a while
|
|
- Drop BuildRequires on kernel-devel
|
|
- Add BuildRequires on autoconf (it is used and not installed by default
|
|
on all build chroots)
|
|
|
|
* Wed Feb 23 2011 Dennis Gilmore <dennis@ausil.us> - 1.0.14-5
|
|
- patch in headers used from kernel-devel on 32 bit sparc
|
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.14-4
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
* Tue Nov 30 2010 Petr Sabata <psabata@redhat.com> - 1.0.14-3
|
|
- Removing dependency on vconfig, rhbz#658525
|
|
|
|
* Mon Jun 28 2010 Jan Zeleny <jzeleny@redhat.com> - 1.0.14-2
|
|
- added device-mapper-multipath to requires (#603242)
|
|
- added missing man pages for fcrls, fcnsq and fcping
|
|
- update of init script - added condrestart, try-restart
|
|
and force-reload options
|
|
- added vconfig to requires (#589608)
|
|
|
|
* Mon May 24 2010 Jan Zeleny <jzeleny@redhat.com> - 1.0.14-1
|
|
- rebased to 1.0.14, see bug #593824 for complete changelog
|
|
|
|
* Mon Apr 12 2010 Jan Zeleny <jzeleny@redhat.com> - 1.0.13-1
|
|
- rebased to v1.0.13, some bugfixes, new fcoe related scripts
|
|
|
|
* Tue Mar 30 2010 Jan Zeleny <jzeleny@redhat.com> - 1.0.12-2.20100323git
|
|
- some upstream updates
|
|
- better fipvlan support
|
|
- added fcoe_edd.sh script
|
|
|
|
* Tue Mar 16 2010 Jan Zeleny <jzeleny@redhat.com> - 1.0.12-1
|
|
- rebased to version 1.0.12, improved functionality with lldpad
|
|
and dcbd
|
|
- removed /etc/fcoe/scripts/fcoeplumb
|
|
|
|
* Thu Dec 10 2009 Jan Zeleny <jzeleny@redhat.com> - 1.0.9-2.20091204git
|
|
- excluded s390 and ppc
|
|
|
|
* Fri Dec 04 2009 Jan Zeleny <jzeleny@redhat.com> - 1.0.9-1.20091204git
|
|
- rebase to latest version of fcoe-utils
|
|
|
|
* Mon Sep 14 2009 Jan Zeleny <jzeleny@redhat.com> - 1.0.8-3
|
|
- update of init script to be LSB-compliant
|
|
|
|
* Fri Jul 31 2009 Jan Zeleny <jzeleny@redhat.com> - 1.0.8-2
|
|
- patch for clean compilation without usage of upstream's ugly hack
|
|
|
|
* Thu Jul 30 2009 Jan Zeleny <jzeleny@redhat.com> - 1.0.8-1
|
|
- rebase of fcoe-utils to 1.0.8, adjusted spec file
|
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.7-8
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
* Tue Jun 9 2009 Jan Zeleny <jzeleny@redhat.com> - 1.0.7-7
|
|
- added quickstart file to doc (#500759)
|
|
|
|
* Thu May 14 2009 Jan Zeleny <jzeleny@redhat.com> - 1.0.7-6
|
|
- renamed init script to fcoe, changed lock filename to fcoe
|
|
(#497604)
|
|
- init script modified to do condrestart properly
|
|
- some modifications in spec file to apply previous change
|
|
to older versions od init script during update
|
|
- fixed issue with accepting long options (#498551)
|
|
|
|
* Mon May 4 2009 Jan Zeleny <jzeleny@redhat.com> - 1.0.7-5
|
|
- fixed SIGSEGV when fcoe module isn't loaded (#498550)
|
|
|
|
* Wed Apr 27 2009 Jan Zeleny <jzeleny@redhat.com> - 1.0.7-4
|
|
- added libhbalinux to Requires (#497605)
|
|
- correction of spec file (_initddir -> _initrddir)
|
|
|
|
* Wed Apr 8 2009 Jan Zeleny <jzeleny@redhat.com> - 1.0.7-3
|
|
- more minor corrections in spec file
|
|
|
|
* Thu Apr 2 2009 Jan Zeleny <jzeleny@redhat.com> - 1.0.7-2
|
|
- minor corrections in spec file
|
|
- moved init script to correct location
|
|
- correction in the init script (chkconfig directives)
|
|
|
|
* Mon Mar 2 2009 Chris Leech <christopher.leech@intel.com> - 1.0.7-1
|
|
- initial rpm build of fcoe tools
|
|
|