diff options
Diffstat (limited to 'dev-ruby/kpeg/files')
-rw-r--r-- | dev-ruby/kpeg/files/kpeg-1.1.0-utf8.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/dev-ruby/kpeg/files/kpeg-1.1.0-utf8.patch b/dev-ruby/kpeg/files/kpeg-1.1.0-utf8.patch new file mode 100644 index 000000000000..1b565c466c2d --- /dev/null +++ b/dev-ruby/kpeg/files/kpeg-1.1.0-utf8.patch @@ -0,0 +1,17 @@ +Ensure proper encoding in non-UTF-8 locales. + +https://bugs.gentoo.org/640150 + +--- a/lib/kpeg/grammar.rb.orig 2018-05-20 09:26:13.597648830 +0200 ++++ b/lib/kpeg/grammar.rb 2018-05-20 09:28:19.606460712 +0200 +@@ -130,6 +130,10 @@ + end + end + ++ if reg =~ /\{[LMNPSZC][c-u]?\}/ && reg.encoding != Encoding::UTF_8 ++ reg.force_encoding('UTF-8') ++ end ++ + @regexp = Regexp.new(reg, flags, lang) + else + @regexp = reg |