ipaddress: initial skeleton
authorFrantišek Dvořák <valtri@civ.zcu.cz>
Tue, 29 Nov 2016 12:09:49 +0000 (13:09 +0100)
committerFrantišek Dvořák <valtri@civ.zcu.cz>
Tue, 29 Nov 2016 12:09:49 +0000 (13:09 +0100)
ipaddress/debian/changelog [new file with mode: 0644]
ipaddress/debian/compat [new file with mode: 0644]
ipaddress/debian/control [new file with mode: 0644]
ipaddress/debian/copyright [new file with mode: 0644]
ipaddress/debian/ruby-ipaddress.docs [new file with mode: 0644]
ipaddress/debian/ruby-test-files.yaml [new file with mode: 0644]
ipaddress/debian/rules [new file with mode: 0755]
ipaddress/debian/source/format [new file with mode: 0644]
ipaddress/debian/watch [new file with mode: 0644]

diff --git a/ipaddress/debian/changelog b/ipaddress/debian/changelog
new file mode 100644 (file)
index 0000000..9dea00a
--- /dev/null
@@ -0,0 +1,5 @@
+ruby-ipaddress (0.8.3-1) UNRELEASED; urgency=medium
+
+  * Initial release (Closes: #nnnn)
+
+ -- František Dvořák <valtri@civ.zcu.cz>  Tue, 29 Nov 2016 13:00:07 +0100
diff --git a/ipaddress/debian/compat b/ipaddress/debian/compat
new file mode 100644 (file)
index 0000000..7f8f011
--- /dev/null
@@ -0,0 +1 @@
+7
diff --git a/ipaddress/debian/control b/ipaddress/debian/control
new file mode 100644 (file)
index 0000000..e45413f
--- /dev/null
@@ -0,0 +1,22 @@
+Source: ruby-ipaddress
+Section: ruby
+Priority: optional
+Maintainer: Debian Ruby Extras Maintainers <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
+Uploaders: František Dvořák <valtri@civ.zcu.cz>
+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 (file)
index 0000000..f129585
--- /dev/null
@@ -0,0 +1,35 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: ipaddress
+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: 2016 František Dvořák <valtri@civ.zcu.cz>
+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 (file)
index 0000000..0d5eab8
--- /dev/null
@@ -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 (file)
index 0000000..b7c452f
--- /dev/null
@@ -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 (executable)
index 0000000..82ddc0c
--- /dev/null
@@ -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 (file)
index 0000000..163aaf8
--- /dev/null
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/ipaddress/debian/watch b/ipaddress/debian/watch
new file mode 100644 (file)
index 0000000..364341f
--- /dev/null
@@ -0,0 +1,2 @@
+version=3
+http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/ipaddress .*/ipaddress-(.*).tar.gz