diff -Nru libsms-aql-perl-1.02/debian/changelog libsms-aql-perl-1.02/debian/changelog --- libsms-aql-perl-1.02/debian/changelog 2015-06-16 23:08:08.000000000 +0000 +++ libsms-aql-perl-1.02/debian/changelog 2015-08-11 18:10:09.000000000 +0000 @@ -1,3 +1,11 @@ +libsms-aql-perl (1.02-2) unstable; urgency=medium + + * Team upload. + * Add patch to disable a test which needs internet access. + Unreported FTBFS bugs discovered by the reproducible build project. + + -- gregor herrmann Tue, 11 Aug 2015 20:09:52 +0200 + libsms-aql-perl (1.02-1) unstable; urgency=low * Initial Release. (Closes: #788950) diff -Nru libsms-aql-perl-1.02/debian/patches/disable-network.patch libsms-aql-perl-1.02/debian/patches/disable-network.patch --- libsms-aql-perl-1.02/debian/patches/disable-network.patch 1970-01-01 00:00:00.000000000 +0000 +++ libsms-aql-perl-1.02/debian/patches/disable-network.patch 2015-08-11 18:10:09.000000000 +0000 @@ -0,0 +1,21 @@ +Description: skip tests which needs internet access +Origin: vendor +Forwarded: not-needed +Author: gregor herrmann +Last-Update: 2015-08-11 + +--- a/t/1-basic.t ++++ b/t/1-basic.t +@@ -25,9 +25,12 @@ + ok(ref $sender eq 'SMS::AQL', + '$sender is an instance of SMS::AQL'); + ++SKIP: { ++skip "Test requires internet", 1 unless $ENV{USE_NETWORK}; + my $balance = $sender->credit(); + + ok($balance =~ /^[0-9]+$/, 'got account balance'); ++} + + + =begin diff -Nru libsms-aql-perl-1.02/debian/patches/series libsms-aql-perl-1.02/debian/patches/series --- libsms-aql-perl-1.02/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ libsms-aql-perl-1.02/debian/patches/series 2015-08-11 18:10:09.000000000 +0000 @@ -0,0 +1 @@ +disable-network.patch