From f0f0453984192fd1b250785d2088a84733065c28 Mon Sep 17 00:00:00 2001 From: Mark Asselstine Date: Wed, 12 Jul 2017 17:02:42 -0400 Subject: openvswitch: backport py3 fixups While attempting to get ovs to be built and run with py3 (completely free of py2) host contamination was found (builds on hosts without python-six installed would fail). It was also determined that pyc files were still being generated with py2 and not py3. This resulted in more work being done to achieve the desired results. This work was sent upstream and subsequently merged. Unfortunately this didn't make v2.7.1 and may not be available until the next major release, so here we backport these commits and adjust the recipe to get a clean py3 only build. Signed-off-by: Mark Asselstine Signed-off-by: Bruce Ashfield --- ...n3-compatibility-math-error-compatibility.patch | 56 ++++++++++++++++++++++ 1 file changed, 56 insertions(+) create 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 new file mode 100644 index 00000000..54905cd0 --- /dev/null +++ b/recipes-networking/openvswitch/openvswitch-git/0006-Python3-compatibility-math-error-compatibility.patch @@ -0,0 +1,56 @@ +From 3a9fcf1c8f60c160c282c9755ee1c7f9f7e113c3 Mon Sep 17 00:00:00 2001 +From: Jason Wessel +Date: Thu, 29 Jun 2017 20:33:23 -0700 +Subject: [PATCH 6/8] 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 c11297c..bd7131f 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 +-- +2.5.0 + -- cgit v1.2.3-54-g00ecf