Accepting request 262948 from home:mkubecek:branches:security:netfilter

- Update to new upstream release 3.17

OBS-URL: https://build.opensuse.org/request/show/262948
OBS-URL: https://build.opensuse.org/package/show/security:netfilter/iproute2?expand=0&rev=87
This commit is contained in:
Jan Engelhardt 2014-11-25 09:02:54 +00:00 committed by Git OBS Bridge
parent d8e241a51d
commit ec9ae5ab3a
9 changed files with 71 additions and 7 deletions

Binary file not shown.

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1f0a8a6c0e872166f75433f5cbf9766f3002b5c2f13501b3bb8c51846a127b79
size 438820

BIN
iproute2-3.17.0.tar.sign Normal file

Binary file not shown.

3
iproute2-3.17.0.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:09e406636e7598e46d5d4f7b928bf5db57049d65dbeb9a496005957ee16f6000
size 440188

View File

@ -1,3 +1,19 @@
-------------------------------------------------------------------
Tue Nov 25 08:18:52 UTC 2014 - mkubecek@suse.cz
- Update to new upstream release 3.17
* ip: allow to set ipv6 address generation mode
* nstat: 64bit support on 32bit architectures
* ip: don't require "name" keyword when adding device
(3.16 regression)
* ip: support of usec rtt in tcp_metrics
* ip: allow to change slave options via type_slave
* ip: add support for IPv6 VTI tunnels
* tc: rsvp/tcindex/route classifier support for multiple actions
* ip: print stats with "ip -s addr show"
- Add revert-bison-fix.diff:
fix build on SLE11
-------------------------------------------------------------------
Sun Aug 10 16:02:36 UTC 2014 - jengelh@inai.de

View File

@ -17,9 +17,9 @@
Name: iproute2-doc
Version: 3.16
Version: 3.17
Release: 0
%define rversion 3.16.0
%define rversion 3.17.0
Summary: Documentation to iproute2
License: GPL-2.0+
Group: Documentation/Other

View File

@ -1,3 +1,19 @@
-------------------------------------------------------------------
Tue Nov 25 08:18:52 UTC 2014 - mkubecek@suse.cz
- Update to new upstream release 3.17
* ip: allow to set ipv6 address generation mode
* nstat: 64bit support on 32bit architectures
* ip: don't require "name" keyword when adding device
(3.16 regression)
* ip: support of usec rtt in tcp_metrics
* ip: allow to change slave options via type_slave
* ip: add support for IPv6 VTI tunnels
* tc: rsvp/tcindex/route classifier support for multiple actions
* ip: print stats with "ip -s addr show"
- Add revert-bison-fix.diff:
fix build on SLE11
-------------------------------------------------------------------
Sun Aug 10 16:02:36 UTC 2014 - jengelh@inai.de

View File

@ -17,9 +17,9 @@
Name: iproute2
Version: 3.16
Version: 3.17
Release: 0
%define rversion 3.16.0
%define rversion 3.17.0
Summary: Linux network configuration utilities
License: GPL-2.0
Group: Productivity/Networking/Routing
@ -35,6 +35,7 @@ Source667: %name.keyring
Patch1: iproute2-dirs.diff
Patch2: iproute2-HZ.diff
Patch3: revert-pdf-creation.diff
Patch4: revert-bison-fix.diff
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: bison
BuildRequires: db-devel
@ -80,6 +81,9 @@ tar -xf "%{S:0}" --use=xz;
%if 0%{?sles_version} == 11 || (0%{?suse_version} && 0%{?suse_version} <= 1220)
%patch -P 3 -p1
%endif
%if 0%{?sles_version} == 11
%patch -P 4 -p1
%endif
find . -name *.orig -delete
%build

28
revert-bison-fix.diff Normal file
View File

@ -0,0 +1,28 @@
From 184ea2afa279c94248db86f74a3f4fd3ba3cded1 Mon Sep 17 00:00:00 2001
From: Michal Kubecek <mkubecek@suse.cz>
Date: Tue, 25 Nov 2014 08:39:36 +0100
Subject: [PATCH] Revert "emp: fix warning on deprecated bison directive"
This reverts commit edd3979272e46d17456a4dabc3e9acf59e561d5a.
SLE11 only, its bison doesn't allow new syntax.
---
tc/emp_ematch.y | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tc/emp_ematch.y b/tc/emp_ematch.y
index bc08da2..7043a80 100644
--- a/tc/emp_ematch.y
+++ b/tc/emp_ematch.y
@@ -9,7 +9,7 @@
%locations
%token-table
%error-verbose
-%name-prefix "ematch_"
+%name-prefix="ematch_"
%union {
unsigned int i;
--
1.8.4.5