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 --- ...-Python3-compatibility-iteritems-to-items.patch | 100 --------------------- 1 file changed, 100 deletions(-) delete mode 100644 recipes-networking/openvswitch/openvswitch-git/0004-Python3-compatibility-iteritems-to-items.patch (limited to 'recipes-networking/openvswitch/openvswitch-git/0004-Python3-compatibility-iteritems-to-items.patch') diff --git a/recipes-networking/openvswitch/openvswitch-git/0004-Python3-compatibility-iteritems-to-items.patch b/recipes-networking/openvswitch/openvswitch-git/0004-Python3-compatibility-iteritems-to-items.patch deleted file mode 100644 index 092c42d6..00000000 --- a/recipes-networking/openvswitch/openvswitch-git/0004-Python3-compatibility-iteritems-to-items.patch +++ /dev/null @@ -1,100 +0,0 @@ -From 7e4bd5c2af85b1293be0a92b18f7930bda2ab41a Mon Sep 17 00:00:00 2001 -From: Jason Wessel -Date: Thu, 29 Jun 2017 20:33:23 -0700 -Subject: [PATCH] Python3 compatibility: iteritems to items - -Commit 4ab665623cbb4c6506e48b82e0c9fe8585f42e13 from -https://github.com/openvswitch/ovs.git - -Allow compability with python3 and python2 by changing iteritems() to -items(). - -Signed-off-by: Jason Wessel -Signed-off-by: Ben Pfaff - ---- - build-aux/extract-ofp-actions | 2 +- - build-aux/extract-ofp-errors | 2 +- - build-aux/extract-ofp-fields | 2 +- - ovsdb/ovsdb-idlc.in | 8 ++++---- - 4 files changed, 7 insertions(+), 7 deletions(-) - -diff --git a/build-aux/extract-ofp-actions b/build-aux/extract-ofp-actions -index 67e3848..c7858bd 100755 ---- a/build-aux/extract-ofp-actions -+++ b/build-aux/extract-ofp-actions -@@ -13,7 +13,7 @@ version_map = {"1.0": 0x01, - "1.3": 0x04, - "1.4": 0x05, - "1.5": 0x06} --version_reverse_map = dict((v, k) for (k, v) in version_map.iteritems()) -+version_reverse_map = dict((v, k) for (k, v) in version_map.items()) - - # Map from vendor name to the length of the action header. - vendor_map = {"OF": (0x00000000, 4), -diff --git a/build-aux/extract-ofp-errors b/build-aux/extract-ofp-errors -index 97d62d2..58ba006 100755 ---- a/build-aux/extract-ofp-errors -+++ b/build-aux/extract-ofp-errors -@@ -14,7 +14,7 @@ version_map = {"1.0": 0x01, - "1.4": 0x05, - "1.5": 0x06, - "1.6": 0x07} --version_reverse_map = dict((v, k) for (k, v) in version_map.iteritems()) -+version_reverse_map = dict((v, k) for (k, v) in version_map.items()) - - token = None - line = "" -diff --git a/build-aux/extract-ofp-fields b/build-aux/extract-ofp-fields -index 6286c9c..f624728 100755 ---- a/build-aux/extract-ofp-fields -+++ b/build-aux/extract-ofp-fields -@@ -16,7 +16,7 @@ VERSION = {"1.0": 0x01, - "1.3": 0x04, - "1.4": 0x05, - "1.5": 0x06} --VERSION_REVERSE = dict((v,k) for k, v in VERSION.iteritems()) -+VERSION_REVERSE = dict((v,k) for k, v in VERSION.items()) - - TYPES = {"u8": (1, False), - "be16": (2, False), -diff --git a/ovsdb/ovsdb-idlc.in b/ovsdb/ovsdb-idlc.in -index e1551f9..b70a599 100755 ---- a/ovsdb/ovsdb-idlc.in -+++ b/ovsdb/ovsdb-idlc.in -@@ -138,7 +138,7 @@ def printCIDLHeader(schemaFile): - #include "smap.h" - #include "uuid.h"''' % {'prefix': prefix.upper()}) - -- for tableName, table in sorted(schema.tables.iteritems()): -+ for tableName, table in sorted(schema.tables.items()): - structName = "%s%s" % (prefix, tableName.lower()) - - print(" ") -@@ -300,7 +300,7 @@ def printCIDLSource(schemaFile): - ''' % schema.idlHeader) - - # Cast functions. -- for tableName, table in sorted(schema.tables.iteritems()): -+ for tableName, table in sorted(schema.tables.items()): - structName = "%s%s" % (prefix, tableName.lower()) - print(''' - static struct %(s)s * -@@ -311,7 +311,7 @@ static struct %(s)s * - ''' % {'s': structName}) - - -- for tableName, table in sorted(schema.tables.iteritems()): -+ for tableName, table in sorted(schema.tables.items()): - structName = "%s%s" % (prefix, tableName.lower()) - print(" ") - print("/* %s table. */" % (tableName)) -@@ -1025,7 +1025,7 @@ void - # Table classes. - print(" ") - print("struct ovsdb_idl_table_class %stable_classes[%sN_TABLES] = {" % (prefix, prefix.upper())) -- for tableName, table in sorted(schema.tables.iteritems()): -+ for tableName, table in sorted(schema.tables.items()): - structName = "%s%s" % (prefix, tableName.lower()) - if table.is_root: - is_root = "true" -- cgit v1.2.3-54-g00ecf