Codebase list ruby-gitlab / 2ad0c29
Remove obsolete patch drop-git-ls-files.patch * d/patches/drop-git-ls-files.patch: Remove patch. - Patch no longer applies. * d/patches/series: Remove patch. Daniel Leidert 4 years ago
3 changed file(s) with 3 addition(s) and 18 deletion(s). Raw diff Collapse all Expand all
1616 (Copyright): Update and add myself.
1717 * d/ruby-gitlab.1: Fix version and section in header.
1818 * d/watch: Update file.
19 * d/patches/drop-git-ls-files.patch: Remove patch.
20 - Patch no longer applies.
21 * d/patches/series: Remove patch.
1922 * d/upstream/metadata: Remove Name and Contact fields.
2023
2124 -- Daniel Leidert <dleidert@debian.org> Sat, 04 Apr 2020 13:37:51 +0200
+0
-17
debian/patches/drop-git-ls-files.patch less more
0 Description: Drop git ls-files in .gemspec
1 Replace the git ls-files with Dir.glob as build is not in git directory
2 Author: Sophie Brun <sophie@freexian.com>
3 Last-Update: 2018-08-20
4 ---
5 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
6 --- a/gitlab.gemspec
7 +++ b/gitlab.gemspec
8 @@ -13,7 +13,7 @@ Gem::Specification.new do |gem|
9 gem.summary = 'A Ruby wrapper and CLI for the GitLab API'
10 gem.homepage = 'https://github.com/narkoz/gitlab'
11
12 - gem.files = `git ls-files`.split($/)
13 + gem.files = Dir.glob('**/*')
14 .grep_v(/^spec/) -
15 %w[Dockerfile docker-compose.yml docker.env .travis.yml
16 .rubocop.yml .dockerignore]
0 drop-git-ls-files.patch
10 use-installed-libraries.patch