RESOLVED FIXED 211032
[Flatpak SDK] Misc flatpakutils.py fixes
https://bugs.webkit.org/show_bug.cgi?id=211032
Summary [Flatpak SDK] Misc flatpakutils.py fixes
Patrick Griffis
Reported 2020-04-25 15:11:05 PDT
Just a few fixes for issues I've hit.
Attachments
Patch (555 bytes, patch)
2020-04-25 15:12 PDT, Patrick Griffis
no flags
Patch (2.60 KB, patch)
2020-04-25 15:13 PDT, Patrick Griffis
no flags
Patch (3.82 KB, patch)
2020-04-25 15:35 PDT, Patrick Griffis
no flags
Patch (3.88 KB, patch)
2020-04-25 15:59 PDT, Patrick Griffis
no flags
Patch (3.84 KB, patch)
2020-04-26 11:48 PDT, Patrick Griffis
no flags
Patch (6.36 KB, patch)
2020-05-02 17:46 PDT, Patrick Griffis
no flags
Patch (6.36 KB, patch)
2020-05-03 13:34 PDT, Patrick Griffis
no flags
Patrick Griffis
Comment 1 2020-04-25 15:12:10 PDT
Patrick Griffis
Comment 2 2020-04-25 15:13:38 PDT
Patrick Griffis
Comment 3 2020-04-25 15:35:46 PDT
Patrick Griffis
Comment 4 2020-04-25 15:59:17 PDT
Patrick Griffis
Comment 5 2020-04-26 11:48:45 PDT
Philippe Normand
Comment 6 2020-04-27 02:20:25 PDT
ERROR: Tools/flatpak/flatpakutils.py:131: [flatpak_check_output] Module 'subprocess' has no 'run' member [pylint/E1101] [5]
Lauro Moura
Comment 7 2020-04-29 04:01:47 PDT
(In reply to Philippe Normand from comment #6) > ERROR: Tools/flatpak/flatpakutils.py:131: [flatpak_check_output] Module > 'subprocess' has no 'run' member [pylint/E1101] [5] subprocess.run was added in Python 3.5, per https://docs.python.org/3/library/subprocess.html#subprocess.run Use the old Popen instead?
Adrian Perez
Comment 8 2020-05-01 07:08:24 PDT
(In reply to Lauro Moura from comment #7) > (In reply to Philippe Normand from comment #6) > > ERROR: Tools/flatpak/flatpakutils.py:131: [flatpak_check_output] Module > > 'subprocess' has no 'run' member [pylint/E1101] [5] > > subprocess.run was added in Python 3.5, per > https://docs.python.org/3/library/subprocess.html#subprocess.run > > Use the old Popen instead? Do we want to support Python 3 versions older than 3.5? I say no because: - Even Debian's “oldstable” has 3.5 - 3.5 is considered one of the first Python 3 versions which are actually really usable (all is rosy with 3.6 or newer). - Support for 3.5 will end on 2020-09-13 Instead, I would figure out the issue with Pylint and keep using “subprocess.run()”.
Lauro Moura
Comment 9 2020-05-01 08:04:34 PDT
(In reply to Adrian Perez from comment #8) > (In reply to Lauro Moura from comment #7) > > (In reply to Philippe Normand from comment #6) > > > ERROR: Tools/flatpak/flatpakutils.py:131: [flatpak_check_output] Module > > > 'subprocess' has no 'run' member [pylint/E1101] [5] > > > > subprocess.run was added in Python 3.5, per > > https://docs.python.org/3/library/subprocess.html#subprocess.run > > > > Use the old Popen instead? > > Do we want to support Python 3 versions older than 3.5? I say no because: > > - Even Debian's “oldstable” has 3.5 > - 3.5 is considered one of the first Python 3 versions which are > actually really usable (all is rosy with 3.6 or newer). > - Support for 3.5 will end on 2020-09-13 > > Instead, I would figure out the issue with Pylint and keep using > “subprocess.run()”. The issue would not be with Python3 itself, but with Python2. Don't we still need to support both versions in webkitpy? (subprocess.run is not available in python2: https://docs.python.org/2/library/subprocess.html )
Philippe Normand
Comment 10 2020-05-01 08:38:14 PDT
Right, webkitpy is not yet fully ported to Python3.
Patrick Griffis
Comment 11 2020-05-02 17:46:09 PDT
Philippe Normand
Comment 12 2020-05-03 01:29:38 PDT
Comment on attachment 398300 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=398300&action=review > Tools/flatpak/flatpakutils.py:845 > + icc_version_filename, = re.findall(rb'.*creating (.*)', tmpfile.read()) Breaks EWS: Traceback (most recent call last): File "Tools/Scripts/update-webkit-flatpak", line 25, in <module> from flatpakutils import WebkitFlatpak File "./Tools/flatpak/flatpakutils.py", line 851 icc_version_filename, = re.findall(rb'.*creating (.*)', tmpfile.read()) ^ SyntaxError: invalid syntax
Patrick Griffis
Comment 13 2020-05-03 13:34:18 PDT
EWS
Comment 14 2020-05-04 00:07:37 PDT
Committed r261072: <https://trac.webkit.org/changeset/261072> All reviewed patches have been landed. Closing bug and clearing flags on attachment 398328 [details].
Note You need to log in before you can comment on or make changes to this bug.