Import Debian patch 0.6.1-1
This commit is contained in:
parent
a803b2684b
commit
942a011ae7
9 changed files with 82 additions and 0 deletions
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
ruby-rack-proxy (0.6.1-1) UNRELEASED; urgency=medium
|
||||
|
||||
* Initial release (Closes: #nnnn)
|
||||
|
||||
-- Pirate Praveen <praveen@debian.org> Thu, 06 Apr 2017 12:57:30 +0530
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
9
|
25
debian/control
vendored
Normal file
25
debian/control
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
Source: ruby-rack-proxy
|
||||
Section: ruby
|
||||
Priority: optional
|
||||
Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
|
||||
Uploaders: Pirate Praveen <praveen@debian.org>
|
||||
Build-Depends: debhelper (>= 9~),
|
||||
gem2deb,
|
||||
rake,
|
||||
ruby-rack
|
||||
Standards-Version: 3.9.8
|
||||
Vcs-Git: https://anonscm.debian.org/git/pkg-ruby-extras/ruby-rack-proxy.git
|
||||
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-ruby-extras/ruby-rack-proxy.git
|
||||
Homepage: http://rubygems.org/gems/rack-proxy
|
||||
Testsuite: autopkgtest-pkg-ruby
|
||||
XS-Ruby-Versions: all
|
||||
|
||||
Package: ruby-rack-proxy
|
||||
Architecture: all
|
||||
XB-Ruby-Versions: ${ruby:Versions}
|
||||
Depends: ruby | ruby-interpreter,
|
||||
ruby-rack,
|
||||
${misc:Depends},
|
||||
${shlibs:Depends}
|
||||
Description: A request/response rewriting HTTP proxy. A Rack app.
|
||||
A Rack app that provides request/response rewriting proxy capabilities with streaming.
|
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: rack-proxy
|
||||
Source: http://rubygems.org/gems/rack-proxy
|
||||
|
||||
Files: *
|
||||
Copyright: <years> <put author's name and email here>
|
||||
<years> <likewise for another author>
|
||||
License: GPL-2+ (FIXME)
|
||||
|
||||
Files: debian/*
|
||||
Copyright: 2017 Pirate Praveen <praveen@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'.
|
1
debian/ruby-rack-proxy.docs
vendored
Normal file
1
debian/ruby-rack-proxy.docs
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
README.md
|
6
debian/ruby-tests.rake
vendored
Normal file
6
debian/ruby-tests.rake
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
require 'gem2deb/rake/testtask'
|
||||
|
||||
Gem2Deb::Rake::TestTask.new do |t|
|
||||
t.libs = ['test']
|
||||
t.test_files = FileList['test/**/*_test.rb'] + FileList['test/**/test_*.rb']
|
||||
end
|
6
debian/rules
vendored
Executable file
6
debian/rules
vendored
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/make -f
|
||||
|
||||
export GEM2DEB_TEST_RUNNER = --check-dependencies
|
||||
|
||||
%:
|
||||
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)
|
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/rack-proxy .*/rack-proxy-(.*).tar.gz
|
Loading…
Reference in a new issue