r34753 - in /branches/upstream/libxml-atom-perl/current: ./ inc/Module/ inc/Module/Install/ lib/XML/
bricas-guest at users.alioth.debian.org
bricas-guest at users.alioth.debian.org
Mon May 4 14:39:33 UTC 2009
Author: bricas-guest
Date: Mon May 4 14:38:55 2009
New Revision: 34753
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=34753
Log:
[svn-upgrade] Integrating new upstream version, libxml-atom-perl (0.35)
Removed:
branches/upstream/libxml-atom-perl/current/inc/Module/AutoInstall.pm
branches/upstream/libxml-atom-perl/current/inc/Module/Install/AutoInstall.pm
Modified:
branches/upstream/libxml-atom-perl/current/Changes
branches/upstream/libxml-atom-perl/current/MANIFEST
branches/upstream/libxml-atom-perl/current/META.yml
branches/upstream/libxml-atom-perl/current/Makefile.PL
branches/upstream/libxml-atom-perl/current/inc/Module/Install.pm
branches/upstream/libxml-atom-perl/current/inc/Module/Install/Base.pm
branches/upstream/libxml-atom-perl/current/inc/Module/Install/Can.pm
branches/upstream/libxml-atom-perl/current/inc/Module/Install/Fetch.pm
branches/upstream/libxml-atom-perl/current/inc/Module/Install/Include.pm
branches/upstream/libxml-atom-perl/current/inc/Module/Install/Makefile.pm
branches/upstream/libxml-atom-perl/current/inc/Module/Install/Metadata.pm
branches/upstream/libxml-atom-perl/current/inc/Module/Install/Win32.pm
branches/upstream/libxml-atom-perl/current/inc/Module/Install/WriteAll.pm
branches/upstream/libxml-atom-perl/current/lib/XML/Atom.pm
Modified: branches/upstream/libxml-atom-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libxml-atom-perl/current/Changes?rev=34753&op=diff
==============================================================================
--- branches/upstream/libxml-atom-perl/current/Changes (original)
+++ branches/upstream/libxml-atom-perl/current/Changes Mon May 4 14:38:55 2009
@@ -1,6 +1,9 @@
$Id$
Revision history for XML::Atom
+
+0.35 2009.05.01
+ * reworked Module::Install stuff to remove junks
0.34 2009.04.29
* Fixed $entry->source support (Martin Atkins)
Modified: branches/upstream/libxml-atom-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libxml-atom-perl/current/MANIFEST?rev=34753&op=diff
==============================================================================
--- branches/upstream/libxml-atom-perl/current/MANIFEST (original)
+++ branches/upstream/libxml-atom-perl/current/MANIFEST Mon May 4 14:38:55 2009
@@ -1,8 +1,6 @@
.shipit
Changes
-inc/Module/AutoInstall.pm
inc/Module/Install.pm
-inc/Module/Install/AutoInstall.pm
inc/Module/Install/Base.pm
inc/Module/Install/Can.pm
inc/Module/Install/Fetch.pm
Modified: branches/upstream/libxml-atom-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libxml-atom-perl/current/META.yml?rev=34753&op=diff
==============================================================================
--- branches/upstream/libxml-atom-perl/current/META.yml (original)
+++ branches/upstream/libxml-atom-perl/current/META.yml Mon May 4 14:38:55 2009
@@ -1,13 +1,13 @@
---
-abstract: 'Atom API and Feed Support'
+abstract: 'Atom feed and API implementation'
author:
- - 'Benjamin Trott <cpan at stupidfool.org>'
+ - 'Benjamin Trott, Tatsuhiko Miyagawa'
build_requires:
ExtUtils::MakeMaker: 6.42
configure_requires:
ExtUtils::MakeMaker: 6.42
distribution_type: module
-generated_by: 'Module::Install version 0.85'
+generated_by: 'Module::Install version 0.86'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -22,7 +22,8 @@
MIME::Base64: 0
URI: 0
XML::LibXML: 1.64
+ perl: 5.8.1
resources:
license: http://dev.perl.org/licenses/
repository: git://github.com/miyagawa/xml-atom.git
-version: 0.34
+version: 0.35
Modified: branches/upstream/libxml-atom-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libxml-atom-perl/current/Makefile.PL?rev=34753&op=diff
==============================================================================
--- branches/upstream/libxml-atom-perl/current/Makefile.PL (original)
+++ branches/upstream/libxml-atom-perl/current/Makefile.PL Mon May 4 14:38:55 2009
@@ -2,16 +2,9 @@
use inc::Module::Install;
-name('XML-Atom');
-abstract('Atom API and Feed Support');
-author('Benjamin Trott <cpan at stupidfool.org>');
-version_from('lib/XML/Atom.pm');
-license('perl');
-no_index(directory => 't');
+name 'XML-Atom';
+all_from 'lib/XML/Atom.pm';
auto_set_repository;
-sign(0);
-
-include('ExtUtils::AutoInstall');
requires('MIME::Base64');
requires('URI');
@@ -37,6 +30,5 @@
);
auto_include();
-auto_install();
&WriteAll;
Modified: branches/upstream/libxml-atom-perl/current/inc/Module/Install.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libxml-atom-perl/current/inc/Module/Install.pm?rev=34753&op=diff
==============================================================================
--- branches/upstream/libxml-atom-perl/current/inc/Module/Install.pm (original)
+++ branches/upstream/libxml-atom-perl/current/inc/Module/Install.pm Mon May 4 14:38:55 2009
@@ -28,7 +28,7 @@
# This is not enforced yet, but will be some time in the next few
# releases once we can make sure it won't clash with custom
# Module::Install extensions.
- $VERSION = '0.85';
+ $VERSION = '0.86';
# Storage for the pseudo-singleton
$MAIN = undef;
Modified: branches/upstream/libxml-atom-perl/current/inc/Module/Install/Base.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libxml-atom-perl/current/inc/Module/Install/Base.pm?rev=34753&op=diff
==============================================================================
--- branches/upstream/libxml-atom-perl/current/inc/Module/Install/Base.pm (original)
+++ branches/upstream/libxml-atom-perl/current/inc/Module/Install/Base.pm Mon May 4 14:38:55 2009
@@ -4,7 +4,7 @@
use strict 'vars';
use vars qw{$VERSION};
BEGIN {
- $VERSION = '0.85';
+ $VERSION = '0.86';
}
# Suspend handler for "redefined" warnings
Modified: branches/upstream/libxml-atom-perl/current/inc/Module/Install/Can.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libxml-atom-perl/current/inc/Module/Install/Can.pm?rev=34753&op=diff
==============================================================================
--- branches/upstream/libxml-atom-perl/current/inc/Module/Install/Can.pm (original)
+++ branches/upstream/libxml-atom-perl/current/inc/Module/Install/Can.pm Mon May 4 14:38:55 2009
@@ -9,7 +9,7 @@
use vars qw{$VERSION $ISCORE @ISA};
BEGIN {
- $VERSION = '0.85';
+ $VERSION = '0.86';
$ISCORE = 1;
@ISA = qw{Module::Install::Base};
}
Modified: branches/upstream/libxml-atom-perl/current/inc/Module/Install/Fetch.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libxml-atom-perl/current/inc/Module/Install/Fetch.pm?rev=34753&op=diff
==============================================================================
--- branches/upstream/libxml-atom-perl/current/inc/Module/Install/Fetch.pm (original)
+++ branches/upstream/libxml-atom-perl/current/inc/Module/Install/Fetch.pm Mon May 4 14:38:55 2009
@@ -6,7 +6,7 @@
use vars qw{$VERSION $ISCORE @ISA};
BEGIN {
- $VERSION = '0.85';
+ $VERSION = '0.86';
$ISCORE = 1;
@ISA = qw{Module::Install::Base};
}
Modified: branches/upstream/libxml-atom-perl/current/inc/Module/Install/Include.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libxml-atom-perl/current/inc/Module/Install/Include.pm?rev=34753&op=diff
==============================================================================
--- branches/upstream/libxml-atom-perl/current/inc/Module/Install/Include.pm (original)
+++ branches/upstream/libxml-atom-perl/current/inc/Module/Install/Include.pm Mon May 4 14:38:55 2009
@@ -6,7 +6,7 @@
use vars qw{$VERSION $ISCORE @ISA};
BEGIN {
- $VERSION = '0.85';
+ $VERSION = '0.86';
$ISCORE = 1;
@ISA = qw{Module::Install::Base};
}
Modified: branches/upstream/libxml-atom-perl/current/inc/Module/Install/Makefile.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libxml-atom-perl/current/inc/Module/Install/Makefile.pm?rev=34753&op=diff
==============================================================================
--- branches/upstream/libxml-atom-perl/current/inc/Module/Install/Makefile.pm (original)
+++ branches/upstream/libxml-atom-perl/current/inc/Module/Install/Makefile.pm Mon May 4 14:38:55 2009
@@ -7,7 +7,7 @@
use vars qw{$VERSION $ISCORE @ISA};
BEGIN {
- $VERSION = '0.85';
+ $VERSION = '0.86';
$ISCORE = 1;
@ISA = qw{Module::Install::Base};
}
Modified: branches/upstream/libxml-atom-perl/current/inc/Module/Install/Metadata.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libxml-atom-perl/current/inc/Module/Install/Metadata.pm?rev=34753&op=diff
==============================================================================
--- branches/upstream/libxml-atom-perl/current/inc/Module/Install/Metadata.pm (original)
+++ branches/upstream/libxml-atom-perl/current/inc/Module/Install/Metadata.pm Mon May 4 14:38:55 2009
@@ -6,7 +6,7 @@
use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
- $VERSION = '0.85';
+ $VERSION = '0.86';
@ISA = qw{Module::Install::Base};
$ISCORE = 1;
}
Modified: branches/upstream/libxml-atom-perl/current/inc/Module/Install/Win32.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libxml-atom-perl/current/inc/Module/Install/Win32.pm?rev=34753&op=diff
==============================================================================
--- branches/upstream/libxml-atom-perl/current/inc/Module/Install/Win32.pm (original)
+++ branches/upstream/libxml-atom-perl/current/inc/Module/Install/Win32.pm Mon May 4 14:38:55 2009
@@ -6,7 +6,7 @@
use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
- $VERSION = '0.85';
+ $VERSION = '0.86';
@ISA = qw{Module::Install::Base};
$ISCORE = 1;
}
Modified: branches/upstream/libxml-atom-perl/current/inc/Module/Install/WriteAll.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libxml-atom-perl/current/inc/Module/Install/WriteAll.pm?rev=34753&op=diff
==============================================================================
--- branches/upstream/libxml-atom-perl/current/inc/Module/Install/WriteAll.pm (original)
+++ branches/upstream/libxml-atom-perl/current/inc/Module/Install/WriteAll.pm Mon May 4 14:38:55 2009
@@ -6,7 +6,7 @@
use vars qw{$VERSION @ISA $ISCORE};
BEGIN {
- $VERSION = '0.85';
+ $VERSION = '0.86';
@ISA = qw{Module::Install::Base};
$ISCORE = 1;
}
Modified: branches/upstream/libxml-atom-perl/current/lib/XML/Atom.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libxml-atom-perl/current/lib/XML/Atom.pm?rev=34753&op=diff
==============================================================================
--- branches/upstream/libxml-atom-perl/current/lib/XML/Atom.pm (original)
+++ branches/upstream/libxml-atom-perl/current/lib/XML/Atom.pm Mon May 4 14:38:55 2009
@@ -3,7 +3,8 @@
package XML::Atom;
use strict;
-our $VERSION = '0.34';
+use 5.008_001;
+our $VERSION = '0.35';
BEGIN {
@XML::Atom::EXPORT = qw( LIBXML );
@@ -70,13 +71,12 @@
I<XML::Atom> is free software; you may redistribute it and/or modify it
under the same terms as Perl itself.
-=head1 AUTHOR & COPYRIGHT
+=head1 AUTHOR
-Except where otherwise noted, I<XML::Atom> is Copyright 2003-2005
-Benjamin Trott, cpan at stupidfool.org. All rights reserved.
+Benjamin Trott, Tatsuhiko Miyagawa
-=head1 CO-MAINTAINER
+=head1 COPYRIGHT
-Tatsuhiko Miyagawa E<lt>miyagawa at bulknews.netE<gt>
+All rights reserved.
=cut
More information about the Pkg-perl-cvs-commits
mailing list