File: 0001-Remove-gemspec-git-ls-files.patch

package info (click to toggle)
ruby-pygments.rb 1.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,008 kB
  • sloc: ansic: 1,869; ruby: 612; python: 518; makefile: 10; sh: 4
file content (30 lines) | stat: -rw-r--r-- 971 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
From: Debian Ruby Extras Maintainers
 <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
Date: Fri, 29 Sep 2017 22:48:27 +0200
Subject: Remove-gemspec-git-ls-files

---
 pygments.rb.gemspec | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/pygments.rb.gemspec b/pygments.rb.gemspec
index 87eea36..b1ce6f8 100644
--- a/pygments.rb.gemspec
+++ b/pygments.rb.gemspec
@@ -1,4 +1,8 @@
-require File.expand_path('../lib/pygments/version', __FILE__)
+version_file = File.expand_path('../lib/pygments/version.rb', __FILE__)
+if not File.exists?(version_file)
+  version_file = 'pygments/version'
+end
+require version_file
 
 Gem::Specification.new do |s|
   s.name = 'pygments.rb'
@@ -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").select { |f| !File.symlink?(f) } + ['lexers']
+  s.files = Dir['**/*'] - Dir['debian/**/*'] + ['lexers']
 end