debian/0000755000000000000000000000000012122664517007174 5ustar debian/control0000644000000000000000000000205412122664363010577 0ustar Source: libtest-xml-perl Section: perl Priority: optional Build-Depends: cdbs, devscripts, perl, debhelper, dh-buildinfo, libxml-parser-perl, libxml-semanticdiff-perl, libxml-sax-perl, libxml-sax-writer-perl, libxml-twig-perl, libxml-xpath-perl Maintainer: Debian Perl Group Uploaders: Jonas Smedegaard Standards-Version: 3.9.4 Vcs-Git: git://anonscm.debian.org/git/pkg-perl/packages/libtest-xml-perl Vcs-Browser: http://git.debian.org/?p=pkg-perl/packages/libtest-xml-perl.git Homepage: http://search.cpan.org/dist/Test-XML/ Package: libtest-xml-perl Architecture: all Depends: ${perl:Depends}, ${misc:Depends}, ${cdbs:Depends} Recommends: ${cdbs:Recommends} Description: compare XML in perl tests This Perl module, Test::XML, provides tools for testing code which deals with XML. These tools are compatible with the Test::More and Test::Simple modules. At present, there is generic XML comparison support, as well as modules for dealing with XML::SAX, XML::Twig and XML::XPath handlers. debian/source/0000755000000000000000000000000011706667316010503 5ustar debian/source/format0000644000000000000000000000001411706667316011711 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000163212122664517011050 0ustar libtest-xml-perl (0.08-2) unstable; urgency=low [ Salvatore Bonaccorso ] * Change Vcs-Git to canonical URI (git://anonscm.debian.org). [ Xavier Guimard ] * Update GPL-2 location. [ Jonas Smedegaard ] * Fix include CDBS snippet perl-build (not perl-makemaker). * Bump dephelper compatibility level to 8. * Bump standards-version to 3.9.4. * Update copyright file: + Bump file format to 1.0. + Fix use comment and license pseudo-sections to obey silly restrictions of copyright format 1.0. * Update package relations: + Relax to build-depend unversioned on cdbs: Needed version satisfied in stable, and oldstable no longer supported. -- Jonas Smedegaard Thu, 21 Mar 2013 21:09:48 +0100 libtest-xml-perl (0.08-1) unstable; urgency=low * Initial packaging release. Closes: bug#612624. -- Jonas Smedegaard Sun, 22 Jan 2012 03:00:39 +0100 debian/compat0000644000000000000000000000000212122664064010367 0ustar 8 debian/watch0000644000000000000000000000022711706667316010235 0ustar # Run the "uscan" command to check for upstream updates and more. version=3 http://search.cpan.org/dist/Test-XML/ .*/Test-XML-(\d.*)\.tar\.gz debian debian/copyright_hints0000644000000000000000000000142712122664014012330 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: FIXME Upstream-Contact: FIXME Source: FIXME Disclaimer: Autogenerated by CDBS Files: Build.PL Changes MANIFEST META.yml Makefile.PL debian/compat debian/control debian/control.in debian/gbp.conf debian/source/format debian/watch t/1.t t/basic.t t/maint.t t/order.t t/sax.t t/twig.t t/whitespace.t t/xpath.t Copyright: *No copyright* License: UNKNOWN FIXME Files: lib/Test/XML.pm lib/Test/XML/SAX.pm lib/Test/XML/Twig.pm lib/Test/XML/XPath.pm Copyright: 2002, semantico License: UNKNOWN FIXME Files: debian/rules Copyright: 2011-2012, Jonas Smedegaard License: GPL-2+ FIXME Files: README Copyright: 2002, semantico License: UNKNOWN FIXME debian/copyright0000644000000000000000000000320412122664275011127 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Test::XML Upstream-Contact: Dominic Mitchell Source: http://search.cpan.org/dist/Test-XML/ Files: * Copyright: 2002, Dominic Mitchell License: Artistic or GPL-1+ Comment: License: . This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. . Comment: . Perl is licensed under either the 'Artistic license' or the 'GNU General Public License' version 1 or later. Files: debian/* Copyright: 2011-2012, Jonas Smedegaard License: GPL-2+ License: Artistic Comment: . On Debian systems the 'Artistic License' is located in '/usr/share/common-licenses/Artistic'. License: GPL-1+ Comment: . On Debian systems the 'GNU General Public License' version 1 is located in '/usr/share/common-licenses/GPL-1'. License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . Comment: . On Debian systems the 'GNU General Public License' version 2 is located in '/usr/share/common-licenses/GPL-2'. . You should have received a copy of the GNU General Public License along with this program. If not, see . debian/gbp.conf0000644000000000000000000000014611706667316010623 0ustar # Configuration file for git-buildpackage and friends [DEFAULT] pristine-tar = True sign-tags = True debian/rules0000755000000000000000000000301212122664032010240 0ustar #!/usr/bin/make -f # -*- mode: makefile; coding: utf-8 -*- # Copyright 2011-2012, Jonas Smedegaard # Description: Main Debian packaging script for Test::XML # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . include /usr/share/cdbs/1/rules/upstream-tarball.mk include /usr/share/cdbs/1/rules/utils.mk include /usr/share/cdbs/1/class/perl-build.mk include /usr/share/cdbs/1/rules/debhelper.mk DEB_UPSTREAM_PACKAGE = Test-XML #DEB_UPSTREAM_URL = http://www.cpan.org/modules/by-module/Test DEB_UPSTREAM_URL = http://search.cpan.org/CPAN/authors/id/S/SE/SEMANTICO DEB_UPSTREAM_TARBALL_MD5 = 490b487e07908358eb64a3c3c5b48143 # Needed both by upstream build process and (always/often) at runtime depends = libxml-parser-perl, libxml-semanticdiff-perl recommends = libxml-sax-perl, libxml-sax-writer-perl, libxml-twig-perl, libxml-xpath-perl CDBS_BUILD_DEPENDS += , $(depends), $(recommends) CDBS_DEPENDS_DEFAULT = $(depends) CDBS_RECOMMENDS_DEFAULT = $(recommends) debian/control.in0000644000000000000000000000157512122664073011211 0ustar Source: libtest-xml-perl Section: perl Priority: optional Build-Depends: @cdbs@ Maintainer: Debian Perl Group Uploaders: Jonas Smedegaard Standards-Version: 3.9.4 Vcs-Git: git://anonscm.debian.org/git/pkg-perl/packages/libtest-xml-perl Vcs-Browser: http://git.debian.org/?p=pkg-perl/packages/libtest-xml-perl.git Homepage: http://search.cpan.org/dist/Test-XML/ Package: libtest-xml-perl Architecture: all Depends: ${perl:Depends}, ${misc:Depends}, ${cdbs:Depends} Recommends: ${cdbs:Recommends} Description: compare XML in perl tests This Perl module, Test::XML, provides tools for testing code which deals with XML. These tools are compatible with the Test::More and Test::Simple modules. At present, there is generic XML comparison support, as well as modules for dealing with XML::SAX, XML::Twig and XML::XPath handlers.