Accepting request 814122 from network:utilities

OBS-URL: https://build.opensuse.org/request/show/814122
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/tcpreplay?expand=0&rev=8
This commit is contained in:
Dominique Leuenberger 2020-06-12 19:44:05 +00:00 committed by Git OBS Bridge
commit 91da1c287e
2 changed files with 12 additions and 5 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Fri Jun 12 05:24:23 UTC 2020 - Martin Pluskal <mpluskal@suse.com>
- Fix building with gcc10
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Mar 14 05:25:11 UTC 2019 - seanlew@opensuse.org Thu Mar 14 05:25:11 UTC 2019 - seanlew@opensuse.org

View File

@ -1,7 +1,7 @@
# #
# spec file for package tcpreplay # spec file for package tcpreplay
# #
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2020 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -12,7 +12,7 @@
# license that conforms to the Open Source Definition (Version 1.9) # license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative. # published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/ # Please submit bugfixes or comments via https://bugs.opensuse.org/
# #
@ -22,18 +22,18 @@ Release: 0
Summary: Network analysis and testing tools Summary: Network analysis and testing tools
License: GPL-3.0-only License: GPL-3.0-only
Group: Productivity/Networking/Diagnostic Group: Productivity/Networking/Diagnostic
Url: http://tcpreplay.appneta.com/ URL: http://tcpreplay.appneta.com/
Source0: https://github.com/appneta/tcpreplay/releases/download/v%{version}/%{name}-%{version}.tar.gz Source0: https://github.com/appneta/tcpreplay/releases/download/v%{version}/%{name}-%{version}.tar.gz
Source1: https://github.com/appneta/tcpreplay/releases/download/v%{version}/%{name}-%{version}.tar.gz.asc Source1: https://github.com/appneta/tcpreplay/releases/download/v%{version}/%{name}-%{version}.tar.gz.asc
Source2: %{name}.keyring Source2: %{name}.keyring
BuildRequires: dbus-1-devel BuildRequires: dbus-1-devel
BuildRequires: libdnet-devel BuildRequires: libdnet-devel
BuildRequires: libpcap-devel BuildRequires: libpcap-devel
BuildRequires: tcpdump
Requires: tcpdump
%if 0%{?suse_version} > 1110 %if 0%{?suse_version} > 1110
BuildRequires: libnl3-devel BuildRequires: libnl3-devel
%endif %endif
BuildRequires: tcpdump
Requires: tcpdump
# only needed for suse_version < 1130 (i.e. SLE11) # only needed for suse_version < 1130 (i.e. SLE11)
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -48,6 +48,8 @@ supports switches, routers and IP Flow/NetFlow appliances.
%setup -q %setup -q
%build %build
# fix building with gcc10
export CFLAGS="%{optflags} -fcommon"
%configure \ %configure \
--enable-dynamic-link --enable-dynamic-link
make %{?_smp_mflags} V=1 make %{?_smp_mflags} V=1