summaryrefslogtreecommitdiffstats
path: root/recipes-networking/openvswitch/files/python-make-remaining-scripts-use-usr-bin-env.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-networking/openvswitch/files/python-make-remaining-scripts-use-usr-bin-env.patch')
-rw-r--r--recipes-networking/openvswitch/files/python-make-remaining-scripts-use-usr-bin-env.patch373
1 files changed, 0 insertions, 373 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 @@
1From a348e0162343f7d46443eb1fd2bcf0698460a780 Mon Sep 17 00:00:00 2001
2From: "Hongzhi.Song" <hongzhi.song@windriver.com>
3Date: Wed, 23 Jan 2019 04:28:28 -0500
4Subject: [PATCH] python: make remaining scripts use /usr/bin/env
5
6Unfortunately there is no concept of a host python vs. target python
7to facilitate cross compilation. There is only one PYTHON variable and
8this is used during building and in the header of python scripts after
9installation. The best approach for cross compilation is to thus to
10ensure python is in the path and avoid passing a path as part of
11PYTHON. To make this function smoothly all installed scripts should
12make use of /usr/bin/env to increase the chances of finding python.
13
14Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
15Signed-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
51diff --git a/build-aux/check-structs b/build-aux/check-structs
52index 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
61diff --git a/build-aux/dpdkstrip.py b/build-aux/dpdkstrip.py
62index 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");
71diff --git a/build-aux/extract-ofp-actions b/build-aux/extract-ofp-actions
72index 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
81diff --git a/build-aux/extract-ofp-errors b/build-aux/extract-ofp-errors
82index 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
91diff --git a/build-aux/extract-ofp-fields b/build-aux/extract-ofp-fields
92index 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
101diff --git a/build-aux/extract-ofp-msgs b/build-aux/extract-ofp-msgs
102index 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
111diff --git a/build-aux/sodepends.py b/build-aux/sodepends.py
112index 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 #
121diff --git a/build-aux/soexpand.py b/build-aux/soexpand.py
122index 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 #
131diff --git a/build-aux/text2c b/build-aux/text2c
132index 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
141diff --git a/build-aux/xml2nroff b/build-aux/xml2nroff
142index 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 #
151diff --git a/ovn/utilities/ovn-detrace.in b/ovn/utilities/ovn-detrace.in
152index 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 #
161diff --git a/ovn/utilities/ovn-docker-overlay-driver.in b/ovn/utilities/ovn-docker-overlay-driver.in
162index 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");
171diff --git a/ovn/utilities/ovn-docker-underlay-driver.in b/ovn/utilities/ovn-docker-underlay-driver.in
172index 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");
181diff --git a/ovsdb/dot2pic b/ovsdb/dot2pic
182index 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 #
191diff --git a/ovsdb/ovsdb-doc b/ovsdb/ovsdb-doc
192index 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 #
201diff --git a/ovsdb/ovsdb-dot.in b/ovsdb/ovsdb-dot.in
202index 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
211diff --git a/ovsdb/ovsdb-idlc.in b/ovsdb/ovsdb-idlc.in
212index 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
221diff --git a/python/build/soutil.py b/python/build/soutil.py
222index 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 #
231diff --git a/tests/flowgen.py b/tests/flowgen.py
232index 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 #
241diff --git a/tests/ovsdb-monitor-sort.py b/tests/ovsdb-monitor-sort.py
242index 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
251diff --git a/tests/uuidfilt.py b/tests/uuidfilt.py
252index 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
261diff --git a/utilities/bugtool/ovs-bugtool.in b/utilities/bugtool/ovs-bugtool.in
262index 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
271diff --git a/utilities/ovs-check-dead-ifs.in b/utilities/ovs-check-dead-ifs.in
272index 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
281diff --git a/utilities/ovs-dpctl-top.in b/utilities/ovs-dpctl-top.in
282index 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 #
291diff --git a/utilities/ovs-l3ping.in b/utilities/ovs-l3ping.in
292index 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.
301diff --git a/utilities/ovs-parse-backtrace.in b/utilities/ovs-parse-backtrace.in
302index 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 #
311diff --git a/utilities/ovs-pcap.in b/utilities/ovs-pcap.in
312index 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 #
321diff --git a/utilities/ovs-tcpdump.in b/utilities/ovs-tcpdump.in
322index 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 #
331diff --git a/utilities/ovs-tcpundump.in b/utilities/ovs-tcpundump.in
332index 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 #
341diff --git a/utilities/ovs-test.in b/utilities/ovs-test.in
342index 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.
351diff --git a/utilities/ovs-vlan-test.in b/utilities/ovs-vlan-test.in
352index 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 #
361diff --git a/vtep/ovs-vtep.in b/vtep/ovs-vtep.in
362index 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--
3722.8.1
373