support: utils: use python3 explicitly

Python 2 is EOL sice 2020 [1], it's still available on distros, but may not
be installed by default (as being replaced by python3).

Thus remove compatibility imports:
from __future__ import print_function
from __future__ import absolute_import

Tested with python3 -m py_compile.

[1] https://www.python.org/doc/sunset-python-2/

Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
Petr Vorel 2021-09-21 23:04:37 +02:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent cb18218ad1
commit 35f15db30a
12 changed files with 11 additions and 17 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# Copyright (C) 2009 by Thomas Petazzoni <thomas.petazzoni@free-electrons.com> # Copyright (C) 2009 by Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
# Copyright (C) 2020 by Gregory CLEMENT <gregory.clement@bootlin.com> # Copyright (C) 2020 by Gregory CLEMENT <gregory.clement@bootlin.com>

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# Copyright (C) 2011 by Thomas Petazzoni <thomas.petazzoni@free-electrons.com> # Copyright (C) 2011 by Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
# Copyright (C) 2013 by Yann E. MORIN <yann.morin.1998@free.fr> # Copyright (C) 2013 by Yann E. MORIN <yann.morin.1998@free.fr>

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# Usage (the graphviz package must be installed in your distribution) # Usage (the graphviz package must be installed in your distribution)
# ./support/scripts/graph-depends [-p package-name] > test.dot # ./support/scripts/graph-depends [-p package-name] > test.dot

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
""" """
Byte compile all .py files from provided directories. This script is an Byte compile all .py files from provided directories. This script is an
@ -6,8 +6,6 @@ alternative implementation of compileall.compile_dir written with
cross-compilation in mind. cross-compilation in mind.
""" """
from __future__ import print_function
import argparse import argparse
import os import os
import py_compile import py_compile

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# Copyright (C) 2014 by Thomas Petazzoni <thomas.petazzoni@free-electrons.com> # Copyright (C) 2014 by Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
"""A simple test that uses gst1-python to run a fake videotestsrc for 100 """A simple test that uses gst1-python to run a fake videotestsrc for 100
frames frames
""" """

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
"""A simple test that uses python-gobject to find the path of sh.""" """A simple test that uses python-gobject to find the path of sh."""
from gi.repository import GLib from gi.repository import GLib

View File

@ -1,7 +1,6 @@
#!/usr/bin/env python #!/usr/bin/env python3
# See utils/checkpackagelib/readme.txt before editing this file. # See utils/checkpackagelib/readme.txt before editing this file.
from __future__ import print_function
import argparse import argparse
import inspect import inspect
import os import os

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# Copyright (C) 2014 by Thomas Petazzoni <thomas.petazzoni@free-electrons.com> # Copyright (C) 2014 by Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
# #
@ -18,8 +18,6 @@
# This script generates a random configuration for testing Buildroot. # This script generates a random configuration for testing Buildroot.
from __future__ import print_function
import contextlib import contextlib
import csv import csv
import os import os

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
import argparse import argparse
import getdeveloperlib import getdeveloperlib

View File

@ -1,4 +1,3 @@
from __future__ import print_function
from io import open from io import open
import os import os
import re import re

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
# Copyright (C) 2016 Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> # Copyright (C) 2016 Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>