From 96b0c324033b39ebf6d375e70f2868e4a105466e Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Wed, 4 Jan 2017 18:39:25 -0500 Subject: Import Debian changes 2.7.1-0vanir1 ruby-roo (2.7.1-0vanir1) unstable; urgency=medium * New upstream release. ruby-roo (2.7.0-0vanir1) unstable; urgency=medium * New upstream release. * d/watch: Track releases directly from Github, contains test files. * d/control: Build-depend on ruby-simplecov for tests. * d/rules: Don't ignore the outcome of tests. ruby-roo (2.5.1-0vanir1) unstable; urgency=medium * New upstream release. ruby-roo (2.5.0-0vanir1) unstable; urgency=medium * New upstream release. - Drop upstream patches. ruby-roo (2.4.0-0vanir2) unstable; urgency=medium * d/p/001-Parse_sheets_in_ODS_files_once.patch: - Import an optimization from an upstream pull request. ruby-roo (2.4.0-0vanir1) unstable; urgency=medium * New upstream release. ruby-roo (2.3.2-0vanir1) unstable; urgency=medium * Initial release. --- debian/changelog | 46 ++++++++++++++++++++++++++++++++++++++++++++++ debian/compat | 1 + debian/control | 31 +++++++++++++++++++++++++++++++ debian/copyright | 35 +++++++++++++++++++++++++++++++++++ debian/gbp.conf | 3 +++ debian/ruby-roo.docs | 1 + debian/ruby-roo.examples | 1 + debian/ruby-tests.rake | 5 +++++ debian/rules | 22 ++++++++++++++++++++++ debian/source/format | 1 + debian/watch | 4 ++++ 11 files changed, 150 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/gbp.conf create mode 100644 debian/ruby-roo.docs create mode 100644 debian/ruby-roo.examples create mode 100644 debian/ruby-tests.rake create mode 100755 debian/rules create mode 100644 debian/source/format create mode 100644 debian/watch diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..c77e997 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,46 @@ +ruby-roo (2.7.1-0vanir1) unstable; urgency=medium + + * New upstream release. + + -- Unit 193 Wed, 04 Jan 2017 18:39:25 -0500 + +ruby-roo (2.7.0-0vanir1) unstable; urgency=medium + + * New upstream release. + * d/watch: Track releases directly from Github, contains test files. + * d/control: Build-depend on ruby-simplecov for tests. + * d/rules: Don't ignore the outcome of tests. + + -- Unit 193 Tue, 03 Jan 2017 02:07:03 -0500 + +ruby-roo (2.5.1-0vanir1) unstable; urgency=medium + + * New upstream release. + + -- Unit 193 Wed, 31 Aug 2016 15:37:57 -0400 + +ruby-roo (2.5.0-0vanir1) unstable; urgency=medium + + * New upstream release. + - Drop upstream patches. + + -- Unit 193 Mon, 22 Aug 2016 18:26:07 -0400 + +ruby-roo (2.4.0-0vanir2) unstable; urgency=medium + + * d/p/001-Parse_sheets_in_ODS_files_once.patch: + - Import an optimization from an upstream pull request. + + -- Unit 193 Thu, 16 Jun 2016 12:30:17 -0400 + +ruby-roo (2.4.0-0vanir1) unstable; urgency=medium + + * New upstream release. + + -- Unit 193 Mon, 16 May 2016 18:48:09 -0400 + +ruby-roo (2.3.2-0vanir1) unstable; urgency=medium + + * Initial release. + + -- Unit 193 Fri, 15 Apr 2016 16:28:54 -0400 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..cfdfafa --- /dev/null +++ b/debian/control @@ -0,0 +1,31 @@ +Source: ruby-roo +Section: ruby +Priority: optional +Maintainer: Unit 193 +Build-Depends: debhelper (>= 9~), + gem2deb, + rake, + ruby-nokogiri (>= 1), + ruby-rspec, + ruby-simplecov, + ruby-zip (<< 2.0.0), + ruby-zip (>= 1.1) +Standards-Version: 3.9.8 +Homepage: http://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..03409e6 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,35 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: roo +Source: http://github.com/roo-rb/roo + +Files: * +Copyright: 2008-2014, Thomas Preymesser + 2008-2014, Hugh McGowan + 2008-2014, Ben Woosley + 2008-2014, Oleksandr Simonov + 2008-2014, Steven Daniels +License: MIT + +Files: debian/* +Copyright: 2016 Unit 193 +License: MIT + +License: MIT + 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..214150b --- /dev/null +++ b/debian/watch @@ -0,0 +1,4 @@ +version=3 +#http://pkg-ruby-extras.alioth.debian.org/cgi-bin/gemwatch/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 -- cgit v1.2.3