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 --- ...03-Python3-compatibility-execfile-to-exec.patch | 31 ---------------------- 1 file changed, 31 deletions(-) delete mode 100644 recipes-networking/openvswitch/openvswitch-git/0003-Python3-compatibility-execfile-to-exec.patch (limited to 'recipes-networking/openvswitch/openvswitch-git/0003-Python3-compatibility-execfile-to-exec.patch') diff --git a/recipes-networking/openvswitch/openvswitch-git/0003-Python3-compatibility-execfile-to-exec.patch b/recipes-networking/openvswitch/openvswitch-git/0003-Python3-compatibility-execfile-to-exec.patch deleted file mode 100644 index 98d77c8a..00000000 --- a/recipes-networking/openvswitch/openvswitch-git/0003-Python3-compatibility-execfile-to-exec.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 8557d51e8c7325a17219911e9a65eeb3946e869f Mon Sep 17 00:00:00 2001 -From: Jason Wessel -Date: Thu, 29 Jun 2017 20:33:23 -0700 -Subject: [PATCH] Python3 compatibility: execfile to exec - -Commit a4d10a7ca937d73873f6f98619d88682e69f5dbe from -https://github.com/openvswitch/ovs.git - -Allow compability with python3 and python2 by changing execfile() to -exec(). - -Signed-off-by: Jason Wessel -Signed-off-by: Ben Pfaff - ---- - ovsdb/ovsdb-idlc.in | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/ovsdb/ovsdb-idlc.in b/ovsdb/ovsdb-idlc.in -index e7e1c6b..e1551f9 100755 ---- a/ovsdb/ovsdb-idlc.in -+++ b/ovsdb/ovsdb-idlc.in -@@ -17,7 +17,7 @@ def parseSchema(filename): - - def annotateSchema(schemaFile, annotationFile): - schemaJson = ovs.json.from_file(schemaFile) -- execfile(annotationFile, globals(), {"s": schemaJson}) -+ exec(compile(open(annotationFile, "rb").read(), annotationFile, 'exec'), globals(), {"s": schemaJson}) - ovs.json.to_stream(schemaJson, sys.stdout) - sys.stdout.write('\n') - -- cgit v1.2.3-54-g00ecf