Update to upstream release 11.3.0.0
Resolves: rhbz#2037052 Signed-off-by: Michal Schmidt <mschmidt@redhat.com>
This commit is contained in:
parent
c6e0ebe6b4
commit
1f06bcad14
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
/eth-fast-fabric-11.0.0.0.tar.gz
|
/eth-fast-fabric-11.0.0.0.tar.gz
|
||||||
/eth-fast-fabric-11.1.0.0.tar.gz
|
/eth-fast-fabric-11.1.0.0.tar.gz
|
||||||
/eth-fast-fabric-11.1.0.1.tar.gz
|
/eth-fast-fabric-11.1.0.1.tar.gz
|
||||||
|
/v11.3.0.0.tar.gz
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
Name: eth-tools
|
Name: eth-tools
|
||||||
Version: 11.1.0.1
|
Version: 11.3.0.0
|
||||||
Release: 5%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Intel Ethernet Fabric Suite basic tools and libraries for fabric management
|
Summary: Intel Ethernet Fabric Suite basic tools and libraries for fabric management
|
||||||
|
|
||||||
License: BSD
|
License: BSD
|
||||||
Url: https://github.com/intel/eth-fast-fabric
|
Url: https://github.com/intel/eth-fast-fabric
|
||||||
Source: %url/archive/%{version_no_tilde}/eth-fast-fabric-%{version_no_tilde}.tar.gz
|
Source: %url/archive/refs/tags/v%{version_no_tilde}.tar.gz
|
||||||
ExclusiveArch: x86_64
|
ExclusiveArch: x86_64
|
||||||
# The Intel(R) Ethernet Fabric Suite product line is only available on x86_64 platforms at this time.
|
# The Intel(R) Ethernet Fabric Suite product line is only available on x86_64 platforms at this time.
|
||||||
|
|
||||||
@ -19,7 +19,7 @@ Summary: Management level tools and scripts
|
|||||||
|
|
||||||
Requires: rdma bc
|
Requires: rdma bc
|
||||||
|
|
||||||
Requires: expect%{?_isa}, tcl%{?_isa}, libibverbs-utils%{?_isa}, librdmacm-utils%{?_isa}, net-snmp-utils%{?_isa}
|
Requires: expect%{?_isa}, tcl%{?_isa}, libibverbs-utils%{?_isa}, librdmacm-utils%{?_isa}, net-snmp%{?_isa}, net-snmp-utils%{?_isa}
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
BuildRequires: expat-devel
|
BuildRequires: expat-devel
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
@ -33,8 +33,8 @@ Contains basic tools for fabric management necessary on all compute nodes.
|
|||||||
|
|
||||||
%package fastfabric
|
%package fastfabric
|
||||||
Summary: Management level tools and scripts
|
Summary: Management level tools and scripts
|
||||||
|
Requires: perl
|
||||||
Requires: eth-tools-basic%{?_isa} >= %{version}-%{release}
|
Requires: eth-tools-basic%{?_isa} >= %{version}-%{release}
|
||||||
Requires: perl cronie
|
|
||||||
|
|
||||||
%description fastfabric
|
%description fastfabric
|
||||||
Contains tools for managing fabric on a management node.
|
Contains tools for managing fabric on a management node.
|
||||||
@ -51,12 +51,14 @@ BUILDDIR=%{_builddir} DESTDIR=%{buildroot} LIBDIR=%{_prefix}/lib DSAP_LIBDIR=%{_
|
|||||||
|
|
||||||
%files basic
|
%files basic
|
||||||
%{_sbindir}/ethcapture
|
%{_sbindir}/ethcapture
|
||||||
|
%{_sbindir}/ethshmcleanup
|
||||||
%{_prefix}/lib/eth-tools/setup_self_ssh
|
%{_prefix}/lib/eth-tools/setup_self_ssh
|
||||||
%{_prefix}/lib/eth-tools/usemem
|
%{_prefix}/lib/eth-tools/usemem
|
||||||
%{_prefix}/lib/eth-tools/ethipcalc
|
%{_prefix}/lib/eth-tools/ethipcalc
|
||||||
%{_prefix}/lib/eth-tools/stream
|
%{_prefix}/lib/eth-tools/stream
|
||||||
%{_prefix}/lib/eth-tools/ethudstress
|
%{_prefix}/lib/eth-tools/ethudstress
|
||||||
%{_mandir}/man1/ethcapture.1*
|
%{_mandir}/man1/ethcapture.1*
|
||||||
|
%{_mandir}/man1/ethshmcleanup.1*
|
||||||
%{_datadir}/eth-tools/samples/mgt_config.xml-sample
|
%{_datadir}/eth-tools/samples/mgt_config.xml-sample
|
||||||
%dir %{_sysconfdir}/eth-tools/
|
%dir %{_sysconfdir}/eth-tools/
|
||||||
%config(noreplace) %{_sysconfdir}/eth-tools/mgt_config.xml
|
%config(noreplace) %{_sysconfdir}/eth-tools/mgt_config.xml
|
||||||
@ -64,6 +66,7 @@ BUILDDIR=%{_builddir} DESTDIR=%{buildroot} LIBDIR=%{_prefix}/lib DSAP_LIBDIR=%{_
|
|||||||
%files fastfabric
|
%files fastfabric
|
||||||
%{_sbindir}/*
|
%{_sbindir}/*
|
||||||
%exclude %{_sbindir}/ethcapture
|
%exclude %{_sbindir}/ethcapture
|
||||||
|
%exclude %{_sbindir}/ethshmcleanup
|
||||||
%{_prefix}/lib/eth-tools/*
|
%{_prefix}/lib/eth-tools/*
|
||||||
%exclude %{_prefix}/lib/eth-tools/setup_self_ssh
|
%exclude %{_prefix}/lib/eth-tools/setup_self_ssh
|
||||||
%exclude %{_prefix}/lib/eth-tools/usemem
|
%exclude %{_prefix}/lib/eth-tools/usemem
|
||||||
@ -85,6 +88,10 @@ BUILDDIR=%{_builddir} DESTDIR=%{buildroot} LIBDIR=%{_prefix}/lib DSAP_LIBDIR=%{_
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Aug 03 2022 Michal Schmidt <mschmidt@redhat.com> - 1:11.3.0.0-1
|
||||||
|
- Update to upstream release 11.3.0.0
|
||||||
|
- Resolves: rhbz#2037052
|
||||||
|
|
||||||
* Tue Nov 09 2021 Honggang Li <honli@redhat.com> - 1:11.1.0.1-5
|
* Tue Nov 09 2021 Honggang Li <honli@redhat.com> - 1:11.1.0.1-5
|
||||||
- Update to upstream release 11.1.0.1
|
- Update to upstream release 11.1.0.1
|
||||||
- Fix annocheck issues
|
- Fix annocheck issues
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (eth-fast-fabric-11.1.0.1.tar.gz) = 9ee7c13da5e6eb05668ba94345b66b77c4e3e5df03f0574c2304dcdca1ea47ecb930fd99f760eecba85d304756e21a91ae9ec7216f0e12c6ab2b27d8ab8dbb14
|
SHA512 (v11.3.0.0.tar.gz) = 7ca71235d547c0b4da975723bf4f8955b102aea660ae656472c3595de5a1d22defbe641209b80dfefe8adaffa2f3b52ae685730bcb18560b6b7f11bae7106d07
|
||||||
|
Loading…
Reference in New Issue
Block a user