Codebase list ruby-gitlab / 3af48f7
Update debian files Sophie Brun 5 years ago
4 changed file(s) with 48 addition(s) and 24 deletion(s). Raw diff Collapse all Expand all
77 rake,
88 ruby-httparty,
99 ruby-rspec,
10 ruby-terminal-table
10 ruby-terminal-table,
11 # for the tests
12 ruby-webmock
1113 Standards-Version: 4.0.0
1214 Vcs-Git: https://anonscm.debian.org/git/pkg-ruby-extras/ruby-gitlab.git
1315 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-ruby-extras/ruby-gitlab.git
2325 ruby-terminal-table,
2426 ${misc:Depends},
2527 ${shlibs:Depends}
26 Description: A Ruby wrapper and CLI for the GitLab API
27 Ruby client and CLI for GitLab API
28 Description: Ruby wrapper and CLI for the GitLab API
29 This package contains a Ruby wrapper and CLI for the GitLab API.
22 Source: https://github.com/narkoz/gitlab
33
44 Files: *
5 Copyright: <years> <put author's name and email here>
6 <years> <likewise for another author>
7 License: Expat (FIXME)
5 Copyright: 2012-2015 Nihad Abbasov <mail@narkoz.me>
6 License: BSD-2-clause
87
98 Files: debian/*
109 Copyright: 2017 Sophie Brun <sophie@freexian.com>
11 License: Expat (FIXME)
12 Comment: the Debian packaging is licensed under the same terms as the original package.
10 License: BSD-2-clause
1311
14 License: Expat
15 Permission is hereby granted, free of charge, to any person obtaining a copy
16 of this software and associated documentation files (the "Software"), to deal
17 in the Software without restriction, including without limitation the rights
18 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
19 copies of the Software, and to permit persons to whom the Software is
20 furnished to do so, subject to the following conditions:
12 License: BSD-2-clause
13 All rights reserved.
2114 .
22 The above copyright notice and this permission notice shall be included in
23 all copies or substantial portions of the Software.
15 Redistribution and use in source and binary forms, with or without
16 modification, are permitted provided that the following conditions are met:
2417 .
25 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
30 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
31 THE SOFTWARE.
18 1. Redistributions of source code must retain the above copyright notice,
19 this list of conditions and the following disclaimer.
20 .
21 2. Redistributions in binary form must reproduce the above copyright notice,
22 this list of conditions and the following disclaimer in the documentation
23 and/or other materials provided with the distribution.
24 .
25 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
29 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 POSSIBILITY OF SUCH DAMAGE.
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: 2017-09-07
4 ---
5 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
6 --- a/gitlab.gemspec
7 +++ b/gitlab.gemspec
8 @@ -12,7 +12,7 @@ Gem::Specification.new do |gem|
9 gem.summary = %q{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 gem.bindir = "exe"
15 gem.executables = gem.files.grep(%r{^exe/}) { |f| File.basename(f) }
16 gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
0 drop-git-ls-files.patch