From d4c5cd1d939ac9bc8f4e2065e5afa83b1fa00418 Mon Sep 17 00:00:00 2001 From: Mark Asselstine Date: Tue, 5 Jun 2018 09:47:35 -0400 Subject: openvswitch: remove unused patches commit 1fd1ff372014 [openvswitch: uprev to v2.9.2] left a bunch of unused patches in place. Remove unreferenced patches as they are no longer needed. Signed-off-by: Mark Asselstine Signed-off-by: Bruce Ashfield --- ...n3-compatibility-math-error-compatibility.patch | 54 ---------------------- 1 file changed, 54 deletions(-) delete mode 100644 recipes-networking/openvswitch/openvswitch-git/0006-Python3-compatibility-math-error-compatibility.patch (limited to 'recipes-networking/openvswitch/openvswitch-git/0006-Python3-compatibility-math-error-compatibility.patch') diff --git a/recipes-networking/openvswitch/openvswitch-git/0006-Python3-compatibility-math-error-compatibility.patch b/recipes-networking/openvswitch/openvswitch-git/0006-Python3-compatibility-math-error-compatibility.patch deleted file mode 100644 index c53502b5..00000000 --- a/recipes-networking/openvswitch/openvswitch-git/0006-Python3-compatibility-math-error-compatibility.patch +++ /dev/null @@ -1,54 +0,0 @@ -From 7f542122d62b20d11198bfdb0f2c6a460261b5e7 Mon Sep 17 00:00:00 2001 -From: Jason Wessel -Date: Thu, 29 Jun 2017 20:33:23 -0700 -Subject: [PATCH] Python3 compatibility: math error compatibility - -Commit 3fa5aa4294377e0f35267936d0c5caea3e61db48 from -https://github.com/openvswitch/ovs.git - -The way math is handled with typing is completely different in python3. - -% python2< -Signed-off-by: Ben Pfaff - ---- - build-aux/extract-ofp-actions | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/build-aux/extract-ofp-actions b/build-aux/extract-ofp-actions -index c7858bd..4d05ef9 100755 ---- a/build-aux/extract-ofp-actions -+++ b/build-aux/extract-ofp-actions -@@ -35,7 +35,7 @@ line = "" - arg_structs = set() - - def round_up(x, y): -- return (x + (y - 1)) / y * y -+ return int((x + (y - 1)) / y) * y - - def open_file(fn): - global file_name -- cgit v1.2.3-54-g00ecf