[DRE-commits] [ruby-pygments.rb] 03/07: refresh patches
Cédric Boutillier
boutil at moszumanska.debian.org
Fri Sep 29 22:19:54 UTC 2017
This is an automated email from the git hooks/post-receive script.
boutil pushed a commit to branch master
in repository ruby-pygments.rb.
commit 945c66142fb4902f3b9a505afc93ac049e8af198
Author: Cédric Boutillier <boutil at debian.org>
Date: Fri Sep 29 22:34:41 2017 +0200
refresh patches
---
.../patches/0001-Remove-gemspec-git-ls-files.patch | 22 +++++----
...PYGMENTS_PATH-and-remove-sys.path-appends.patch | 25 +++++-----
.../0003-Conditional-use-of-lexers-file-path.patch | 16 ++++---
.../0004-Remove-unshipped-custom-lexers.patch | 13 +++--
.../patches/0005-Use-proper-python-shebang.patch | 10 +++-
.../0006-Invoke-mentos-directly-on-GNU-Linux.patch | 31 ++++--------
debian/patches/0007-Update-test-result.patch | 39 ---------------
...07-no-relative-path-for-require-in-tests.patch} | 8 ++--
...t-reasonable-upper-limit-to-RLIMIT_NOFILE.patch | 28 +++++++++++
debian/patches/0008-fix_test_pygments.patch | 55 ----------------------
debian/patches/0009-adapt-to-new-pygments.patch | 42 -----------------
debian/patches/series | 6 +--
12 files changed, 96 insertions(+), 199 deletions(-)
diff --git a/debian/patches/0001-Remove-gemspec-git-ls-files.patch b/debian/patches/0001-Remove-gemspec-git-ls-files.patch
index 3fe1071..c3e8f32 100644
--- a/debian/patches/0001-Remove-gemspec-git-ls-files.patch
+++ b/debian/patches/0001-Remove-gemspec-git-ls-files.patch
@@ -1,12 +1,14 @@
-Description:Remove gemspec git ls files.patch
- Removed call to 'git ls-files' from gem spec.
- Use also a require without path to load the version number
-Subject:Remove gemspec git ls-files
-From:Per Andersson <avtobiff at gmail.com>
+From: Debian Ruby Extras Maintainers
+ <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
+Date: Fri, 29 Sep 2017 22:48:27 +0200
+Subject: Remove-gemspec-git-ls-files
+
---
- pygments.rb.gemspec | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
+ pygments.rb.gemspec | 8 ++++++--
+ 1 file changed, 6 insertions(+), 2 deletions(-)
+diff --git a/pygments.rb.gemspec b/pygments.rb.gemspec
+index 4a7cac2..99e01a6 100644
--- a/pygments.rb.gemspec
+++ b/pygments.rb.gemspec
@@ -1,4 +1,8 @@
@@ -19,10 +21,10 @@ From:Per Andersson <avtobiff at gmail.com>
Gem::Specification.new do |s|
s.name = 'pygments.rb'
-@@ -21,5 +25,5 @@
+@@ -21,5 +25,5 @@ Gem::Specification.new do |s|
# s.extensions = ['ext/extconf.rb']
s.require_paths = ['lib']
-- s.files = `git ls-files`.split("\n")
-+# s.files = `git ls-files`.split("\n")
+- s.files = `git ls-files`.split("\n").select { |f| !File.symlink?(f) }
++ #s.files = `git ls-files`.split("\n").select { |f| !File.symlink?(f) }
end
diff --git a/debian/patches/0002-Don-t-set-PYGMENTS_PATH-and-remove-sys.path-appends.patch b/debian/patches/0002-Don-t-set-PYGMENTS_PATH-and-remove-sys.path-appends.patch
index 34df25c..07fccc9 100644
--- a/debian/patches/0002-Don-t-set-PYGMENTS_PATH-and-remove-sys.path-appends.patch
+++ b/debian/patches/0002-Don-t-set-PYGMENTS_PATH-and-remove-sys.path-appends.patch
@@ -1,10 +1,11 @@
-Description:use pygments provided by Debian
- Don t set PYGMENTS_PATH and remove sys.path appends.patch
-Subject:Don't set PYGMENTS_PATH and remove sys.path appends
-From:Per Andersson <avtobiff at gmail.com>
+From: Debian Ruby Extras Maintainers
+ <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
+Date: Fri, 29 Sep 2017 22:48:27 +0200
+Subject: Don-t-set-PYGMENTS_PATH-and-remove-sys.path-appends
+
---
- lib/pygments/mentos.py | 15 ++++++++-------
- lib/pygments/popen.rb | 5 +++--
+ lib/pygments/mentos.py | 15 ++++++++-------
+ lib/pygments/popen.rb | 5 +++--
2 files changed, 11 insertions(+), 9 deletions(-)
diff --git a/lib/pygments/mentos.py b/lib/pygments/mentos.py
@@ -36,20 +37,20 @@ index c0d6e88..7ee74a9 100755
import pygments
from pygments import lexers, formatters, styles, filters
diff --git a/lib/pygments/popen.rb b/lib/pygments/popen.rb
-index 1bb2c06..cc7ac8b 100644
+index 59942a7..298842e 100644
--- a/lib/pygments/popen.rb
+++ b/lib/pygments/popen.rb
-@@ -19,7 +19,7 @@ module Pygments
+@@ -24,7 +24,7 @@ module Pygments
# Get things started by opening a pipe to mentos (the freshmaker), a
# Python process that talks to the Pygments library. We'll talk back and
# forth across this pipe.
- def start(pygments_path = File.expand_path('../../../vendor/pygments-main/', __FILE__))
+ def start #(pygments_path = File.expand_path('../../../vendor/pygments-main/', __FILE__))
- is_windows = RUBY_PLATFORM =~ /mswin|mingw/
begin
- @log = Logger.new(ENV['MENTOS_LOG'] ||= is_windows ? 'NUL:' : '/dev/null')
-@@ -29,7 +29,8 @@ module Pygments
- @log = Logger.new(is_windows ? 'NUL:' : '/dev/null')
+ @log = Logger.new(ENV['MENTOS_LOG'] ||= File::NULL)
+ @log.level = Logger::INFO
+@@ -33,7 +33,8 @@ module Pygments
+ @log = Logger.new(File::NULL)
end
- ENV['PYGMENTS_PATH'] = pygments_path
diff --git a/debian/patches/0003-Conditional-use-of-lexers-file-path.patch b/debian/patches/0003-Conditional-use-of-lexers-file-path.patch
index 73f6901..d77996e 100644
--- a/debian/patches/0003-Conditional-use-of-lexers-file-path.patch
+++ b/debian/patches/0003-Conditional-use-of-lexers-file-path.patch
@@ -1,14 +1,18 @@
-Description:0003 Conditional use of lexers file path.patch
-Subject:Conditional use of lexers file pathUse upstream file path during build, use shipped file once installed.
-From:Per Andersson <avtobiff at gmail.com>
+From: Debian Ruby Extras Maintainers
+ <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
+Date: Fri, 29 Sep 2017 22:48:27 +0200
+Subject: Conditional-use-of-lexers-file-path
+
---
- lib/pygments/popen.rb | 5 ++++-
+ lib/pygments/popen.rb | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
+diff --git a/lib/pygments/popen.rb b/lib/pygments/popen.rb
+index 298842e..3e43138 100644
--- a/lib/pygments/popen.rb
+++ b/lib/pygments/popen.rb
-@@ -131,7 +131,10 @@
- # Returns an array of lexers
+@@ -149,7 +149,10 @@ module Pygments
+ # Returns an array of lexers.
def lexers
begin
- lexer_file = File.expand_path('../../../lexers', __FILE__)
diff --git a/debian/patches/0004-Remove-unshipped-custom-lexers.patch b/debian/patches/0004-Remove-unshipped-custom-lexers.patch
index 1cdffa8..5d5f25c 100644
--- a/debian/patches/0004-Remove-unshipped-custom-lexers.patch
+++ b/debian/patches/0004-Remove-unshipped-custom-lexers.patch
@@ -1,9 +1,16 @@
-Description: Remove unshipped custom lexers
-Subject: Remove unshipped custom lexers
From: Per Andersson <avtobiff at gmail.com>
+Date: Fri, 29 Sep 2017 22:48:27 +0200
+Subject: Remove unshipped custom lexers
+
+---
+ lib/pygments/popen.rb | 10 +++++-----
+ 1 file changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/lib/pygments/popen.rb b/lib/pygments/popen.rb
+index 3e43138..a0ed512 100644
--- a/lib/pygments/popen.rb
+++ b/lib/pygments/popen.rb
-@@ -154,11 +154,11 @@
+@@ -172,11 +172,11 @@ module Pygments
:filenames => lxr[2],
:mimetypes => lxr[3]
}
diff --git a/debian/patches/0005-Use-proper-python-shebang.patch b/debian/patches/0005-Use-proper-python-shebang.patch
index 2713936..d755f03 100644
--- a/debian/patches/0005-Use-proper-python-shebang.patch
+++ b/debian/patches/0005-Use-proper-python-shebang.patch
@@ -1,7 +1,13 @@
-Description: Use proper Python shebang
-Subject: Use proper Python shebang
From: Per Andersson <avtobiff at gmail.com>
+Date: Fri, 29 Sep 2017 22:48:27 +0200
+Subject: Use proper Python shebang
+
---
+ lib/pygments/mentos.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/lib/pygments/mentos.py b/lib/pygments/mentos.py
+index 7ee74a9..9c7c650 100755
--- a/lib/pygments/mentos.py
+++ b/lib/pygments/mentos.py
@@ -1,4 +1,4 @@
diff --git a/debian/patches/0006-Invoke-mentos-directly-on-GNU-Linux.patch b/debian/patches/0006-Invoke-mentos-directly-on-GNU-Linux.patch
index dd25dd0..b1f0cf5 100644
--- a/debian/patches/0006-Invoke-mentos-directly-on-GNU-Linux.patch
+++ b/debian/patches/0006-Invoke-mentos-directly-on-GNU-Linux.patch
@@ -1,7 +1,6 @@
-From cf77a917f7e4d21b03397b39278357c3e9650b72 Mon Sep 17 00:00:00 2001
From: Per Andersson <avtobiff at gmail.com>
Date: Wed, 2 Apr 2014 23:30:58 +0200
-Subject: [PATCH] Invoke mentos directly on GNU/Linux
+Subject: Invoke mentos directly on GNU/Linux
Invoking the script on GNU/Linux by passing it as an argument to
python(2) makes the process use 100% CPU for about tens of seconds when
@@ -14,32 +13,20 @@ Brought back script invocation for windows.
This is forwarded upstream https://github.com/tmm1/pygments.rb/pull/119
---
- lib/pygments/mentos.py | 2 +-
- lib/pygments/popen.rb | 13 ++-----------
- 2 files changed, 3 insertions(+), 12 deletions(-)
+ lib/pygments/popen.rb | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+diff --git a/lib/pygments/popen.rb b/lib/pygments/popen.rb
+index a0ed512..56544f4 100644
--- a/lib/pygments/popen.rb
+++ b/lib/pygments/popen.rb
-@@ -37,20 +37,12 @@
+@@ -41,7 +41,8 @@ module Pygments
# A pipe to the mentos python process. #popen4 gives us
# the pid and three IO objects to write and read.
-- python_path = python_binary(is_windows)
-- script = "#{python_path} #{File.expand_path('../mentos.py', __FILE__)}"
+- script = "#{python_binary} #{File.expand_path('../mentos.py', __FILE__)}"
+ script = "#{File.expand_path('../mentos.py', __FILE__)}"
-+ script = "python " + script if is_windows
++ script = "#{python_binary} " + script if windows?
@pid, @in, @out, @err = popen4(script)
- @log.info "[#{Time.now.iso8601}] Starting pid #{@pid.to_s} with fd #{@out.to_i.to_s}."
+ @log.info "Starting pid #{@pid} with fd #{@out.to_i} and python #{python_binary}."
end
-
-- # Detect a suitable Python binary to use.
-- def python_binary(is_windows)
-- if is_windows && which('py')
-- return 'py -2'
-- end
-- return which('python2') || 'python'
-- end
--
- # Cross platform which command
- # from http://stackoverflow.com/a/5471032/284795
- def which(command)
diff --git a/debian/patches/0007-Update-test-result.patch b/debian/patches/0007-Update-test-result.patch
deleted file mode 100644
index d36d9c1..0000000
--- a/debian/patches/0007-Update-test-result.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-Description: Update test result
-Subject: Update test result
- The upstream testsuite is using an embedded pygments version, which
- at the moment of writing this is 2.0pre. The version in Debian is
- slightly different (2.0rc1) and there are some minor mismatches. Most
- importantly, the Debian version is unable to find a good lexer for
- ambigous code "a". It is fixed by forcing it to use Ruby lexer.
- Also the number of bytes produced cannot be guaranteed.
-
- Already reported upstream https://github.com/tmm1/pygments.rb/issues/118
-Author: Per Andersson <avtobiff at gmail.com>
-Reviewed-by: Antonio Terceiro <terceiro at debian.org>
----
---- a/test/test_pygments.rb
-+++ b/test/test_pygments.rb
-@@ -32,7 +32,7 @@ class PygmentsHighlightTest < Test::Unit
- def test_highlight_works_with_larger_files
- code = P.highlight(REDIS_CODE)
- assert_match 'used_memory_peak_human', code
-- assert_equal 455203, code.bytesize.to_i
-+ assert code.bytesize.to_i > 450_000
- end
-
- def test_returns_nil_on_timeout
-@@ -88,7 +88,7 @@ class PygmentsHighlightTest < Test::Unit
- end
-
- def test_highlight_works_with_single_character_input
-- code = P.highlight("a")
-+ code = P.highlight("a", :lexer => 'ruby')
- assert_match 'a</span>', code
- end
-
-@@ -283,5 +283,3 @@ class PygmentsConfigTest < Test::Unit::T
- assert list['Html'][:aliases].include?('html')
- end
- end
--
--
diff --git a/debian/patches/0010-no-relative-path-for-require-in-tests.patch b/debian/patches/0007-no-relative-path-for-require-in-tests.patch
similarity index 88%
rename from debian/patches/0010-no-relative-path-for-require-in-tests.patch
rename to debian/patches/0007-no-relative-path-for-require-in-tests.patch
index da8645e..82df308 100644
--- a/debian/patches/0010-no-relative-path-for-require-in-tests.patch
+++ b/debian/patches/0007-no-relative-path-for-require-in-tests.patch
@@ -10,15 +10,15 @@ Forwarded: no
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/test_pygments.rb b/test/test_pygments.rb
-index 14f6d3b..f961cd8 100644
+index 23416ba..4dcdbff 100644
--- a/test/test_pygments.rb
+++ b/test/test_pygments.rb
-@@ -1,7 +1,7 @@
- #coding: utf-8
+@@ -2,7 +2,7 @@
+ # frozen_string_literal: true
require 'test/unit'
-require File.join(File.dirname(__FILE__), '..', '/lib/pygments.rb')
+require 'pygments'
ENV['mentos-test'] = "yes"
- P = Pygments
+
diff --git a/debian/patches/0008-Set-reasonable-upper-limit-to-RLIMIT_NOFILE.patch b/debian/patches/0008-Set-reasonable-upper-limit-to-RLIMIT_NOFILE.patch
new file mode 100644
index 0000000..8f84e2b
--- /dev/null
+++ b/debian/patches/0008-Set-reasonable-upper-limit-to-RLIMIT_NOFILE.patch
@@ -0,0 +1,28 @@
+From: =?utf-8?q?C=C3=A9dric_Boutillier?= <boutil at debian.org>
+Date: Fri, 29 Sep 2017 22:49:47 +0200
+Subject: Set reasonable upper limit to RLIMIT_NOFILE
+
+When RLIMIT_NOFILE is too high, the number of files to close
+can be too important and the process of closing could take more time
+than the timeout set (default to 8s).
+
+This causes asciidoctor to crash on some architectures
+
+https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=876768
+---
+ lib/pygments/mentos.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/lib/pygments/mentos.py b/lib/pygments/mentos.py
+index 9c7c650..cf70b7b 100755
+--- a/lib/pygments/mentos.py
++++ b/lib/pygments/mentos.py
+@@ -334,7 +334,7 @@ def main():
+ # close fd's inherited from the ruby parent
+ import resource
+ maxfd = resource.getrlimit(resource.RLIMIT_NOFILE)[1]
+- if maxfd == resource.RLIM_INFINITY:
++ if maxfd >= 65536:
+ maxfd = 65536
+
+ for fd in range(3, maxfd):
diff --git a/debian/patches/0008-fix_test_pygments.patch b/debian/patches/0008-fix_test_pygments.patch
deleted file mode 100644
index b33ea16..0000000
--- a/debian/patches/0008-fix_test_pygments.patch
+++ /dev/null
@@ -1,55 +0,0 @@
-Description: reflect changes in pygments engine s/c1/ch
-Bug-Debian: https://bugs.debian.org/812940
-Forwarded: no
-Author: Cédric Boutillier <boutil at debian.org>
-Last-Update: 2016-03-01
-
---- a/test/test_pygments.rb
-+++ b/test/test_pygments.rb
-@@ -13,20 +13,20 @@
-
- def test_highlight_defaults_to_html
- code = P.highlight(RUBY_CODE)
-- assert_match '<span class="c1">#!/usr/bin/ruby</span>', code
-+ assert_match '<span class="ch">#!/usr/bin/ruby</span>', code
- assert_equal '<div class', code[0..9]
- end
-
- def test_full_html_highlight
- code = P.highlight(RUBY_CODE)
-- assert_match '<span class="c1">#!/usr/bin/ruby</span>', code
-- assert_equal "<div class=\"highlight\"><pre><span class=\"c1\">#!/usr/bin/ruby</span>\n<span class=\"nb\">puts</span> <span class=\"s1\">'foo'</span>\n</pre></div>", code
-+ assert_match '<span class="ch">#!/usr/bin/ruby</span>', code
-+ assert_equal "<div class=\"highlight\"><pre><span class=\"ch\">#!/usr/bin/ruby</span>\n<span class=\"nb\">puts</span> <span class=\"s1\">'foo'</span>\n</pre></div>", code
- end
-
- def test_full_table_highlight
- code = P.highlight(RUBY_CODE, :options => {:linenos => true})
-- assert_match '<span class="c1">#!/usr/bin/ruby</span>', code
-- assert_equal "<table class=\"highlighttable\"><tr><td class=\"linenos\"><div class=\"linenodiv\"><pre>1\n2</pre></div></td><td class=\"code\"><div class=\"highlight\"><pre><span class=\"c1\">#!/usr/bin/ruby</span>\n<span class=\"nb\">puts</span> <span class=\"s1\">'foo'</span>\n</pre></div>\n</td></tr></table>", code
-+ assert_match '<span class="ch">#!/usr/bin/ruby</span>', code
-+ assert_equal "<table class=\"highlighttable\"><tr><td class=\"linenos\"><div class=\"linenodiv\"><pre>1\n2</pre></div></td><td class=\"code\"><div class=\"highlight\"><pre><span class=\"ch\">#!/usr/bin/ruby</span>\n<span class=\"nb\">puts</span> <span class=\"s1\">'foo'</span>\n</pre></div>\n</td></tr></table>", code
- end
-
- def test_highlight_works_with_larger_files
-@@ -94,17 +94,17 @@
-
- def test_highlight_works_with_trailing_newline
- code = P.highlight(RUBY_CODE_TRAILING_NEWLINE)
-- assert_match '<span class="c1">#!/usr/bin/ruby</span>', code
-+ assert_match '<span class="ch">#!/usr/bin/ruby</span>', code
- end
-
- def test_highlight_works_with_multiple_newlines
- code = P.highlight(RUBY_CODE_TRAILING_NEWLINE + "derp\n\n")
-- assert_match '<span class="c1">#!/usr/bin/ruby</span>', code
-+ assert_match '<span class="ch">#!/usr/bin/ruby</span>', code
- end
-
- def test_highlight_works_with_trailing_cr
- code = P.highlight(RUBY_CODE_TRAILING_NEWLINE + "\r")
-- assert_match '<span class="c1">#!/usr/bin/ruby</span>', code
-+ assert_match '<span class="ch">#!/usr/bin/ruby</span>', code
- end
-
- def test_highlight_still_works_with_invalid_code
diff --git a/debian/patches/0009-adapt-to-new-pygments.patch b/debian/patches/0009-adapt-to-new-pygments.patch
deleted file mode 100644
index bccf651..0000000
--- a/debian/patches/0009-adapt-to-new-pygments.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From: =?utf-8?q?C=C3=A9dric_Boutillier?= <boutil at debian.org>
-Date: Fri, 8 Jul 2016 13:25:56 +0200
-Subject: adapt to new pygments
-
- the new version of pygments 2.1.1 adds empty span blocks
- This patch adapts the tests to the new convention
-Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=830400
-Bug: https://github.com/tmm1/pygments.rb/issues/160
-Forwarded: no
----
- test/test_pygments.rb | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/test/test_pygments.rb b/test/test_pygments.rb
-index 0ea16bb..14f6d3b 100644
---- a/test/test_pygments.rb
-+++ b/test/test_pygments.rb
-@@ -20,13 +20,13 @@ class PygmentsHighlightTest < Test::Unit::TestCase
- def test_full_html_highlight
- code = P.highlight(RUBY_CODE)
- assert_match '<span class="ch">#!/usr/bin/ruby</span>', code
-- assert_equal "<div class=\"highlight\"><pre><span class=\"ch\">#!/usr/bin/ruby</span>\n<span class=\"nb\">puts</span> <span class=\"s1\">'foo'</span>\n</pre></div>", code
-+ assert_equal "<div class=\"highlight\"><pre><span></span><span class=\"ch\">#!/usr/bin/ruby</span>\n<span class=\"nb\">puts</span> <span class=\"s1\">'foo'</span>\n</pre></div>", code
- end
-
- def test_full_table_highlight
- code = P.highlight(RUBY_CODE, :options => {:linenos => true})
- assert_match '<span class="ch">#!/usr/bin/ruby</span>', code
-- assert_equal "<table class=\"highlighttable\"><tr><td class=\"linenos\"><div class=\"linenodiv\"><pre>1\n2</pre></div></td><td class=\"code\"><div class=\"highlight\"><pre><span class=\"ch\">#!/usr/bin/ruby</span>\n<span class=\"nb\">puts</span> <span class=\"s1\">'foo'</span>\n</pre></div>\n</td></tr></table>", code
-+ assert_equal "<table class=\"highlighttable\"><tr><td class=\"linenos\"><div class=\"linenodiv\"><pre>1\n2</pre></div></td><td class=\"code\"><div class=\"highlight\"><pre><span></span><span class=\"ch\">#!/usr/bin/ruby</span>\n<span class=\"nb\">puts</span> <span class=\"s1\">'foo'</span>\n</pre></div>\n</td></tr></table>", code
- end
-
- def test_highlight_works_with_larger_files
-@@ -59,7 +59,7 @@ class PygmentsHighlightTest < Test::Unit::TestCase
- def test_highlight_works_on_utf8_all_chars_automatically
- code = P.highlight('def foo: # ø', :lexer => 'py')
-
-- assert_equal '<div class="highlight"><pre><span clas', code[0,38]
-+ assert_equal '<div class="highlight"><pre><span', code[0,33]
- end
-
- def test_highlight_works_with_multiple_utf8
diff --git a/debian/patches/series b/debian/patches/series
index 1e05c73..0141c65 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -4,7 +4,5 @@
0004-Remove-unshipped-custom-lexers.patch
0005-Use-proper-python-shebang.patch
0006-Invoke-mentos-directly-on-GNU-Linux.patch
-0007-Update-test-result.patch
-0008-fix_test_pygments.patch
-0009-adapt-to-new-pygments.patch
-0010-no-relative-path-for-require-in-tests.patch
+0007-no-relative-path-for-require-in-tests.patch
+0008-Set-reasonable-upper-limit-to-RLIMIT_NOFILE.patch
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-pygments.rb.git
More information about the Pkg-ruby-extras-commits
mailing list