--- libtest-xml-simple-perl-0.09.orig/debian/control +++ libtest-xml-simple-perl-0.09/debian/control @@ -0,0 +1,19 @@ +Source: libtest-xml-simple-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7), quilt (>= 0.40) +Build-Depends-Indep: perl (>= 5.8.0-7), libxml-libxml-perl, libtest-tester-perl, libtest-longstring-perl, libtest-pod-perl (>= 1.14), libtest-pod-coverage-perl (>= 1.04) +Maintainer: Debian Perl Group +Uploaders: Jaldhar H. Vyas , Alex Muntada +Standards-Version: 3.8.1 +Homepage: http://search.cpan.org/dist/Test-XML-Simple/ +Vcs-Svn: svn://svn.debian.org/svn/pkg-perl/trunk/libtest-xml-simple-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtest-xml-simple-perl/ + +Package: libtest-xml-simple-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libxml-libxml-perl, libtest-simple-perl, libtest-longstring-perl +Description: easy testing for XML + Test::XML::Simple is a very basic class for testing XML. It uses the XPath + syntax to locate nodes within the XML. You can also check all or part of the + structure vs. an XML fragment. --- libtest-xml-simple-perl-0.09.orig/debian/copyright +++ libtest-xml-simple-perl-0.09/debian/copyright @@ -0,0 +1,28 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Joe McMahon, +Upstream-Source: http://search.cpan.org/dist/Test-XML-Simple/ +Upstream-Name: Test-XML-Simple + +Files: * +Copyright: Copyright 2005, Yahoo! +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: Copyright 2008, Jaldhar H. Vyas +License: Artistic | GPL-1+ + +License: Artistic + This program is free software; you can redistribute it and/or modify + it under the terms of the Artistic License, which comes with Perl. + On Debian GNU/Linux systems, the complete text of the Artistic License + can be found in /usr/share/common-licenses/Artistic + +License: GPL-1+ + 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 1, or (at your option) + any later version. + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' + --- libtest-xml-simple-perl-0.09.orig/debian/watch +++ libtest-xml-simple-perl-0.09/debian/watch @@ -0,0 +1,3 @@ +# format version number, currently 3; this line is compulsory! +version=3 +http://search.cpan.org/dist/Test-XML-Simple/ .*/Test-XML-Simple-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libtest-xml-simple-perl-0.09.orig/debian/compat +++ libtest-xml-simple-perl-0.09/debian/compat @@ -0,0 +1 @@ +7 --- libtest-xml-simple-perl-0.09.orig/debian/README.source +++ libtest-xml-simple-perl-0.09/debian/README.source @@ -0,0 +1,5 @@ +This package uses quilt to manage all modifications to the upstream +source. Changes are stored in the source package as diffs in +debian/patches and applied during the build. + +See /usr/share/doc/quilt/README.source for a detailed explanation. --- libtest-xml-simple-perl-0.09.orig/debian/changelog +++ libtest-xml-simple-perl-0.09/debian/changelog @@ -0,0 +1,28 @@ +libtest-xml-simple-perl (0.09-2) unstable; urgency=low + + [ gregor herrmann ] + * debian/control: Changed: Switched Vcs-Browser field to ViewSVN + (source stanza). + + [ Alex Muntada ] + * debian/patches, debian/rules: + + Added support for quilt. + + Added invalid_value_for_shared_scalar.patch (Closes: #521984) + * debian/README.source: Added. + * debian/control: + + Added quilt to Build-Depends. + + Upgraded Standards-Version to 3.8.1 + + Added myself to Uploaders. + + [ gregor herrmann ] + * Set debhelper compatibility level to 7; adapt + debian/{control,compat,rules}. + * Don't install README anymore. + + -- Alex Muntada Mon, 06 Apr 2009 03:12:37 +0200 + +libtest-xml-simple-perl (0.09-1) unstable; urgency=low + + * Initial Release. (Closes: #468421) + + -- Jaldhar H. Vyas Thu, 28 Feb 2008 15:54:40 -0500 --- libtest-xml-simple-perl-0.09.orig/debian/rules +++ libtest-xml-simple-perl-0.09/debian/rules @@ -0,0 +1,25 @@ +#!/usr/bin/make -f + +include /usr/share/quilt/quilt.make + +build: build-stamp +build-stamp: $(QUILT_STAMPFN) + dh build + touch $@ + +clean: unpatch + dh $@ + +install: install-stamp +install-stamp: build-stamp + dh install + touch $@ + +binary-arch: + +binary-indep: install + dh $@ + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build --- libtest-xml-simple-perl-0.09.orig/debian/patches/invalid_value_for_shared_scalar.patch +++ libtest-xml-simple-perl-0.09/debian/patches/invalid_value_for_shared_scalar.patch @@ -0,0 +1,14 @@ +Author: Alex Muntada +Description: Bug#521984: libtest-xml-simple-perl: FTBFS: Test failure + Report upstream pending. +--- a/lib/Test/XML/Simple.pm ++++ b/lib/Test/XML/Simple.pm +@@ -48,7 +48,7 @@ + return fail("string can't contain XML: no tags") + unless ($xml =~ //); + eval {$Xml = XML::LibXML->new->parse_string($xml)}; +- $@ ? return fail($@) ++ $@ ? return fail("$@") + : return $Xml; + } + --- libtest-xml-simple-perl-0.09.orig/debian/patches/series +++ libtest-xml-simple-perl-0.09/debian/patches/series @@ -0,0 +1 @@ +invalid_value_for_shared_scalar.patch