Accepting request 1042980 from home:dimstar:Factory
- Add upstream patch b7ac5d0c.patch: Fix build with Ruby 3.2. OBS-URL: https://build.opensuse.org/request/show/1042980 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/webkit2gtk3?expand=0&rev=374
This commit is contained in:
parent
ab1ba20390
commit
57044ad81a
82
b7ac5d0c.patch
Normal file
82
b7ac5d0c.patch
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
From b7ac5d0ccc7ca3ed6bf4f2d40fde60247ce87d3c Mon Sep 17 00:00:00 2001
|
||||||
|
From: Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
Date: Mon, 12 Dec 2022 21:24:11 -0800
|
||||||
|
Subject: [PATCH] Fix build with Ruby 3.2
|
||||||
|
https://bugs.webkit.org/show_bug.cgi?id=246743
|
||||||
|
|
||||||
|
Reviewed by Ross Kirsling.
|
||||||
|
|
||||||
|
File.exists has been declared deprecated since Ruby 2.1 (2013) and with Ruby 3.2 gets removed for good.
|
||||||
|
|
||||||
|
* Source/JavaScriptCore/offlineasm/config.rb:
|
||||||
|
* Source/JavaScriptCore/offlineasm/parser.rb:
|
||||||
|
* Source/WebInspectorUI/Scripts/update-LegacyInspectorBackendCommands.rb:
|
||||||
|
|
||||||
|
Canonical link: https://commits.webkit.org/257775@main
|
||||||
|
---
|
||||||
|
Source/JavaScriptCore/offlineasm/config.rb | 4 ++--
|
||||||
|
Source/JavaScriptCore/offlineasm/parser.rb | 8 ++++----
|
||||||
|
.../Scripts/update-LegacyInspectorBackendCommands.rb | 2 +-
|
||||||
|
3 files changed, 7 insertions(+), 7 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/Source/JavaScriptCore/offlineasm/config.rb b/Source/JavaScriptCore/offlineasm/config.rb
|
||||||
|
index ba0043119f32..7811626db5e5 100644
|
||||||
|
--- a/Source/JavaScriptCore/offlineasm/config.rb
|
||||||
|
+++ b/Source/JavaScriptCore/offlineasm/config.rb
|
||||||
|
@@ -23,11 +23,11 @@
|
||||||
|
|
||||||
|
buildProductsDirectory = ENV['BUILT_PRODUCTS_DIR'];
|
||||||
|
headersFolderPath = ENV['WK_LIBRARY_HEADERS_FOLDER_PATH'];
|
||||||
|
-if buildProductsDirectory and File.exists?(buildProductsDirectory)
|
||||||
|
+if buildProductsDirectory and File.exist?(buildProductsDirectory)
|
||||||
|
$: << "#{buildProductsDirectory}#{headersFolderPath}/WebKitAdditions/Scripts"
|
||||||
|
end
|
||||||
|
sdkRootDirectory = ENV['SDKROOT'];
|
||||||
|
-if sdkRootDirectory and File.exists?(sdkRootDirectory)
|
||||||
|
+if sdkRootDirectory and File.exist?(sdkRootDirectory)
|
||||||
|
$: << "#{sdkRootDirectory}#{headersFolderPath}/WebKitAdditions/Scripts"
|
||||||
|
end
|
||||||
|
|
||||||
|
diff --git a/Source/JavaScriptCore/offlineasm/parser.rb b/Source/JavaScriptCore/offlineasm/parser.rb
|
||||||
|
index 12a22b5cc819..07e38b63972b 100644
|
||||||
|
--- a/Source/JavaScriptCore/offlineasm/parser.rb
|
||||||
|
+++ b/Source/JavaScriptCore/offlineasm/parser.rb
|
||||||
|
@@ -840,10 +840,10 @@ def parseSequence(final, comment)
|
||||||
|
additionsDirectoryName = "#{@buildProductsDirectory}#{@headersFolderPath}/WebKitAdditions/"
|
||||||
|
end
|
||||||
|
fileName = IncludeFile.new(moduleName, additionsDirectoryName).fileName
|
||||||
|
- if not File.exists?(fileName)
|
||||||
|
+ if not File.exist?(fileName)
|
||||||
|
fileName = IncludeFile.new(moduleName, @tokens[@idx].codeOrigin.fileName.dirname).fileName
|
||||||
|
end
|
||||||
|
- fileExists = File.exists?(fileName)
|
||||||
|
+ fileExists = File.exist?(fileName)
|
||||||
|
raise "File not found: #{fileName}" if not fileExists and not isOptional
|
||||||
|
list << parse(fileName, @options, @sources) if fileExists
|
||||||
|
else
|
||||||
|
@@ -876,10 +876,10 @@ def parseIncludes(final, comment, options)
|
||||||
|
additionsDirectoryName = "#{@buildProductsDirectory}#{@headersFolderPath}/WebKitAdditions/"
|
||||||
|
end
|
||||||
|
fileName = IncludeFile.new(moduleName, additionsDirectoryName).fileName
|
||||||
|
- if not File.exists?(fileName)
|
||||||
|
+ if not File.exist?(fileName)
|
||||||
|
fileName = IncludeFile.new(moduleName, @tokens[@idx].codeOrigin.fileName.dirname).fileName
|
||||||
|
end
|
||||||
|
- fileExists = File.exists?(fileName)
|
||||||
|
+ fileExists = File.exist?(fileName)
|
||||||
|
raise "File not found: #{fileName}" if not fileExists and not isOptional
|
||||||
|
if fileExists
|
||||||
|
parser = Parser.new(readTextFile(fileName), SourceFile.new(fileName), options)
|
||||||
|
diff --git a/Source/WebInspectorUI/Scripts/update-LegacyInspectorBackendCommands.rb b/Source/WebInspectorUI/Scripts/update-LegacyInspectorBackendCommands.rb
|
||||||
|
index 680dee7406d1..40737afaa4c5 100755
|
||||||
|
--- a/Source/WebInspectorUI/Scripts/update-LegacyInspectorBackendCommands.rb
|
||||||
|
+++ b/Source/WebInspectorUI/Scripts/update-LegacyInspectorBackendCommands.rb
|
||||||
|
@@ -36,7 +36,7 @@ def run
|
||||||
|
end
|
||||||
|
|
||||||
|
generated_path = File.join tmpdir, output_filename
|
||||||
|
- if !File.exists?(generated_path)
|
||||||
|
+ if !File.exist?(generated_path)
|
||||||
|
puts "ERROR: Generated file does not exist at expected path."
|
||||||
|
exit 1
|
||||||
|
end
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 14 16:45:15 UTC 2022 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
|
||||||
|
- Add upstream patch b7ac5d0c.patch: Fix build with Ruby 3.2.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Nov 17 13:29:15 UTC 2022 - Guillaume GARDET <guillaume.gardet@opensuse.org>
|
Thu Nov 17 13:29:15 UTC 2022 - Guillaume GARDET <guillaume.gardet@opensuse.org>
|
||||||
|
|
||||||
|
@ -83,6 +83,8 @@ Source99: webkit2gtk3.keyring
|
|||||||
|
|
||||||
# PATCH-FIX-OPENSUSE no-forced-sse.patch jengelh@iani.de -- cure execution of illegal instruction in i586 webkit
|
# PATCH-FIX-OPENSUSE no-forced-sse.patch jengelh@iani.de -- cure execution of illegal instruction in i586 webkit
|
||||||
Patch0: no-forced-sse.patch
|
Patch0: no-forced-sse.patch
|
||||||
|
# PATCH-FIX-UPSTREAM b7ac5d0c.patch dimstar@opensuse.org -- Fix build with Ruby 3.2
|
||||||
|
Patch1: https://github.com/WebKit/WebKit/commit/b7ac5d0c.patch
|
||||||
|
|
||||||
BuildRequires: Mesa-libEGL-devel
|
BuildRequires: Mesa-libEGL-devel
|
||||||
BuildRequires: Mesa-libGL-devel
|
BuildRequires: Mesa-libGL-devel
|
||||||
|
Loading…
x
Reference in New Issue
Block a user