From 2e2c87ba22c0f90af1273fad9d382efbd5f3f86d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= Date: Tue, 29 Nov 2016 13:09:49 +0100 Subject: [PATCH] ipaddress: initial skeleton --- ipaddress/debian/changelog | 5 +++++ ipaddress/debian/compat | 1 + ipaddress/debian/control | 22 ++++++++++++++++++++++ ipaddress/debian/copyright | 35 +++++++++++++++++++++++++++++++++++ ipaddress/debian/ruby-ipaddress.docs | 2 ++ ipaddress/debian/ruby-test-files.yaml | 7 +++++++ ipaddress/debian/rules | 15 +++++++++++++++ ipaddress/debian/source/format | 1 + ipaddress/debian/watch | 2 ++ 9 files changed, 90 insertions(+) create mode 100644 ipaddress/debian/changelog create mode 100644 ipaddress/debian/compat create mode 100644 ipaddress/debian/control create mode 100644 ipaddress/debian/copyright create mode 100644 ipaddress/debian/ruby-ipaddress.docs create mode 100644 ipaddress/debian/ruby-test-files.yaml create mode 100755 ipaddress/debian/rules create mode 100644 ipaddress/debian/source/format create mode 100644 ipaddress/debian/watch diff --git a/ipaddress/debian/changelog b/ipaddress/debian/changelog new file mode 100644 index 0000000..9dea00a --- /dev/null +++ b/ipaddress/debian/changelog @@ -0,0 +1,5 @@ +ruby-ipaddress (0.8.3-1) UNRELEASED; urgency=medium + + * Initial release (Closes: #nnnn) + + -- František Dvořák Tue, 29 Nov 2016 13:00:07 +0100 diff --git a/ipaddress/debian/compat b/ipaddress/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/ipaddress/debian/compat @@ -0,0 +1 @@ +7 diff --git a/ipaddress/debian/control b/ipaddress/debian/control new file mode 100644 index 0000000..e45413f --- /dev/null +++ b/ipaddress/debian/control @@ -0,0 +1,22 @@ +Source: ruby-ipaddress +Section: ruby +Priority: optional +Maintainer: Debian Ruby Extras Maintainers +Uploaders: František Dvořák +Build-Depends: debhelper (>= 7.0.50~), gem2deb (>= 0.6.1~) +Standards-Version: 3.9.4 +#Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-ipaddress.git +#Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-ruby-extras/ruby-ipaddress.git;a=summary +Homepage: https://github.com/bluemonk/ipaddress +XS-Ruby-Versions: all + +Package: ruby-ipaddress +Architecture: all +XB-Ruby-Versions: ${ruby:Versions} +Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter +# bundler (>= 0, development), rake (>= 0, development) +Description: IPv4/IPv6 address manipulation library + IPAddress is a Ruby library designed to make manipulation + of IPv4 and IPv6 addresses both powerful and simple. It mantains + a layer of compatibility with Ruby's own IPAddr, while + addressing many of its issues. diff --git a/ipaddress/debian/copyright b/ipaddress/debian/copyright new file mode 100644 index 0000000..f129585 --- /dev/null +++ b/ipaddress/debian/copyright @@ -0,0 +1,35 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: ipaddress +Source: FIXME + +Files: * +Copyright: + +License: GPL-2+ (FIXME) + +Files: debian/* +Copyright: 2016 František Dvořák +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'. diff --git a/ipaddress/debian/ruby-ipaddress.docs b/ipaddress/debian/ruby-ipaddress.docs new file mode 100644 index 0000000..0d5eab8 --- /dev/null +++ b/ipaddress/debian/ruby-ipaddress.docs @@ -0,0 +1,2 @@ +# FIXME: READMEs found +# README.rdoc diff --git a/ipaddress/debian/ruby-test-files.yaml b/ipaddress/debian/ruby-test-files.yaml new file mode 100644 index 0000000..b7c452f --- /dev/null +++ b/ipaddress/debian/ruby-test-files.yaml @@ -0,0 +1,7 @@ +--- +- test/ipaddress/ipv4_test.rb +- test/ipaddress/ipv6_test.rb +- test/ipaddress/mongoid_test.rb +- test/ipaddress/prefix_test.rb +- test/ipaddress_test.rb +- test/test_helper.rb diff --git a/ipaddress/debian/rules b/ipaddress/debian/rules new file mode 100755 index 0000000..82ddc0c --- /dev/null +++ b/ipaddress/debian/rules @@ -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=ruby1.9.1 ruby2.0 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 diff --git a/ipaddress/debian/source/format b/ipaddress/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/ipaddress/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/ipaddress/debian/watch b/ipaddress/debian/watch new file mode 100644 index 0000000..364341f --- /dev/null +++ b/ipaddress/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/ipaddress .*/ipaddress-(.*).tar.gz -- 1.8.2.3