Title: [259948] releases/WebKitGTK/webkit-2.28/Tools
Revision
259948
Author
[email protected]
Date
2020-04-12 06:03:02 -0700 (Sun, 12 Apr 2020)

Log Message

Merge r258328 - [GTK] Use #!/usr/bin/python3 shebang to run generate-gtkdoc
https://bugs.webkit.org/show_bug.cgi?id=208970

Patch by Michael Catanzaro <[email protected]> on 2020-03-12
Reviewed by Daniel Bates.

Fedora and Ubuntu are both patching generate-gtkdoc to use #!/usr/bin/python3 rather than

probably has similar rules.

Note this is the only script that attempts to use /usr/bin/python in tarball builds.
Everything else that does so is probably only used by webkit-build.

https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_multiple_python_runtimes

* gtkdoc/generate-gtkdoc:

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.28/Tools/ChangeLog (259947 => 259948)


--- releases/WebKitGTK/webkit-2.28/Tools/ChangeLog	2020-04-12 13:02:59 UTC (rev 259947)
+++ releases/WebKitGTK/webkit-2.28/Tools/ChangeLog	2020-04-12 13:03:02 UTC (rev 259948)
@@ -1,3 +1,23 @@
+2020-03-12  Michael Catanzaro  <[email protected]>
+
+        [GTK] Use #!/usr/bin/python3 shebang to run generate-gtkdoc
+        https://bugs.webkit.org/show_bug.cgi?id=208970
+
+        Reviewed by Daniel Bates.
+
+        Fedora and Ubuntu are both patching generate-gtkdoc to use #!/usr/bin/python3 rather than
+        #!/usr/bin/env python.
+
+        #!/usr/bin/env and /usr/bin/python are both banned in Fedora packages. I guess Ubuntu
+        probably has similar rules.
+
+        Note this is the only script that attempts to use /usr/bin/python in tarball builds.
+        Everything else that does so is probably only used by webkit-build.
+
+        https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_multiple_python_runtimes
+
+        * gtkdoc/generate-gtkdoc:
+
 2020-03-09  Carlos Garcia Campos  <[email protected]>
 
         [GTK][WPE] Surrounding text for input methods should not be limited to the current paragraph

Modified: releases/WebKitGTK/webkit-2.28/Tools/gtkdoc/generate-gtkdoc (259947 => 259948)


--- releases/WebKitGTK/webkit-2.28/Tools/gtkdoc/generate-gtkdoc	2020-04-12 13:02:59 UTC (rev 259947)
+++ releases/WebKitGTK/webkit-2.28/Tools/gtkdoc/generate-gtkdoc	2020-04-12 13:03:02 UTC (rev 259948)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
 # Copyright (C) 2011 Igalia S.L.
 #
 # This library is free software; you can redistribute it and/or
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to