Imported Debian patch 7.2.1-1
This commit is contained in:
parent
7e8e16d0ba
commit
5f9aa5aba2
10 changed files with 106 additions and 0 deletions
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
gitlab (7.2.1-1) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
|
* Initial release (Closes: #nnnn)
|
||||||
|
|
||||||
|
-- Cédric Boutillier <boutil@debian.org> Tue, 02 Sep 2014 14:29:05 +0200
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
7
|
19
debian/control
vendored
Normal file
19
debian/control
vendored
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
Source: gitlab
|
||||||
|
Section: ruby
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
|
||||||
|
Uploaders: Cédric Boutillier <boutil@debian.org>
|
||||||
|
Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.9.0~)
|
||||||
|
Standards-Version: 3.9.5
|
||||||
|
Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-gitlab-ce.git.git
|
||||||
|
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ruby-extras/ruby-gitlab-ce.git.git;a=summary
|
||||||
|
Homepage: https://about.gitlab.com/
|
||||||
|
Testsuite: autopkgtest
|
||||||
|
XS-Ruby-Versions: all
|
||||||
|
|
||||||
|
Package: gitlab
|
||||||
|
Architecture: all
|
||||||
|
XB-Ruby-Versions: ${ruby:Versions}
|
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter
|
||||||
|
Description: FIXME
|
||||||
|
<insert long description, indented with spaces>
|
35
debian/copyright
vendored
Normal file
35
debian/copyright
vendored
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
|
Upstream-Name: gitlab-ce.git
|
||||||
|
Source: FIXME <http://example.com/>
|
||||||
|
|
||||||
|
Files: *
|
||||||
|
Copyright: <years> <put author's name and email here>
|
||||||
|
<years> <likewise for another author>
|
||||||
|
License: GPL-2+ (FIXME)
|
||||||
|
|
||||||
|
Files: debian/*
|
||||||
|
Copyright: 2014 Cédric Boutillier <boutil@debian.org>
|
||||||
|
License: GPL-2+ (FIXME)
|
||||||
|
Comment: the Debian packaging is licensed under the same terms as the original package.
|
||||||
|
|
||||||
|
License: GPL-2+ (FIXME)
|
||||||
|
This program is free software; you can redistribute it
|
||||||
|
and/or modify it under the terms of the GNU General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 2 of the License, or (at your option) any later
|
||||||
|
version.
|
||||||
|
.
|
||||||
|
This program is distributed in the hope that it will be
|
||||||
|
useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||||
|
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. See the GNU General Public License for more
|
||||||
|
details.
|
||||||
|
.
|
||||||
|
You should have received a copy of the GNU General Public
|
||||||
|
License along with this package; if not, write to the Free
|
||||||
|
Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||||
|
Boston, MA 02110-1301 USA
|
||||||
|
.
|
||||||
|
On Debian systems, the full text of the GNU General Public
|
||||||
|
License version 2 can be found in the file
|
||||||
|
`/usr/share/common-licenses/GPL-2'.
|
6
debian/ruby-gitlab-ce.git.docs
vendored
Normal file
6
debian/ruby-gitlab-ce.git.docs
vendored
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
# FIXME: doc/ dir found in source. Consider installing the docs.
|
||||||
|
# Examples:
|
||||||
|
# doc/manual.html
|
||||||
|
# doc/site/*
|
||||||
|
# FIXME: READMEs found
|
||||||
|
# README.md
|
13
debian/ruby-tests.rake
vendored
Normal file
13
debian/ruby-tests.rake
vendored
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
# FIXME
|
||||||
|
# there's a spec/ directory in the upstream source.
|
||||||
|
# The recommended way to run the RSpec suite is via a rake task.
|
||||||
|
# The following commands are enough in many cases and can be adapted to other
|
||||||
|
# situations.
|
||||||
|
#
|
||||||
|
# require 'rspec/core/rake_task'
|
||||||
|
#
|
||||||
|
# RSpec::Core::RakeTask.new(:spec) do |spec|
|
||||||
|
# spec.pattern = './spec/*_spec.rb'
|
||||||
|
# end
|
||||||
|
#
|
||||||
|
# task :default => :spec
|
15
debian/rules
vendored
Executable file
15
debian/rules
vendored
Executable file
|
@ -0,0 +1,15 @@
|
||||||
|
#!/usr/bin/make -f
|
||||||
|
#export DH_VERBOSE=1
|
||||||
|
#
|
||||||
|
# Uncomment to ignore all test failures (but the tests will run anyway)
|
||||||
|
#export DH_RUBY_IGNORE_TESTS=all
|
||||||
|
#
|
||||||
|
# Uncomment to ignore some test failures (but the tests will run anyway).
|
||||||
|
# Valid values:
|
||||||
|
#export DH_RUBY_IGNORE_TESTS=ruby2.1 require-rubygems
|
||||||
|
#
|
||||||
|
# If you need to specify the .gemspec (eg there is more than one)
|
||||||
|
#export DH_RUBY_GEMSPEC=gem.gemspec
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh $@ --buildsystem=ruby --with ruby
|
1
debian/source/format
vendored
Normal file
1
debian/source/format
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
3.0 (quilt)
|
9
debian/tests/control
vendored
Normal file
9
debian/tests/control
vendored
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
Test-Command: gem2deb-test-runner --autopkgtest 2>&1
|
||||||
|
Depends: @, gem2deb-test-runner
|
||||||
|
#FIXME: add to Depends ruby-rspec, ruby-test-unit... if needed
|
||||||
|
#Restrictions: allow-stderr
|
||||||
|
|
||||||
|
#FIXME: replace LIB by the name of the main file of the library
|
||||||
|
#Test-Command: ruby -r LIB -e "puts true"
|
||||||
|
#Depends: @
|
||||||
|
|
2
debian/watch
vendored
Normal file
2
debian/watch
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
version=3
|
||||||
|
http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/gitlab-ce.git .*/gitlab-ce.git-(.*).tar.gz
|
Loading…
Reference in a new issue