diff -Nru ruby-spider-0.5.0/debian/changelog ruby-spider-0.5.0/debian/changelog --- ruby-spider-0.5.0/debian/changelog 2018-12-17 20:11:33.000000000 +0000 +++ ruby-spider-0.5.0/debian/changelog 2019-02-14 21:21:25.000000000 +0000 @@ -1,3 +1,19 @@ +ruby-spider (0.5.0-4) unstable; urgency=medium + + * Use new DH level format. Consequently: + - debian/compat: removed. + - debian/control: changed from 'debhelper' to 'debhelper-compat' in + Build-Depends field and bumped level to 12. + * debian/control: + - Bumped Standards-Version to 4.3.0. + - Removed Testsuite field. + * debian/copyright: + - Corrected order in Copyright field. + - Updated the packaging copyright years. + * debian/tests/*: added to provide simple test. + + -- Marc Bigler Thu, 14 Feb 2019 22:21:25 +0100 + ruby-spider (0.5.0-3) unstable; urgency=medium * New maintainer. (Closes: #822207) diff -Nru ruby-spider-0.5.0/debian/compat ruby-spider-0.5.0/debian/compat --- ruby-spider-0.5.0/debian/compat 2018-12-17 20:11:33.000000000 +0000 +++ ruby-spider-0.5.0/debian/compat 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -11 diff -Nru ruby-spider-0.5.0/debian/control ruby-spider-0.5.0/debian/control --- ruby-spider-0.5.0/debian/control 2018-12-17 20:11:33.000000000 +0000 +++ ruby-spider-0.5.0/debian/control 2019-02-14 20:57:41.000000000 +0000 @@ -2,13 +2,12 @@ Section: ruby Priority: optional Maintainer: Marc Bigler -Build-Depends: debhelper (>= 11), +Build-Depends: debhelper-compat (= 12), gem2deb, rake -Standards-Version: 4.2.1 +Standards-Version: 4.3.0 Homepage: https://github.com/johnnagro/spider XS-Ruby-Versions: all -Testsuite: autopkgtest-pkg-ruby Package: ruby-spider Architecture: all diff -Nru ruby-spider-0.5.0/debian/copyright ruby-spider-0.5.0/debian/copyright --- ruby-spider-0.5.0/debian/copyright 2018-12-17 20:11:33.000000000 +0000 +++ ruby-spider-0.5.0/debian/copyright 2019-02-14 21:00:28.000000000 +0000 @@ -13,9 +13,9 @@ https://github.com/eribertomota/robot_rules.rb/blob/master/README.md Files: debian/* -Copyright: 2018 Marc Bigler - 2014-2018 Joao Eriberto Mota Filho +Copyright: 2014-2016 Joao Eriberto Mota Filho 2016 Cédric Boutillier + 2018-2019 Marc Bigler License: BSD-3-Clause License: MIT diff -Nru ruby-spider-0.5.0/debian/tests/control ruby-spider-0.5.0/debian/tests/control --- ruby-spider-0.5.0/debian/tests/control 1970-01-01 00:00:00.000000000 +0000 +++ ruby-spider-0.5.0/debian/tests/control 2019-02-11 21:06:15.000000000 +0000 @@ -0,0 +1 @@ +Test-Command: ruby -W0 debian/tests/test.rb diff -Nru ruby-spider-0.5.0/debian/tests/test.rb ruby-spider-0.5.0/debian/tests/test.rb --- ruby-spider-0.5.0/debian/tests/test.rb 1970-01-01 00:00:00.000000000 +0000 +++ ruby-spider-0.5.0/debian/tests/test.rb 2019-02-11 20:51:38.000000000 +0000 @@ -0,0 +1,8 @@ +require 'spider' + +Spider.start_at('https://www.debian.org/') do |s| + s.on :success do |a_url, resp| + puts "#{a_url}: #{resp.code}" + return + end +end