diff -Nru libnet-xmpp-perl-1.02/debian/changelog libnet-xmpp-perl-1.02/debian/changelog --- libnet-xmpp-perl-1.02/debian/changelog 2014-04-11 20:31:36.000000000 +0000 +++ libnet-xmpp-perl-1.02/debian/changelog 2015-06-09 14:04:00.000000000 +0000 @@ -1,3 +1,20 @@ +libnet-xmpp-perl (1.02-5) unstable; urgency=medium + + * Team upload + + [ Salvatore Bonaccorso ] + * Update Vcs-Browser URL to cgit web frontend + + [ Damyan Ivanov ] + * Mark package as autopkgtestable + * Declare compliance with Debian Policy 3.9.6 + * Add explicit build dependency on libmodule-build-perl + * copyright: fix path to t/lib/Test + * Patch Net::XMPP::Stanza to load Net::XMPP::Debug before using it + autopkgtests fail otherwise + + -- Damyan Ivanov Tue, 09 Jun 2015 14:03:42 +0000 + libnet-xmpp-perl (1.02-4) unstable; urgency=low [ Salvatore Bonaccorso ] diff -Nru libnet-xmpp-perl-1.02/debian/control libnet-xmpp-perl-1.02/debian/control --- libnet-xmpp-perl-1.02/debian/control 2014-04-11 20:31:36.000000000 +0000 +++ libnet-xmpp-perl-1.02/debian/control 2015-06-09 13:52:37.000000000 +0000 @@ -2,13 +2,15 @@ Maintainer: Debian Perl Group Uploaders: gregor herrmann Section: perl +Testsuite: autopkgtest-pkg-perl Priority: optional -Build-Depends: debhelper (>= 8) +Build-Depends: debhelper (>= 8), + libmodule-build-perl Build-Depends-Indep: perl, libauthen-sasl-perl, libxml-stream-perl -Standards-Version: 3.9.5 -Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libnet-xmpp-perl.git +Standards-Version: 3.9.6 +Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libnet-xmpp-perl.git Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libnet-xmpp-perl.git Homepage: https://metacpan.org/release/Net-XMPP diff -Nru libnet-xmpp-perl-1.02/debian/copyright libnet-xmpp-perl-1.02/debian/copyright --- libnet-xmpp-perl-1.02/debian/copyright 2014-04-11 20:31:36.000000000 +0000 +++ libnet-xmpp-perl-1.02/debian/copyright 2015-06-09 13:58:02.000000000 +0000 @@ -7,7 +7,7 @@ Copyright: 1998-2004, Jabber Software Foundation http://jabber.org/ License: LGPL-2+ -Files: t/Lib/Test/* +Files: t/lib/Test/* Copyright: 2001, Michael G Schwern License: Artistic or GPL-1+ diff -Nru libnet-xmpp-perl-1.02/debian/patches/missing-import-of-Net::XMPP::Debug.patch libnet-xmpp-perl-1.02/debian/patches/missing-import-of-Net::XMPP::Debug.patch --- libnet-xmpp-perl-1.02/debian/patches/missing-import-of-Net::XMPP::Debug.patch 1970-01-01 00:00:00.000000000 +0000 +++ libnet-xmpp-perl-1.02/debian/patches/missing-import-of-Net::XMPP::Debug.patch 2015-06-09 14:02:56.000000000 +0000 @@ -0,0 +1,18 @@ +Description: Net::XMPP::Stanza needs to 'use Net::XMPP::Debug' + Without it, loading Net::XMPP::Stanza fails. + . + This was discovered while running automated continuous integration tests for + Debian, part of which is to try to load each module in the package. +Author: Damyan Ivanov +Forwarded: https://rt.cpan.org/Ticket/Display.html?id=105126 +Bug: https://rt.cpan.org/Ticket/Display.html?id=105126 +--- a/lib/Net/XMPP/Stanza.pm ++++ b/lib/Net/XMPP/Stanza.pm +@@ -212,6 +212,7 @@ under the LGPL. + + use strict; + use Carp; ++use Net::XMPP::Debug; + use Net::XMPP::Namespaces; + use vars qw( $AUTOLOAD %FUNCTIONS $DEBUG ); + diff -Nru libnet-xmpp-perl-1.02/debian/patches/series libnet-xmpp-perl-1.02/debian/patches/series --- libnet-xmpp-perl-1.02/debian/patches/series 2014-04-11 20:31:36.000000000 +0000 +++ libnet-xmpp-perl-1.02/debian/patches/series 2015-06-09 13:54:51.000000000 +0000 @@ -3,3 +3,4 @@ spelling.patch 626897_check-definedness-of-hash-key-before-use.patch dns-srv.patch +missing-import-of-Net::XMPP::Debug.patch