File: 0002-Remove-snakeyaml-hardcoded-versions.patch

package info (click to toggle)
ruby-psych 5.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 864 kB
  • sloc: ruby: 7,947; ansic: 925; java: 846; makefile: 14; sh: 4
file content (19 lines) | stat: -rw-r--r-- 484 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
From: Lucas Kanashiro <lucas.kanashiro@collabora.com>
Date: Wed, 27 Feb 2019 15:39:56 -0300
Subject: Remove snakeyaml hardcoded versions
Forwarded: not-needed

---
 lib/psych/versions.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/lib/psych/versions.rb
+++ b/lib/psych/versions.rb
@@ -5,6 +5,6 @@ module Psych
   VERSION = '5.3.1'
 
   if RUBY_ENGINE == 'jruby'
-    DEFAULT_SNAKEYAML_VERSION = '2.10'.freeze
+    DEFAULT_SNAKEYAML_VERSION = '2.x'.freeze
   end
 end