aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--debian/changelog16
-rw-r--r--debian/control32
-rw-r--r--debian/copyright34
-rw-r--r--debian/gbp.conf3
-rw-r--r--debian/ruby-roo.docs1
-rw-r--r--debian/ruby-roo.examples1
-rw-r--r--debian/ruby-tests.rake5
-rwxr-xr-xdebian/rules22
-rw-r--r--debian/source/format1
-rw-r--r--debian/watch4
10 files changed, 119 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..832ceb3
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,16 @@
+ruby-roo (2.8.0-1) unstable; urgency=medium
+
+ * New upstream version 2.8.0
+ * d/compat, d/control:
+ - Drop d/compat in favor of debhelper-compat, bump to 12.
+ * d/control: Set R³ to no.
+ * d/watch: Adjust the gemwatch URL to gemwatch.debian.net.
+ * Update Standards-Version to 4.3.0.
+
+ -- Unit 193 <unit193@ubuntu.com> Mon, 14 Jan 2019 01:51:44 -0500
+
+ruby-roo (2.7.1-1) unstable; urgency=medium
+
+ * Initial upload to Debian. (Closes: #864740)
+
+ -- Unit 193 <unit193@ubuntu.com> Mon, 03 Jul 2017 17:24:06 -0400
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..a01fd7e
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,32 @@
+Source: ruby-roo
+Section: ruby
+Priority: optional
+Maintainer: Unit 193 <unit193@ubuntu.com>
+Build-Depends: debhelper-compat (= 12),
+ gem2deb,
+ rake,
+ ruby-nokogiri (>= 1),
+ ruby-rspec,
+ ruby-simplecov,
+ ruby-zip (<< 2.0.0),
+ ruby-zip (>= 1.1)
+Rules-Requires-Root: no
+Standards-Version: 4.3.0
+Homepage: https://github.com/roo-rb/roo
+Testsuite: autopkgtest-pkg-ruby
+XS-Ruby-Versions: all
+
+Package: ruby-roo
+Architecture: all
+XB-Ruby-Versions: ${ruby:Versions}
+Depends: ruby | ruby-interpreter,
+ ruby-nokogiri (>= 1),
+ ruby-zip (<< 2.0.0),
+ ruby-zip (>= 1.1),
+ ${misc:Depends}
+Description: can access the contents of various spreadsheet files
+ Roo can access the contents of various spreadsheet files. It can handle
+ * OpenOffice
+ * Excelx
+ * LibreOffice
+ * CSV
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..4c81d7d
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,34 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: roo
+Source: https://github.com/roo-rb/roo
+
+Files: *
+Copyright: 2008-2014, Thomas Preymesser <ruby.ruby.ruby.roo@gmail.com>
+ 2014-2017, Ben Woosley <ben.woosley@gmail.com>
+ 2015-2017, Oleksandr Simonov <oleksandr@simonov.me>
+ 2015-2017, Steven Daniels <stevendaniels88@gmail.com>
+License: Expat
+
+Files: debian/*
+Copyright: 2016-2017 Unit 193 <unit193@ubuntu.com>
+License: Expat
+
+License: Expat
+ Permission is hereby granted, free of charge, to any person obtaining
+ a copy of this software and associated documentation files (the
+ "Software"), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish,
+ distribute, sublicense, and/or sell copies of the Software, and to
+ permit persons to whom the Software is furnished to do so, subject to
+ the following conditions:
+ .
+ The above copyright notice and this permission notice shall be
+ included in all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..5474c60
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,3 @@
+[DEFAULT]
+pristine-tar = True
+sign-tags = True
diff --git a/debian/ruby-roo.docs b/debian/ruby-roo.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/ruby-roo.docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/ruby-roo.examples b/debian/ruby-roo.examples
new file mode 100644
index 0000000..e39721e
--- /dev/null
+++ b/debian/ruby-roo.examples
@@ -0,0 +1 @@
+examples/*
diff --git a/debian/ruby-tests.rake b/debian/ruby-tests.rake
new file mode 100644
index 0000000..cf1591e
--- /dev/null
+++ b/debian/ruby-tests.rake
@@ -0,0 +1,5 @@
+require 'gem2deb/rake/spectask'
+
+Gem2Deb::Rake::RSpecTask.new do |spec|
+ spec.pattern = './spec/**/*_spec.rb'
+end
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..1cacf25
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,22 @@
+#!/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 ruby2.2
+#
+# If you need to specify the .gemspec (eg there is more than one)
+#export DH_RUBY_GEMSPEC=gem.gemspec
+#
+# Uncomment to check dependencies during build:
+export GEM2DEB_TEST_RUNNER = --check-dependencies
+
+%:
+ dh $@ --buildsystem=ruby --with ruby
+
+override_dh_clean:
+ dh_clean
+ rm -rf coverage/
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..792ec18
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+#https://gemwatch.debian.net/roo .*/roo-(.*).tar.gz
+#Track releases directly from Github as they contain the test files.
+https://github.com/roo-rb/roo/releases .*/v([\d\.]+)\.tar\.gz