diff -Nru ruby-net-http-pipeline-1.0.1/debian/changelog ruby-net-http-pipeline-1.0.1/debian/changelog --- ruby-net-http-pipeline-1.0.1/debian/changelog 2020-02-06 15:12:30.000000000 +0000 +++ ruby-net-http-pipeline-1.0.1/debian/changelog 2020-10-26 21:33:21.000000000 +0000 @@ -1,3 +1,24 @@ +ruby-net-http-pipeline (1.0.1-3) unstable; urgency=medium + + [ Daniel Leidert ] + * Team upload. + * d/control: Add Testsuite field. + + [ Debian Janitor ] + * Set field Upstream-Contact in debian/copyright. + * Remove obsolete field Contact from debian/upstream/metadata (already present + in machine-readable debian/copyright). + + [ Cédric Boutillier ] + * Update team name + * Add gemspec (Closes: #972899) + * Use gem install layout and check dependencies during tests + * Bump debhelper compatibility level to 13 + * Drop explicit dependency on ruby interpreter + * Use autopkgtest-ruby instead of debian/tests/* + + -- Cédric Boutillier Mon, 26 Oct 2020 22:33:21 +0100 + ruby-net-http-pipeline (1.0.1-2) unstable; urgency=medium * Remove testsuite field (no gemspec present) diff -Nru ruby-net-http-pipeline-1.0.1/debian/control ruby-net-http-pipeline-1.0.1/debian/control --- ruby-net-http-pipeline-1.0.1/debian/control 2020-02-06 14:41:47.000000000 +0000 +++ ruby-net-http-pipeline-1.0.1/debian/control 2020-10-26 21:33:21.000000000 +0000 @@ -1,9 +1,9 @@ Source: ruby-net-http-pipeline Section: ruby Priority: optional -Maintainer: Debian Ruby Extras Maintainers +Maintainer: Debian Ruby Team Uploaders: Sophie Brun , Pirate Praveen -Build-Depends: debhelper-compat (= 12), +Build-Depends: debhelper-compat (= 13), gem2deb (>= 1~), rake, ruby-minitest, @@ -13,15 +13,15 @@ Vcs-Browser: https://salsa.debian.org/ruby-team/ruby-net-http-pipeline Homepage: https://github.com/drbrain/net-http-pipeline XS-Ruby-Versions: all +Testsuite: autopkgtest-pkg-ruby Rules-Requires-Root: no Package: ruby-net-http-pipeline Architecture: all XB-Ruby-Versions: ${ruby:Versions} -Depends: ruby | ruby-interpreter, - ${misc:Depends}, +Depends: ${misc:Depends}, ${shlibs:Depends} Description: HTTP/1.1 pipelining implementation atop Net::HTTP - This package contains an HTTP/1.1 pipelining implementation atop Net::HTTP. + This package contains an HTTP/1.1 pipelining implementation atop Net::HTTP. A pipelined connection sends multiple requests to the HTTP server without waiting for the responses. The server will respond in-order. diff -Nru ruby-net-http-pipeline-1.0.1/debian/copyright ruby-net-http-pipeline-1.0.1/debian/copyright --- ruby-net-http-pipeline-1.0.1/debian/copyright 2020-02-04 14:21:08.000000000 +0000 +++ ruby-net-http-pipeline-1.0.1/debian/copyright 2020-10-26 21:33:21.000000000 +0000 @@ -1,6 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: net-http-pipeline Source: https://github.com/drbrain/net-http-pipeline +Upstream-Contact: FIXME/issues Files: * Copyright: 2010 Eric Hodel diff -Nru ruby-net-http-pipeline-1.0.1/debian/gemspec ruby-net-http-pipeline-1.0.1/debian/gemspec --- ruby-net-http-pipeline-1.0.1/debian/gemspec 1970-01-01 00:00:00.000000000 +0000 +++ ruby-net-http-pipeline-1.0.1/debian/gemspec 2020-10-26 21:33:21.000000000 +0000 @@ -0,0 +1,22 @@ +# frozen_string_literal: true + +lib = File.expand_path("../../lib",__FILE__) +$LOAD_PATH.unshift(lib) +require "net/http/pipeline" + +Gem::Specification.new do |spec| + spec.name = "net-http-pipeline" + spec.version = Net::HTTP::Pipeline::VERSION + spec.summary = "HTTP/1.1 pipelining implementation atop Net::HTTP" + spec.description = <<-DESC +This package contains an HTTP/1.1 pipelining implementation atop Net::HTTP. +A pipelined connection sends multiple requests to the HTTP server without +waiting for the responses. The server will respond in-order. + DESC + spec.author = "Eric Hodel" + spec.license = "Expat" + spec.email = "drbrain@segment7.net" + spec.homepage = "https://github.com/drbrain/net-http-pipeline" + spec.files = Dir["lib/**/*"] + Dir["test/**/*"] + Dir["sample/**/*"] + ["History.txt", "Manifest.txt", "README.txt"] +end + diff -Nru ruby-net-http-pipeline-1.0.1/debian/rules ruby-net-http-pipeline-1.0.1/debian/rules --- ruby-net-http-pipeline-1.0.1/debian/rules 2020-02-04 14:36:38.000000000 +0000 +++ ruby-net-http-pipeline-1.0.1/debian/rules 2020-10-26 21:33:21.000000000 +0000 @@ -1,4 +1,7 @@ #!/usr/bin/make -f +export export DH_RUBY = --gem-install +export GEM2DEB_TEST_RUNNER = --check-dependencies + %: dh $@ --buildsystem=ruby --with ruby diff -Nru ruby-net-http-pipeline-1.0.1/debian/tests/control ruby-net-http-pipeline-1.0.1/debian/tests/control --- ruby-net-http-pipeline-1.0.1/debian/tests/control 2020-02-04 14:21:08.000000000 +0000 +++ ruby-net-http-pipeline-1.0.1/debian/tests/control 1970-01-01 00:00:00.000000000 +0000 @@ -1,3 +0,0 @@ -Test-Command: ruby test/test_net_http_pipeline.rb -Restrictions: superficial -Depends: @, ruby-minitest diff -Nru ruby-net-http-pipeline-1.0.1/debian/upstream/metadata ruby-net-http-pipeline-1.0.1/debian/upstream/metadata --- ruby-net-http-pipeline-1.0.1/debian/upstream/metadata 2020-02-04 14:23:44.000000000 +0000 +++ ruby-net-http-pipeline-1.0.1/debian/upstream/metadata 2020-10-26 21:33:21.000000000 +0000 @@ -3,7 +3,6 @@ Bug-Database: FIXME/issues Bug-Submit: FIXME/issues Changelog: FIXME/tags -Contact: FIXME/issues Name: ruby-net-http-pipeline Repository: FIXME.git Repository-Browse: FIXME