diff options
author | Mark Asselstine <mark.asselstine@windriver.com> | 2020-02-19 20:07:44 -0500 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2020-02-20 12:43:14 -0500 |
commit | b1b4fca4f04ba878d7c70c18817deb42eab3b712 (patch) | |
tree | 623922ad8aeb7fe5c37e0663460397d905604505 /recipes-networking/openvswitch/files | |
parent | cac0cdf86d46f7acfba8e6c3931ed72895c056f7 (diff) | |
download | meta-virtualization-b1b4fca4f04ba878d7c70c18817deb42eab3b712.tar.gz |
openvswitch: uprev from v2.12 to v2.13
Another straightforward uprev with one fairly large change in the
changelog. The Open Virtual Network component has now been moved to
its own repo (https://github.com/ovn-org/ovn.git). If you were using
this functionality a new recipe will need to be created.
The ptest results are similar to after the v2.12 uprev
ERROR: 2206 tests were run,
28 failed unexpectedly.
62 tests were skipped.
The failed tests were in the following areas:
checkpatch.at (5)
ovs-ofctl.at (1)
tunnel.at(1)
tunnel-push-pop.at(3)
tunnel-push-pop-ipv6.at(3)
dpif-netdev.at (1)
pmd.at(1)
ofproto-dpif.at (7)
bridge.at (2)
ovsdb-idl.at(1)
mcast-snooping.at(1)
packet-type-aware.at(2)
None of these affect core functionality or usecases and are similar to
the results we see with v1.12. If specific usecases are affected by
these failures we should address them on a need to fix basis.
Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-networking/openvswitch/files')
2 files changed, 1 insertions, 385 deletions
diff --git a/recipes-networking/openvswitch/files/python-make-remaining-scripts-use-usr-bin-env.patch b/recipes-networking/openvswitch/files/python-make-remaining-scripts-use-usr-bin-env.patch deleted file mode 100644 index 53e3103a..00000000 --- a/recipes-networking/openvswitch/files/python-make-remaining-scripts-use-usr-bin-env.patch +++ /dev/null | |||
@@ -1,373 +0,0 @@ | |||
1 | From a348e0162343f7d46443eb1fd2bcf0698460a780 Mon Sep 17 00:00:00 2001 | ||
2 | From: "Hongzhi.Song" <hongzhi.song@windriver.com> | ||
3 | Date: Wed, 23 Jan 2019 04:28:28 -0500 | ||
4 | Subject: [PATCH] python: make remaining scripts use /usr/bin/env | ||
5 | |||
6 | Unfortunately there is no concept of a host python vs. target python | ||
7 | to facilitate cross compilation. There is only one PYTHON variable and | ||
8 | this is used during building and in the header of python scripts after | ||
9 | installation. The best approach for cross compilation is to thus to | ||
10 | ensure python is in the path and avoid passing a path as part of | ||
11 | PYTHON. To make this function smoothly all installed scripts should | ||
12 | make use of /usr/bin/env to increase the chances of finding python. | ||
13 | |||
14 | Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> | ||
15 | Signed-off-by: Hongzhi.Song <hongzhi.song@windriver.com> | ||
16 | --- | ||
17 | build-aux/check-structs | 2 +- | ||
18 | build-aux/dpdkstrip.py | 2 +- | ||
19 | build-aux/extract-ofp-actions | 2 +- | ||
20 | build-aux/extract-ofp-errors | 2 +- | ||
21 | build-aux/extract-ofp-fields | 2 +- | ||
22 | build-aux/extract-ofp-msgs | 2 +- | ||
23 | build-aux/sodepends.py | 2 +- | ||
24 | build-aux/soexpand.py | 2 +- | ||
25 | build-aux/text2c | 2 +- | ||
26 | build-aux/xml2nroff | 2 +- | ||
27 | ovn/utilities/ovn-detrace.in | 2 +- | ||
28 | ovn/utilities/ovn-docker-overlay-driver.in | 2 +- | ||
29 | ovn/utilities/ovn-docker-underlay-driver.in | 2 +- | ||
30 | ovsdb/dot2pic | 2 +- | ||
31 | ovsdb/ovsdb-doc | 2 +- | ||
32 | ovsdb/ovsdb-dot.in | 2 +- | ||
33 | ovsdb/ovsdb-idlc.in | 2 +- | ||
34 | python/build/soutil.py | 2 +- | ||
35 | tests/flowgen.py | 2 +- | ||
36 | tests/ovsdb-monitor-sort.py | 2 +- | ||
37 | tests/uuidfilt.py | 2 +- | ||
38 | utilities/bugtool/ovs-bugtool.in | 2 +- | ||
39 | utilities/ovs-check-dead-ifs.in | 2 +- | ||
40 | utilities/ovs-dpctl-top.in | 2 +- | ||
41 | utilities/ovs-l3ping.in | 2 +- | ||
42 | utilities/ovs-parse-backtrace.in | 2 +- | ||
43 | utilities/ovs-pcap.in | 2 +- | ||
44 | utilities/ovs-tcpdump.in | 2 +- | ||
45 | utilities/ovs-tcpundump.in | 2 +- | ||
46 | utilities/ovs-test.in | 2 +- | ||
47 | utilities/ovs-vlan-test.in | 2 +- | ||
48 | vtep/ovs-vtep.in | 2 +- | ||
49 | 32 files changed, 32 insertions(+), 32 deletions(-) | ||
50 | |||
51 | diff --git a/build-aux/check-structs b/build-aux/check-structs | ||
52 | index 37ffa06..eb44c91 100755 | ||
53 | --- a/build-aux/check-structs | ||
54 | +++ b/build-aux/check-structs | ||
55 | @@ -1,4 +1,4 @@ | ||
56 | -#! /usr/bin/python | ||
57 | +#! /usr/bin/env python3 | ||
58 | |||
59 | import os.path | ||
60 | import sys | ||
61 | diff --git a/build-aux/dpdkstrip.py b/build-aux/dpdkstrip.py | ||
62 | index 48c7f06..b8b8ba9 100755 | ||
63 | --- a/build-aux/dpdkstrip.py | ||
64 | +++ b/build-aux/dpdkstrip.py | ||
65 | @@ -1,4 +1,4 @@ | ||
66 | -#! /usr/bin/env python | ||
67 | +#! /usr/bin/env python3 | ||
68 | # Copyright (c) 2017 Red Hat, Inc. | ||
69 | # | ||
70 | # Licensed under the Apache License, Version 2.0 (the "License"); | ||
71 | diff --git a/build-aux/extract-ofp-actions b/build-aux/extract-ofp-actions | ||
72 | index 64de0f3..f6bca0b 100755 | ||
73 | --- a/build-aux/extract-ofp-actions | ||
74 | +++ b/build-aux/extract-ofp-actions | ||
75 | @@ -1,4 +1,4 @@ | ||
76 | -#! /usr/bin/python | ||
77 | +#! /usr/bin/env python3 | ||
78 | |||
79 | import getopt | ||
80 | import sys | ||
81 | diff --git a/build-aux/extract-ofp-errors b/build-aux/extract-ofp-errors | ||
82 | index 6f64efd..c410fd4 100755 | ||
83 | --- a/build-aux/extract-ofp-errors | ||
84 | +++ b/build-aux/extract-ofp-errors | ||
85 | @@ -1,4 +1,4 @@ | ||
86 | -#! /usr/bin/python | ||
87 | +#! /usr/bin/env python3 | ||
88 | |||
89 | import sys | ||
90 | import os.path | ||
91 | diff --git a/build-aux/extract-ofp-fields b/build-aux/extract-ofp-fields | ||
92 | index 3592594..2fc8317 100755 | ||
93 | --- a/build-aux/extract-ofp-fields | ||
94 | +++ b/build-aux/extract-ofp-fields | ||
95 | @@ -1,4 +1,4 @@ | ||
96 | -#! /usr/bin/python | ||
97 | +#! /usr/bin/env python3 | ||
98 | |||
99 | import getopt | ||
100 | import sys | ||
101 | diff --git a/build-aux/extract-ofp-msgs b/build-aux/extract-ofp-msgs | ||
102 | index a67e870..92c4bda 100755 | ||
103 | --- a/build-aux/extract-ofp-msgs | ||
104 | +++ b/build-aux/extract-ofp-msgs | ||
105 | @@ -1,4 +1,4 @@ | ||
106 | -#! /usr/bin/python | ||
107 | +#! /usr/bin/env python3 | ||
108 | |||
109 | import sys | ||
110 | import os.path | ||
111 | diff --git a/build-aux/sodepends.py b/build-aux/sodepends.py | ||
112 | index 90cfaa0..45812bc 100755 | ||
113 | --- a/build-aux/sodepends.py | ||
114 | +++ b/build-aux/sodepends.py | ||
115 | @@ -1,4 +1,4 @@ | ||
116 | -#! /usr/bin/env python | ||
117 | +#! /usr/bin/env python3 | ||
118 | |||
119 | # Copyright (c) 2008, 2011, 2017 Nicira, Inc. | ||
120 | # | ||
121 | diff --git a/build-aux/soexpand.py b/build-aux/soexpand.py | ||
122 | index 53ca640..00adcf4 100755 | ||
123 | --- a/build-aux/soexpand.py | ||
124 | +++ b/build-aux/soexpand.py | ||
125 | @@ -1,4 +1,4 @@ | ||
126 | -#! /usr/bin/env python | ||
127 | +#! /usr/bin/env python3 | ||
128 | |||
129 | # Copyright (c) 2008, 2017 Nicira, Inc. | ||
130 | # | ||
131 | diff --git a/build-aux/text2c b/build-aux/text2c | ||
132 | index cb1f256..ab7910e 100755 | ||
133 | --- a/build-aux/text2c | ||
134 | +++ b/build-aux/text2c | ||
135 | @@ -1,4 +1,4 @@ | ||
136 | -#! /usr/bin/python | ||
137 | +#! /usr/bin/env python3 | ||
138 | |||
139 | import re | ||
140 | import sys | ||
141 | diff --git a/build-aux/xml2nroff b/build-aux/xml2nroff | ||
142 | index bd4e879..db45c56 100755 | ||
143 | --- a/build-aux/xml2nroff | ||
144 | +++ b/build-aux/xml2nroff | ||
145 | @@ -1,4 +1,4 @@ | ||
146 | -#! /usr/bin/python | ||
147 | +#! /usr/bin/env python3 | ||
148 | |||
149 | # Copyright (c) 2010, 2011, 2012, 2013, 2014, 2015, 2016 Nicira, Inc. | ||
150 | # | ||
151 | diff --git a/ovn/utilities/ovn-detrace.in b/ovn/utilities/ovn-detrace.in | ||
152 | index c842adc..9e95183 100755 | ||
153 | --- a/ovn/utilities/ovn-detrace.in | ||
154 | +++ b/ovn/utilities/ovn-detrace.in | ||
155 | @@ -1,4 +1,4 @@ | ||
156 | -#! @PYTHON@ | ||
157 | +#!/usr/bin/env @PYTHON@ | ||
158 | # | ||
159 | # Copyright (c) 2017 eBay Inc. | ||
160 | # | ||
161 | diff --git a/ovn/utilities/ovn-docker-overlay-driver.in b/ovn/utilities/ovn-docker-overlay-driver.in | ||
162 | index 65edfcd..895426b 100755 | ||
163 | --- a/ovn/utilities/ovn-docker-overlay-driver.in | ||
164 | +++ b/ovn/utilities/ovn-docker-overlay-driver.in | ||
165 | @@ -1,4 +1,4 @@ | ||
166 | -#! @PYTHON@ | ||
167 | +#!/usr/bin/env @PYTHON@ | ||
168 | # Copyright (C) 2015 Nicira, Inc. | ||
169 | # | ||
170 | # Licensed under the Apache License, Version 2.0 (the "License"); | ||
171 | diff --git a/ovn/utilities/ovn-docker-underlay-driver.in b/ovn/utilities/ovn-docker-underlay-driver.in | ||
172 | index d91ce9f..e0c8db6 100755 | ||
173 | --- a/ovn/utilities/ovn-docker-underlay-driver.in | ||
174 | +++ b/ovn/utilities/ovn-docker-underlay-driver.in | ||
175 | @@ -1,4 +1,4 @@ | ||
176 | -#! @PYTHON@ | ||
177 | +#!/usr/bin/env @PYTHON@ | ||
178 | # Copyright (C) 2015 Nicira, Inc. | ||
179 | # | ||
180 | # Licensed under the Apache License, Version 2.0 (the "License"); | ||
181 | diff --git a/ovsdb/dot2pic b/ovsdb/dot2pic | ||
182 | index de67261..174e723 100755 | ||
183 | --- a/ovsdb/dot2pic | ||
184 | +++ b/ovsdb/dot2pic | ||
185 | @@ -1,4 +1,4 @@ | ||
186 | -#! /usr/bin/env python | ||
187 | +#! /usr/bin/env python3 | ||
188 | |||
189 | # Copyright (c) 2009, 2010, 2011, 2013, 2017 Nicira, Inc. | ||
190 | # | ||
191 | diff --git a/ovsdb/ovsdb-doc b/ovsdb/ovsdb-doc | ||
192 | index 406c293..d55c6e6 100755 | ||
193 | --- a/ovsdb/ovsdb-doc | ||
194 | +++ b/ovsdb/ovsdb-doc | ||
195 | @@ -1,4 +1,4 @@ | ||
196 | -#! /usr/bin/python | ||
197 | +#! /usr/bin/env python3 | ||
198 | |||
199 | # Copyright (c) 2010, 2011, 2012, 2013, 2014, 2015 Nicira, Inc. | ||
200 | # | ||
201 | diff --git a/ovsdb/ovsdb-dot.in b/ovsdb/ovsdb-dot.in | ||
202 | index 8eea617..38ba33a 100755 | ||
203 | --- a/ovsdb/ovsdb-dot.in | ||
204 | +++ b/ovsdb/ovsdb-dot.in | ||
205 | @@ -1,4 +1,4 @@ | ||
206 | -#! @PYTHON@ | ||
207 | +#! /usr/bin/env @PYTHON@ | ||
208 | |||
209 | from datetime import date | ||
210 | import ovs.db.error | ||
211 | diff --git a/ovsdb/ovsdb-idlc.in b/ovsdb/ovsdb-idlc.in | ||
212 | index 40fef39..84c63a6 100755 | ||
213 | --- a/ovsdb/ovsdb-idlc.in | ||
214 | +++ b/ovsdb/ovsdb-idlc.in | ||
215 | @@ -1,4 +1,4 @@ | ||
216 | -#! @PYTHON@ | ||
217 | +#!/usr/bin/env @PYTHON@ | ||
218 | |||
219 | from __future__ import print_function | ||
220 | import getopt | ||
221 | diff --git a/python/build/soutil.py b/python/build/soutil.py | ||
222 | index b8027af..8f52803 100755 | ||
223 | --- a/python/build/soutil.py | ||
224 | +++ b/python/build/soutil.py | ||
225 | @@ -1,4 +1,4 @@ | ||
226 | -#! /usr/bin/env python | ||
227 | +#! /usr/bin/env python3 | ||
228 | |||
229 | # Copyright (c) 2008, 2017 Nicira, Inc. | ||
230 | # | ||
231 | diff --git a/tests/flowgen.py b/tests/flowgen.py | ||
232 | index 976fe7a..7ef32d1 100755 | ||
233 | --- a/tests/flowgen.py | ||
234 | +++ b/tests/flowgen.py | ||
235 | @@ -1,4 +1,4 @@ | ||
236 | -#! /usr/bin/env python | ||
237 | +#! /usr/bin/env python3 | ||
238 | |||
239 | # Copyright (c) 2009, 2010, 2011, 2012, 2015, 2017 Nicira, Inc. | ||
240 | # | ||
241 | diff --git a/tests/ovsdb-monitor-sort.py b/tests/ovsdb-monitor-sort.py | ||
242 | index 7d368a7..ab4c38c 100755 | ||
243 | --- a/tests/ovsdb-monitor-sort.py | ||
244 | +++ b/tests/ovsdb-monitor-sort.py | ||
245 | @@ -1,4 +1,4 @@ | ||
246 | -#! /usr/bin/env python | ||
247 | +#! /usr/bin/env python3 | ||
248 | |||
249 | # Breaks lines read from stdin into groups using blank lines as | ||
250 | # group separators, then sorts lines within the groups for | ||
251 | diff --git a/tests/uuidfilt.py b/tests/uuidfilt.py | ||
252 | index ea72812..f1a9aff 100755 | ||
253 | --- a/tests/uuidfilt.py | ||
254 | +++ b/tests/uuidfilt.py | ||
255 | @@ -1,4 +1,4 @@ | ||
256 | -#!/usr/bin/env python | ||
257 | +#!/usr/bin/env python3 | ||
258 | |||
259 | import re | ||
260 | import sys | ||
261 | diff --git a/utilities/bugtool/ovs-bugtool.in b/utilities/bugtool/ovs-bugtool.in | ||
262 | index 288c34f..b5a6906 100755 | ||
263 | --- a/utilities/bugtool/ovs-bugtool.in | ||
264 | +++ b/utilities/bugtool/ovs-bugtool.in | ||
265 | @@ -1,4 +1,4 @@ | ||
266 | -#! @PYTHON@ | ||
267 | +#! /usr/bin/env @PYTHON@ | ||
268 | |||
269 | # This library is free software; you can redistribute it and/or | ||
270 | # modify it under the terms of version 2.1 of the GNU Lesser General Public | ||
271 | diff --git a/utilities/ovs-check-dead-ifs.in b/utilities/ovs-check-dead-ifs.in | ||
272 | index ac54f6c..13d86b3 100755 | ||
273 | --- a/utilities/ovs-check-dead-ifs.in | ||
274 | +++ b/utilities/ovs-check-dead-ifs.in | ||
275 | @@ -1,4 +1,4 @@ | ||
276 | -#! @PYTHON@ | ||
277 | +#!/usr/bin/env @PYTHON@ | ||
278 | |||
279 | import os | ||
280 | import re | ||
281 | diff --git a/utilities/ovs-dpctl-top.in b/utilities/ovs-dpctl-top.in | ||
282 | index 7f0f1f8..ece707a 100755 | ||
283 | --- a/utilities/ovs-dpctl-top.in | ||
284 | +++ b/utilities/ovs-dpctl-top.in | ||
285 | @@ -1,4 +1,4 @@ | ||
286 | -#! @PYTHON@ | ||
287 | +#!/usr/bin/env @PYTHON@ | ||
288 | # | ||
289 | # Copyright (c) 2013 Nicira, Inc. | ||
290 | # | ||
291 | diff --git a/utilities/ovs-l3ping.in b/utilities/ovs-l3ping.in | ||
292 | index 1b07972..9852699 100644 | ||
293 | --- a/utilities/ovs-l3ping.in | ||
294 | +++ b/utilities/ovs-l3ping.in | ||
295 | @@ -1,4 +1,4 @@ | ||
296 | -#! @PYTHON@ | ||
297 | +#!/usr/bin/env @PYTHON@ | ||
298 | # | ||
299 | # Licensed under the Apache License, Version 2.0 (the "License"); | ||
300 | # you may not use this file except in compliance with the License. | ||
301 | diff --git a/utilities/ovs-parse-backtrace.in b/utilities/ovs-parse-backtrace.in | ||
302 | index 350cbd9..1960fb4 100755 | ||
303 | --- a/utilities/ovs-parse-backtrace.in | ||
304 | +++ b/utilities/ovs-parse-backtrace.in | ||
305 | @@ -1,4 +1,4 @@ | ||
306 | -#! @PYTHON@ | ||
307 | +#!/usr/bin/env @PYTHON@ | ||
308 | # | ||
309 | # Copyright (c) 2012 Nicira, Inc. | ||
310 | # | ||
311 | diff --git a/utilities/ovs-pcap.in b/utilities/ovs-pcap.in | ||
312 | index 7bebc07..b4e5ca8 100755 | ||
313 | --- a/utilities/ovs-pcap.in | ||
314 | +++ b/utilities/ovs-pcap.in | ||
315 | @@ -1,4 +1,4 @@ | ||
316 | -#! @PYTHON@ | ||
317 | +#!/usr/bin/env @PYTHON@ | ||
318 | # | ||
319 | # Copyright (c) 2010 Nicira, Inc. | ||
320 | # | ||
321 | diff --git a/utilities/ovs-tcpdump.in b/utilities/ovs-tcpdump.in | ||
322 | index 22f249f..ff2a51e 100755 | ||
323 | --- a/utilities/ovs-tcpdump.in | ||
324 | +++ b/utilities/ovs-tcpdump.in | ||
325 | @@ -1,4 +1,4 @@ | ||
326 | -#! @PYTHON@ | ||
327 | +#!/usr/bin/env @PYTHON@ | ||
328 | # | ||
329 | # Copyright (c) 2016 Red Hat, Inc. | ||
330 | # | ||
331 | diff --git a/utilities/ovs-tcpundump.in b/utilities/ovs-tcpundump.in | ||
332 | index c298700..0d8b8da 100755 | ||
333 | --- a/utilities/ovs-tcpundump.in | ||
334 | +++ b/utilities/ovs-tcpundump.in | ||
335 | @@ -1,4 +1,4 @@ | ||
336 | -#! @PYTHON@ | ||
337 | +#!/usr/bin/env @PYTHON@ | ||
338 | # | ||
339 | # Copyright (c) 2010 Nicira, Inc. | ||
340 | # | ||
341 | diff --git a/utilities/ovs-test.in b/utilities/ovs-test.in | ||
342 | index fb1f9ad..4dba169 100644 | ||
343 | --- a/utilities/ovs-test.in | ||
344 | +++ b/utilities/ovs-test.in | ||
345 | @@ -1,4 +1,4 @@ | ||
346 | -#! @PYTHON@ | ||
347 | +#!/usr/bin/env @PYTHON@ | ||
348 | # | ||
349 | # Licensed under the Apache License, Version 2.0 (the "License"); | ||
350 | # you may not use this file except in compliance with the License. | ||
351 | diff --git a/utilities/ovs-vlan-test.in b/utilities/ovs-vlan-test.in | ||
352 | index e229498..5b70118 100755 | ||
353 | --- a/utilities/ovs-vlan-test.in | ||
354 | +++ b/utilities/ovs-vlan-test.in | ||
355 | @@ -1,4 +1,4 @@ | ||
356 | -#! @PYTHON@ | ||
357 | +#!/usr/bin/env @PYTHON@ | ||
358 | # | ||
359 | # Copyright (c) 2010 Nicira, Inc. | ||
360 | # | ||
361 | diff --git a/vtep/ovs-vtep.in b/vtep/ovs-vtep.in | ||
362 | index 3383870..42f98db 100755 | ||
363 | --- a/vtep/ovs-vtep.in | ||
364 | +++ b/vtep/ovs-vtep.in | ||
365 | @@ -1,4 +1,4 @@ | ||
366 | -#! @PYTHON@ | ||
367 | +#!/usr/bin/env @PYTHON@ | ||
368 | # Copyright (C) 2013 Nicira, Inc. All Rights Reserved. | ||
369 | # | ||
370 | # Licensed under the Apache License, Version 2.0 (the "License"); | ||
371 | -- | ||
372 | 2.8.1 | ||
373 | |||
diff --git a/recipes-networking/openvswitch/files/python-switch-remaining-scripts-to-use-python3.patch b/recipes-networking/openvswitch/files/python-switch-remaining-scripts-to-use-python3.patch index 64e0e3f4..113bc91d 100644 --- a/recipes-networking/openvswitch/files/python-switch-remaining-scripts-to-use-python3.patch +++ b/recipes-networking/openvswitch/files/python-switch-remaining-scripts-to-use-python3.patch | |||
@@ -10,13 +10,12 @@ Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> | |||
10 | --- | 10 | --- |
11 | ofproto/ipfix-gen-entities | 2 +- | 11 | ofproto/ipfix-gen-entities | 2 +- |
12 | tests/test-l7.py | 2 +- | 12 | tests/test-l7.py | 2 +- |
13 | utilities/checkpatch.py | 2 +- | ||
14 | utilities/ovs-dev.py | 2 +- | 13 | utilities/ovs-dev.py | 2 +- |
15 | utilities/ovs-pipegen.py | 2 +- | 14 | utilities/ovs-pipegen.py | 2 +- |
16 | xenserver/etc_xapi.d_plugins_openvswitch-cfg-update | 2 +- | 15 | xenserver/etc_xapi.d_plugins_openvswitch-cfg-update | 2 +- |
17 | xenserver/opt_xensource_libexec_interface-reconfigure | 2 +- | 16 | xenserver/opt_xensource_libexec_interface-reconfigure | 2 +- |
18 | xenserver/usr_share_openvswitch_scripts_ovs-xapi-sync | 2 +- | 17 | xenserver/usr_share_openvswitch_scripts_ovs-xapi-sync | 2 +- |
19 | 8 files changed, 8 insertions(+), 8 deletions(-) | 18 | 7 files changed, 7 insertions(+), 7 deletions(-) |
20 | 19 | ||
21 | diff --git a/ofproto/ipfix-gen-entities b/ofproto/ipfix-gen-entities | 20 | diff --git a/ofproto/ipfix-gen-entities b/ofproto/ipfix-gen-entities |
22 | index 0be7199..d2cce42 100755 | 21 | index 0be7199..d2cce42 100755 |
@@ -38,16 +37,6 @@ index d7854a1..f09defb 100755 | |||
38 | # Copyright (c) 2015, 2016 Nicira, Inc. | 37 | # Copyright (c) 2015, 2016 Nicira, Inc. |
39 | # | 38 | # |
40 | # Licensed under the Apache License, Version 2.0 (the "License"); | 39 | # Licensed under the Apache License, Version 2.0 (the "License"); |
41 | diff --git a/utilities/checkpatch.py b/utilities/checkpatch.py | ||
42 | index f929714..e17a1cf 100755 | ||
43 | --- a/utilities/checkpatch.py | ||
44 | +++ b/utilities/checkpatch.py | ||
45 | @@ -1,4 +1,4 @@ | ||
46 | -#!/usr/bin/env python | ||
47 | +#!/usr/bin/env python3 | ||
48 | # Copyright (c) 2016, 2017 Red Hat, Inc. | ||
49 | # Copyright (c) 2018 Nicira, Inc. | ||
50 | # | ||
51 | diff --git a/utilities/ovs-dev.py b/utilities/ovs-dev.py | 40 | diff --git a/utilities/ovs-dev.py b/utilities/ovs-dev.py |
52 | index 9ce0f04..839e13e 100755 | 41 | index 9ce0f04..839e13e 100755 |
53 | --- a/utilities/ovs-dev.py | 42 | --- a/utilities/ovs-dev.py |