diff -Nru jekyll-3.8.3+dfsg/debian/changelog jekyll-3.8.3+dfsg/debian/changelog --- jekyll-3.8.3+dfsg/debian/changelog 2018-08-23 13:21:07.000000000 +0200 +++ jekyll-3.8.3+dfsg/debian/changelog 2018-09-11 02:08:09.000000000 +0200 @@ -1,3 +1,11 @@ +jekyll (3.8.3+dfsg-2.1) unstable; urgency=medium + + * Non-maintainer upload + * Fix the build failure by skipping the test that requires network access. + Closes: #907322 + + -- Simon Quigley Mon, 10 Sep 2018 19:08:09 -0500 + jekyll (3.8.3+dfsg-2) unstable; urgency=medium * Team upload diff -Nru jekyll-3.8.3+dfsg/debian/patches/series jekyll-3.8.3+dfsg/debian/patches/series --- jekyll-3.8.3+dfsg/debian/patches/series 2018-08-23 13:01:32.000000000 +0200 +++ jekyll-3.8.3+dfsg/debian/patches/series 2018-09-11 02:08:09.000000000 +0200 @@ -1,3 +1,4 @@ 0001-Replace-git-execution-from-gemspec.patch 0002-Drop-minitest-profile.patch 0003-Remove-relative-LOAD_PATH.patch +skip-test-requiring-network-access.patch diff -Nru jekyll-3.8.3+dfsg/debian/patches/skip-test-requiring-network-access.patch jekyll-3.8.3+dfsg/debian/patches/skip-test-requiring-network-access.patch --- jekyll-3.8.3+dfsg/debian/patches/skip-test-requiring-network-access.patch 1970-01-01 01:00:00.000000000 +0100 +++ jekyll-3.8.3+dfsg/debian/patches/skip-test-requiring-network-access.patch 2018-09-11 02:08:09.000000000 +0200 @@ -0,0 +1,16 @@ +Description: The builders don't have internet access; skip the test needing it +Author: Simon Quigley +Bug-Debian: https://bugs.debian.org/907322 +Forwarded: no +Last-Update: 2018-09-10 +--- a/test/test_utils.rb ++++ b/test/test_utils.rb +@@ -417,7 +417,7 @@ class TestUtils < JekyllUnitTest + + context "Utils::Internet.connected?" do + should "return true if there's internet" do +- assert Utils::Internet.connected? ++ skip "The builders do not have access to the internet" + end + end + end