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
3 years ago
16 | 16 |
(Copyright): Update and add myself.
|
17 | 17 |
* d/ruby-gitlab.1: Fix version and section in header.
|
18 | 18 |
* 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.
|
19 | 22 |
* d/upstream/metadata: Remove Name and Contact fields.
|
20 | 23 |
|
21 | 24 |
-- Daniel Leidert <dleidert@debian.org> Sat, 04 Apr 2020 13:37:51 +0200
|
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
|
1 | 0 |
use-installed-libraries.patch
|