-
Notifications
You must be signed in to change notification settings - Fork 17
/
ibdump.spec
64 lines (52 loc) · 1.43 KB
/
ibdump.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
%bcond_with mlnx_libs
%if %{with mlnx_libs}
%define libs_exp_arg LIBS_EXP=yes
%else
%define libs_exp_arg %{nil}
%endif
%bcond_with mstflint
%if %{with mstflint}
%define mstflint_arg WITH_MSTFLINT=yes
%else
%define mstflint_arg %{nil}
%endif
%if %{undefined make_build}
%global make_build %{__make} %{?_smp_mflags}
%endif
%define make_opts %{libs_exp_arg} PREFIX=%{_prefix}
Summary: Mellanox InfiniBand sniffing application
Name: ibdump
Version: 6.0.0
Release: 1
License: BSD2+GPL2
Group: System Environment/Base
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}
Source: %{name}-%{version}.tgz
ExclusiveArch: i386 i486 i586 i686 x86_64 ppc64 ppc64le aarch64
Url: https://github.com/Mellanox/ibdump
%description
InfiniBand sniffer for MellanoX Technologies LTD. ConnectX HCAs
%prep
%setup -n %{name}-%{version}
%build
%make_build %{make_opts}
%install
rm -rf $RPM_BUILD_ROOT
%{make_install} %{make_opts}
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%{_bindir}/ibdump
%{_bindir}/vpi_tcpdump
%changelog
* Wed Dec 18 2019 Itay Avraham <itayavr@mellanox.com> 6.0.0-1
- Move to Github
* Sun Mar 19 2017 Adrian Chiris <adrianc@mellanox.co.il> 5.0.0
ConnectX-5 Support
* Mon Nov 12 2012 Oren Kladnitsky <orenk@mellanox.co.il> 1.0.6
Ethernet capture support, vpi_tcpdump
* Thu Nov 24 2011 Oren Kladnitsky <orenk@mellanox.co.il> 1.0.6
ConnectX-3 Support
* Mon Feb 28 2010 Oren Kladnitsky <orenk@mellanox.co.il> 1.0.3
initial creation