diff options
author | Zach van Rijn <me@zv.io> | 2024-12-10 13:17:46 +0000 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2024-12-10 13:17:46 +0000 |
commit | 9658dc567290a6251d84fb072a6ca77c9fb55a2c (patch) | |
tree | c8772d3a52b8162cdfb3a8a083a15d4be86565ba /user/qt5-qtwebkit/webkit-offlineasm-warnings-ruby27.patch | |
parent | effed51e051c011a7941a1cd990ffea76cfe2117 (diff) | |
download | packages-9658dc567290a6251d84fb072a6ca77c9fb55a2c.tar.gz packages-9658dc567290a6251d84fb072a6ca77c9fb55a2c.tar.bz2 packages-9658dc567290a6251d84fb072a6ca77c9fb55a2c.tar.xz packages-9658dc567290a6251d84fb072a6ca77c9fb55a2c.zip |
user/qt5-qtwebkit: add patch for ruby. fixes #1293.
Diffstat (limited to 'user/qt5-qtwebkit/webkit-offlineasm-warnings-ruby27.patch')
-rw-r--r-- | user/qt5-qtwebkit/webkit-offlineasm-warnings-ruby27.patch | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/user/qt5-qtwebkit/webkit-offlineasm-warnings-ruby27.patch b/user/qt5-qtwebkit/webkit-offlineasm-warnings-ruby27.patch new file mode 100644 index 000000000..d25c3b1d6 --- /dev/null +++ b/user/qt5-qtwebkit/webkit-offlineasm-warnings-ruby27.patch @@ -0,0 +1,46 @@ +From c7d19a492d97f9282a546831beb918e03315f6ef Mon Sep 17 00:00:00 2001 +From: Adrian Perez de Castro <aperez@igalia.com> +Date: Wed, 15 Jan 2020 22:15:38 +0000 +Subject: [PATCH] Offlineasm warnings with newer Ruby versions + https://bugs.webkit.org/show_bug.cgi?id=206233 + +Reviewed by Yusuke Suzuki. + +Avoid a warning about using Object#=~ on Annotation instances, which +has been deprecated in Ruby 2.7. + +* offlineasm/parser.rb: Swap checks to prevent applying the =~ operator +to Annotation instances, which do not define it. + + +Canonical link: https://commits.webkit.org/219400@main +git-svn-id: https://svn.webkit.org/repository/webkit/trunk@254637 268f45cc-cd09-0410-ab3c-d52691b4dbfc +--- + Source/JavaScriptCore/ChangeLog | 13 +++++++++++++ + Source/JavaScriptCore/offlineasm/parser.rb | 6 +++--- + 2 files changed, 16 insertions(+), 3 deletions(-) + +diff --git a/Source/JavaScriptCore/offlineasm/parser.rb b/Source/JavaScriptCore/offlineasm/parser.rb +index 791c81a9868d..f14c873e2dbd 100644 +--- a/Source/JavaScriptCore/offlineasm/parser.rb ++++ b/Source/JavaScriptCore/offlineasm/parser.rb +@@ -628,9 +628,7 @@ def parseSequence(final, comment) + firstCodeOrigin = @tokens[@idx].codeOrigin + list = [] + loop { +- if (@idx == @tokens.length and not final) or (final and @tokens[@idx] =~ final) +- break +- elsif @tokens[@idx].is_a? Annotation ++ if @tokens[@idx].is_a? Annotation + # This is the only place where we can encounter a global + # annotation, and hence need to be able to distinguish between + # them. +@@ -644,6 +642,8 @@ def parseSequence(final, comment) + list << Instruction.new(codeOrigin, annotationOpcode, [], @tokens[@idx].string) + @annotation = nil + @idx += 2 # Consume the newline as well. ++ elsif (@idx == @tokens.length and not final) or (final and @tokens[@idx] =~ final) ++ break + elsif @tokens[@idx] == "\n" + # ignore + @idx += 1 |