debian/0000755000000000000000000000000011640431105007161 5ustar debian/control0000644000000000000000000000301211640431105010560 0ustar Source: libxml-atom-perl Section: perl Priority: optional Build-Depends: debhelper (>= 8) Build-Depends-Indep: perl, libclass-data-inheritable-perl, libdatetime-perl, libdatetime-timezone-perl, libhtml-parser-perl, liblwp-authen-wsse-perl, liburi-perl, libwww-perl, libxml-libxml-perl (>= 1.69), libxml-libxslt-perl, libxml-xpath-perl Maintainer: Debian Perl Group Uploaders: gregor herrmann , Jonathan Yu , Brian Cassidy , Damyan Ivanov , Jose Luis Rivas , Jaldhar H. Vyas , Krzysztof Krzyzaniak (eloy) , Rene Mayorga Standards-Version: 3.9.2 Homepage: http://search.cpan.org/dist/XML-Atom/ Vcs-Git: git://git.debian.org/pkg-perl/packages/libxml-atom-perl.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libxml-atom-perl.git Package: libxml-atom-perl Architecture: all Depends: ${perl:Depends}, ${misc:Depends}, libclass-data-inheritable-perl, libdatetime-perl, libdatetime-timezone-perl, libhtml-parser-perl, liblwp-authen-wsse-perl, liburi-perl, libwww-perl, libxml-libxml-perl (>= 1.69), libxml-libxslt-perl, libxml-xpath-perl Description: module for manipulating Atom feeds XML::Atom is a Perl module that implements the Atom syndication API and archiving format for blogs and other data. This module consists of both the protocol implementation and a simple client for the API. debian/copyright0000644000000000000000000000306611640431105011121 0ustar Format-Specification: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=135 Maintainer: Benjamin Trott Source: http://search.cpan.org/dist/XML-Atom/ Name: XML-Atom Files: * Copyright: 2003-2005, Benjamin Trott License: Artistic or GPL-1+ Files: inc/* Copyright: 2002-2011, Brian Ingerson, Audrey Tang and Adam Kennedy License: Artistic or GPL-1+ Files: debian/* Copyright: 2004, Tim Peeler 2006-2009, Jaldhar H. Vyas 2006-2011, gregor herrmann 2006, Carlo Segre 2007, Krzysztof Krzyzaniak (eloy) 2007-2008, Rene Mayorga 2008, Jose Luis Rivas 2009, Brian Cassidy 2009, Jonathan Yu 2011, Ansgar Burchardt License: Artistic or 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 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 systems, the complete text of version 1 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'. debian/watch0000644000000000000000000000015211640431105010210 0ustar version=3 http://search.cpan.org/dist/XML-Atom/ .*/XML-Atom-v?(\d[\d.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ debian/patches/0000755000000000000000000000000011640431105010610 5ustar debian/patches/series0000644000000000000000000000002511640431105012022 0ustar use-Digest-SHA.patch debian/patches/use-Digest-SHA.patch0000644000000000000000000000222711640431105014256 0ustar From: Ansgar Burchardt Date: Thu, 02 Jun 2011 18:59:01 +0200 Subject: Use Digest::SHA instead of Digest::SHA1 --- a/Makefile.PL +++ b/Makefile.PL @@ -12,7 +12,7 @@ requires('Class::Data::Inheritable'); requires('XML::XPath'); requires('LWP::UserAgent'); -requires('Digest::SHA1'); +requires('Digest::SHA'); requires('DateTime'); requires('DateTime::TimeZone'); requires('XML::LibXML', 1.69); --- a/README +++ b/README @@ -6,7 +6,7 @@ * XML::LibXML * LWP - * Digest::SHA1 + * Digest::SHA * MIME::Base64 * HTML::Parser --- a/lib/XML/Atom/Client.pm +++ b/lib/XML/Atom/Client.pm @@ -9,7 +9,7 @@ use XML::Atom::Entry; use XML::Atom::Feed; use XML::Atom::Util qw( first textValue ); -use Digest::SHA1 qw( sha1 ); +use Digest::SHA qw( sha1 ); use MIME::Base64 qw( encode_base64 ); use DateTime; --- a/lib/XML/Atom/Server.pm +++ b/lib/XML/Atom/Server.pm @@ -6,7 +6,7 @@ use XML::Atom; use base qw( XML::Atom::ErrorHandler ); use MIME::Base64 qw( encode_base64 decode_base64 ); -use Digest::SHA1 qw( sha1 ); +use Digest::SHA qw( sha1 ); use XML::Atom::Util qw( first encode_xml textValue ); use XML::Atom::Entry; debian/compat0000644000000000000000000000000211640431105010357 0ustar 8 debian/changelog0000644000000000000000000002032611640431105011036 0ustar libxml-atom-perl (0.41-1) unstable; urgency=low * New upstream release. * Add (build) dependency on libdatetime-timezone-perl. * Refresh use-Digest-SHA.patch. -- gregor herrmann Tue, 27 Sep 2011 22:29:47 +0200 libxml-atom-perl (0.40-1) unstable; urgency=low [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ Salvatore Bonaccorso ] * debian/copyright: Replace DEP5 Format-Specification URL from svn.debian.org to anonscm.debian.org URL. [ gregor herrmann ] * New upstream release. * Update years of packaging copyright. * Bump debhelper compatibility level to 8. -- gregor herrmann Sat, 24 Sep 2011 20:58:26 +0200 libxml-atom-perl (0.39-1) unstable; urgency=low * Team upload. * New upstream release. -- Ansgar Burchardt Tue, 21 Jun 2011 18:22:39 +0200 libxml-atom-perl (0.38-1) unstable; urgency=low * Team upload. * New upstream release. * Use Digest::SHA instead of Digest::SHA1 and remove libdigest-sha1-perl from (Build-)Depends. + new patch: use-Digest-SHA.patch * Use source format 3.0 (quilt). * debian/copyright: Formatting changes; refer to GPL-1; refer to "Debian systems" instead of "Debian GNU/Linux systems". * Bump Standards-Version to 3.9.2. -- Ansgar Burchardt Thu, 02 Jun 2011 19:00:01 +0200 libxml-atom-perl (0.37-1) unstable; urgency=low * New upstream release -- Jonathan Yu Wed, 30 Dec 2009 23:41:27 -0500 libxml-atom-perl (0.36-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release * Add myself to Uploaders * Rewrite control description [ Brian Cassidy ] * New upstream release [ gregor herrmann ] * debian/rules: remove workaround for Module::AutoInstall, not needed anymore. Set back debhelper dependency in debian/control. [ Nathan Handler ] * debian/watch: Update to ignore development releases. -- Jonathan Yu Tue, 22 Dec 2009 08:33:42 -0500 libxml-atom-perl (0.34-1) unstable; urgency=low [ Brian Cassidy ] * New upstream release * debian/copyright: + update copyright on inc/* + update format * debian/control: Standards-Version to 3.8.1 [ Damyan Ivanov ] * Remove Tim Peeler from Uploaders on MIA team request. Closes: #519384 * add myself to Uploaders [ gregor herrmann ] * Set PERL5_CPANPLUS_IS_RUNNING in debian/rules to keep Module::AutoInstall from loading CPAN.pm; adjust dependency on debhelper in debian/control. -- Brian Cassidy Thu, 30 Apr 2009 09:25:54 -0300 libxml-atom-perl (0.33-1) unstable; urgency=low [ Brian Cassidy ] * New upstream release * debian/control: Add myself to Uploaders [ Jaldhar H. Vyas ] * debian/control: Added myself to Uploaders -- Jaldhar H. Vyas Thu, 15 Jan 2009 15:34:26 -0500 libxml-atom-perl (0.32-1) unstable; urgency=low * New upstream release. -- gregor herrmann Fri, 28 Nov 2008 21:00:31 +0100 libxml-atom-perl (0.31-1) unstable; urgency=low * debian/control: Changed: Switched Vcs-Browser field to ViewSVN (source stanza). * New upstream release. -- gregor herrmann Sat, 22 Nov 2008 17:31:09 +0100 libxml-atom-perl (0.29-1) unstable; urgency=low [ David Paleino ] * debian/control: removed myself from Uploaders [ Jose Luis Rivas ] * New upstream release * Switched to debhelper v7, updated debian/rules, debian/compat and build dependencies to debhelper >= 7 on debian/control. * Bumped to Standards-Version 3.8.0 wo/ changes needed. * debian/copyright: Updated formatting. * Added me as Uploader. [ gregor herrmann ] * debian/watch: extended regexp for matching upstream releases. * debian/copyright: - Perl is licensed under GPL-1+, not GPL-2+ - add information for files under inc/ - add Upstream-Name header * debian/control: - change my email address - re-wrap a long line - remove a spurious space -- Jose Luis Rivas Sun, 02 Nov 2008 03:28:32 -0430 libxml-atom-perl (0.28-1) unstable; urgency=low [ David Paleino ] * Newer upstream release 0.28 [ gregor herrmann ] * Don't ignore return value of ($MAKE) distclean. * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser field (source stanza); Homepage field (source stanza). Removed: Homepage pseudo-field (Description); XS-Vcs-Svn fields. [ David Paleino ] * New upstream release (Closes: #442817) * debian/control: - Added myself to Uploaders field - Added Homepage field - Fixed dependency on libxml-xml-perl to (>= 1.64) from (>= 1.54) * debian/rules: - Using new approach to build the package (using environment variables) - Moved $(MAKE) test under the build target, from the install - Removed useless comments - Some general cleanup * debian/patches/: - test_cases.dpatch adjusted to apply cleanly on new testfiles [ Damyan Ivanov ] * debian/rules: + Removed unneeded dh_link and dh_strip calls + Move dh_clean $stamp_files before distclean + Remove unneeded OPTIMIZE="..." + Use PERL_AUTOINSTALL=--skip when invoking $(Perl) Makefile.PL to avoid downloading missing dependencies from CPAN * debian/control -- Bumped build-dependency on libxml-libxml-perl to 1.64 as well [ Rene Mayorga ] * Remove test-cases patch, this problem is solved with libxml-libxml-perl >= 1.64 * debian/control + Raise debhelper version to 6 + set standards-version to 3.7.3 + wrap B-D-I and Uploaders field + remove quilt from B-D + remove libxml-xpath perl from B-D-I and Depends (Closes: #459580) thanks goes to niko * debian/rules + remove quilt + remove VENDORARCHEXP and INSTALLVENDORARCH + conditional remove of /usr/lib/perl5 + Don't install README file, it only have Install Instructions * debian/copyright: Convert to machine-readble format, and copyright notice from upstream * Improve debian/watch -- Rene Mayorga Mon, 11 Feb 2008 10:46:28 -0600 libxml-atom-perl (0.25-2) unstable; urgency=low * Test cases changed to comply with new version output's from libxml-libmxl-perl (Closes: #432544) * dpatch added to Build-Depends * debian/rules modified according to use dpatch * Added myself to debian/control - Uploaders -- Rene Mayorga Tue, 10 Jul 2007 14:24:45 -0600 libxml-atom-perl (0.25-1) unstable; urgency=low * New upstream release * debian/control: Added me to Uploaders -- Krzysztof Krzyzaniak (eloy) Fri, 20 Apr 2007 14:53:16 +0200 libxml-atom-perl (0.23-1) unstable; urgency=low * New upstream release. -- gregor herrmann Sat, 2 Sep 2006 19:59:52 +0200 libxml-atom-perl (0.22a-1) unstable; urgency=low * Arghhh! I did the debian-native thing too! -- Carlo Segre Mon, 21 Aug 2006 23:56:28 -0500 libxml-atom-perl (0.22-1) unstable; urgency=low * New upstream release (closes: #383789). * New maintainer: Debian Perl Group. * Set Standards-Version to 3.7.2 (no changes). * Move debhelper to Build-Depends. * Set debhelper compatibility level to 5. * Add watch file. * Activate tests in debian/rules. * Ack previous NMUs (closes: #350850, #331004). * Add libclass-data-inheritable-perl and libxml-xpath-perl to (build) dependencies. -- gregor herrmann Tue, 22 Aug 2006 00:06:30 +0200 libxml-atom-perl (0.16a-0.1) unstable; urgency=low * Doh! In my haste to upload this, I accidently made the package debian-native. -- Jaldhar H. Vyas Fri, 3 Feb 2006 10:51:35 -0500 libxml-atom-perl (0.16-0.1) unstable; urgency=low * NMU. New upstrem version. (Closes: #350850) * remove editor swap file inadvertently left in package. (Closes: #331004) -- Jaldhar H. Vyas Fri, 3 Feb 2006 10:15:16 -0500 libxml-atom-perl (0.09-1) unstable; urgency=low * New Upstream Version (closes #283590) -- Tim Peeler Fri, 31 Dec 2004 09:14:58 +0500 libxml-atom-perl (0.05-1) unstable; urgency=low * Initial Release. -- Tim Peeler Thu, 15 Apr 2004 12:23:14 +0500 debian/source/0000755000000000000000000000000011640431105010461 5ustar debian/source/format0000644000000000000000000000001411640431105011667 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000003611640431105010240 0ustar #!/usr/bin/make -f %: dh $@