diff -Nru ruby-coveralls-0.8.23/debian/changelog ruby-coveralls-0.8.23/debian/changelog --- ruby-coveralls-0.8.23/debian/changelog 2020-04-13 14:40:30.000000000 +0000 +++ ruby-coveralls-0.8.23/debian/changelog 2021-01-08 00:14:57.000000000 +0000 @@ -1,3 +1,26 @@ +ruby-coveralls (0.8.23-2) unstable; urgency=medium + + * Team upload. + + [ Cédric Boutillier ] + * Update team name + * Add .gitattributes to keep unwanted files out of the source package + + [ Sergio de Almeida Cipriano Junior ] + * Create debian/upstream/metadata + * debian/control: + - Change VCS repository + - Bump debhelper-compat to 13 + - Add Rules-Requires-Root + - Add ruby-vcr as a build dependency + - Bumped Standards-Version to 4.5.1 + * debian/patches: + - Remove obsolete patch + - Update patches due to removal of obsolete patch + - Add "Forwarded: not-needed" for all patches + + -- Sergio de Almeida Cipriano Junior Thu, 07 Jan 2021 21:14:57 -0300 + ruby-coveralls (0.8.23-1) unstable; urgency=medium * Team upload diff -Nru ruby-coveralls-0.8.23/debian/control ruby-coveralls-0.8.23/debian/control --- ruby-coveralls-0.8.23/debian/control 2020-04-13 14:40:30.000000000 +0000 +++ ruby-coveralls-0.8.23/debian/control 2021-01-08 00:14:57.000000000 +0000 @@ -1,10 +1,10 @@ Source: ruby-coveralls Section: ruby Priority: optional -Maintainer: Debian Ruby Extras Maintainers +Maintainer: Debian Ruby Team Uploaders: Miguel Landaeta , Lucas Kanashiro -Build-Depends: debhelper-compat (= 12), +Build-Depends: debhelper-compat (= 13), gem2deb, ronn, ruby-multi-json (>= 1.3~), @@ -14,11 +14,13 @@ ruby-simplecov, ruby-simplecov-html, ruby-term-ansicolor, - ruby-webmock -Standards-Version: 4.5.0 -Vcs-Git: https://salsa.debian.org/ruby-team/ruby-simplecov.git -Vcs-Browser: https://salsa.debian.org/ruby-team/ruby-simplecov + ruby-webmock, + ruby-vcr +Standards-Version: 4.5.1 +Vcs-Git: https://salsa.debian.org/ruby-team/ruby-coveralls.git +Vcs-Browser: https://salsa.debian.org/ruby-team/ruby-coveralls Homepage: https://coveralls.io +Rules-Requires-Root: no XS-Ruby-Versions: all Testsuite: autopkgtest-pkg-ruby diff -Nru ruby-coveralls-0.8.23/debian/patches/0005-Relax-simplecov-dependency.patch ruby-coveralls-0.8.23/debian/patches/0005-Relax-simplecov-dependency.patch --- ruby-coveralls-0.8.23/debian/patches/0005-Relax-simplecov-dependency.patch 2020-04-13 14:40:30.000000000 +0000 +++ ruby-coveralls-0.8.23/debian/patches/0005-Relax-simplecov-dependency.patch 2021-01-08 00:14:57.000000000 +0000 @@ -1,14 +1,17 @@ From: Lucas Kanashiro Date: Wed, 12 Feb 2020 12:12:31 -0300 Subject: Relax simplecov dependency +Forwarded: not-needed --- coveralls-ruby.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) +diff --git a/coveralls-ruby.gemspec b/coveralls-ruby.gemspec +index 78d0f8b..adbe91d 100644 --- a/coveralls-ruby.gemspec +++ b/coveralls-ruby.gemspec -@@ -20,7 +20,7 @@ +@@ -20,7 +20,7 @@ Gem::Specification.new do |gem| gem.required_ruby_version = '>= 1.8.7' gem.add_dependency 'json', '>= 1.8', '< 3' diff -Nru ruby-coveralls-0.8.23/debian/patches/02_disable_vcr.diff ruby-coveralls-0.8.23/debian/patches/02_disable_vcr.diff --- ruby-coveralls-0.8.23/debian/patches/02_disable_vcr.diff 2020-04-13 14:40:30.000000000 +0000 +++ ruby-coveralls-0.8.23/debian/patches/02_disable_vcr.diff 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -Description: Disable vcr -Author: Miguel Landaeta -Forwarded: no -Last-Update: 2014-03-04 - ---- a/spec/spec_helper.rb -+++ b/spec/spec_helper.rb -@@ -1,6 +1,7 @@ - require 'simplecov' - require 'webmock' --require 'vcr' -+# vcr tests are excluded because is not available in Debian yet: #695195. -+#require 'vcr' - - # We do not need pry to run tests during the build - #require 'pry' if RUBY_VERSION > "1.8.7" -@@ -30,10 +31,10 @@ setup_formatter - - require 'coveralls' - --VCR.configure do |c| -- c.cassette_library_dir = 'fixtures/vcr_cassettes' -- c.hook_into :webmock --end -+#VCR.configure do |c| -+# c.cassette_library_dir = 'fixtures/vcr_cassettes' -+# c.hook_into :webmock -+#end - - RSpec.configure do |config| - config.run_all_when_everything_filtered = true diff -Nru ruby-coveralls-0.8.23/debian/patches/04_include_rspec.diff ruby-coveralls-0.8.23/debian/patches/04_include_rspec.diff --- ruby-coveralls-0.8.23/debian/patches/04_include_rspec.diff 2020-04-13 14:40:30.000000000 +0000 +++ ruby-coveralls-0.8.23/debian/patches/04_include_rspec.diff 2021-01-08 00:14:57.000000000 +0000 @@ -1,14 +1,21 @@ -Description: Include rspec module -Author: Miguel Landaeta -Forwarded: no +From: Miguel Landaeta +Date: Fri, 18 Dec 2020 20:41:56 -0300 +Subject: Include rspec module + +Forwarded: not-needed Last-Update: 2014-03-04 +--- + spec/spec_helper.rb | 2 ++ + 1 file changed, 2 insertions(+) +diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb +index 9108b30..df254d9 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb -@@ -2,6 +2,8 @@ require 'simplecov' +@@ -1,6 +1,8 @@ + require 'simplecov' require 'webmock' - # vcr tests are excluded because is not available in Debian yet: #695195. - #require 'vcr' + require 'vcr' +# For some reason rspec wasn't included +require 'rspec' diff -Nru ruby-coveralls-0.8.23/debian/patches/05_disable_pry.diff ruby-coveralls-0.8.23/debian/patches/05_disable_pry.diff --- ruby-coveralls-0.8.23/debian/patches/05_disable_pry.diff 2020-04-13 14:40:30.000000000 +0000 +++ ruby-coveralls-0.8.23/debian/patches/05_disable_pry.diff 2021-01-08 00:14:57.000000000 +0000 @@ -1,8 +1,15 @@ -Description: Disable pry -Author: Lucas Kanashiro -Forwarded: no +From: Lucas Kanashiro +Date: Fri, 18 Dec 2020 20:41:56 -0300 +Subject: Disable pry + +Forwarded: not-needed Last-Update: 2017-09-01 +--- + spec/spec_helper.rb | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) +diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb +index 1ae890b..9108b30 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -2,7 +2,8 @@ require 'simplecov' diff -Nru ruby-coveralls-0.8.23/debian/patches/06_remove-tins-from-gemspec.diff ruby-coveralls-0.8.23/debian/patches/06_remove-tins-from-gemspec.diff --- ruby-coveralls-0.8.23/debian/patches/06_remove-tins-from-gemspec.diff 2020-04-13 14:40:30.000000000 +0000 +++ ruby-coveralls-0.8.23/debian/patches/06_remove-tins-from-gemspec.diff 2021-01-08 00:14:57.000000000 +0000 @@ -1,11 +1,20 @@ -Description: remove tins from gemspec - Aparently this dependency is not used anywhere -Author: Lucas Kanashiro +From: Lucas Kanashiro +Date: Fri, 18 Dec 2020 20:41:56 -0300 +Subject: remove tins from gemspec + +Forwarded: not-needed Last-Updated: 2018-07-22 +Aparently this dependency is not used anywhere +--- + coveralls-ruby.gemspec | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/coveralls-ruby.gemspec b/coveralls-ruby.gemspec +index 2d46109..78d0f8b 100644 --- a/coveralls-ruby.gemspec +++ b/coveralls-ruby.gemspec -@@ -21,7 +21,6 @@ +@@ -21,7 +21,6 @@ Gem::Specification.new do |gem| gem.add_dependency 'json', '>= 1.8', '< 3' gem.add_dependency 'simplecov', '~> 0.16.1' diff -Nru ruby-coveralls-0.8.23/debian/patches/series ruby-coveralls-0.8.23/debian/patches/series --- ruby-coveralls-0.8.23/debian/patches/series 2020-04-13 14:40:30.000000000 +0000 +++ ruby-coveralls-0.8.23/debian/patches/series 2021-01-08 00:14:57.000000000 +0000 @@ -1,5 +1,4 @@ 06_remove-tins-from-gemspec.diff 05_disable_pry.diff -02_disable_vcr.diff 04_include_rspec.diff 0005-Relax-simplecov-dependency.patch diff -Nru ruby-coveralls-0.8.23/debian/upstream/metadata ruby-coveralls-0.8.23/debian/upstream/metadata --- ruby-coveralls-0.8.23/debian/upstream/metadata 1970-01-01 00:00:00.000000000 +0000 +++ ruby-coveralls-0.8.23/debian/upstream/metadata 2021-01-08 00:14:57.000000000 +0000 @@ -0,0 +1,4 @@ +Bug-Database: https://github.com/lemurheavy/coveralls-ruby/issues +Bug-Submit: https://github.com/lemurheavy/coveralls-ruby/issues/new +Repository: https://github.com/lemurheavy/coveralls-ruby.git +Repository-Browse: https://github.com/lemurheavy/coveralls-ruby