r21054 - in /trunk/libfile-remove-perl: 97_meta.t 98_pod.t 99_pmv.t Changes MANIFEST META.yml Makefile.PL README debian/changelog inc/ lib/File/Remove.pm t/97_meta.t t/98_pod.t t/99_pmv.t
gregoa at users.alioth.debian.org
gregoa at users.alioth.debian.org
Sat Jun 14 19:20:13 UTC 2008
Author: gregoa
Date: Sat Jun 14 19:20:12 2008
New Revision: 21054
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=21054
Log:
New upstream release.
Added:
trunk/libfile-remove-perl/inc/
- copied from r21053, branches/upstream/libfile-remove-perl/current/inc/
trunk/libfile-remove-perl/t/97_meta.t
- copied unchanged from r21053, branches/upstream/libfile-remove-perl/current/t/97_meta.t
trunk/libfile-remove-perl/t/98_pod.t
- copied unchanged from r21053, branches/upstream/libfile-remove-perl/current/t/98_pod.t
trunk/libfile-remove-perl/t/99_pmv.t
- copied unchanged from r21053, branches/upstream/libfile-remove-perl/current/t/99_pmv.t
Removed:
trunk/libfile-remove-perl/97_meta.t
trunk/libfile-remove-perl/98_pod.t
trunk/libfile-remove-perl/99_pmv.t
Modified:
trunk/libfile-remove-perl/Changes
trunk/libfile-remove-perl/MANIFEST
trunk/libfile-remove-perl/META.yml
trunk/libfile-remove-perl/Makefile.PL
trunk/libfile-remove-perl/README
trunk/libfile-remove-perl/debian/changelog
trunk/libfile-remove-perl/lib/File/Remove.pm
Modified: trunk/libfile-remove-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-remove-perl/Changes?rev=21054&op=diff
==============================================================================
--- trunk/libfile-remove-perl/Changes (original)
+++ trunk/libfile-remove-perl/Changes Sat Jun 14 19:20:12 2008
@@ -1,4 +1,9 @@
Revision history for Perl extension File::Remove.
+
+1.41 Mon 2 Jun 2008
+ - No functional changes
+ - Updating location of author tests
+ - Switching to Module::Install again, to generate a better META.yml
1.40 Sat 23 Feb 2008
- Dev release looks good, changing to production release
Modified: trunk/libfile-remove-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-remove-perl/MANIFEST?rev=21054&op=diff
==============================================================================
--- trunk/libfile-remove-perl/MANIFEST (original)
+++ trunk/libfile-remove-perl/MANIFEST Sat Jun 14 19:20:12 2008
@@ -1,11 +1,17 @@
-97_meta.t
-98_pod.t
-99_pmv.t
Changes
+inc/Module/Install.pm
+inc/Module/Install/Base.pm
+inc/Module/Install/Can.pm
+inc/Module/Install/Fetch.pm
+inc/Module/Install/Makefile.pm
+inc/Module/Install/Metadata.pm
+inc/Module/Install/Win32.pm
+inc/Module/Install/WriteAll.pm
lib/File/Remove.pm
LICENSE
Makefile.PL
MANIFEST This list of files
+META.yml
README
t/01_compile.t
t/02_directories.t
@@ -13,4 +19,6 @@
t/04_can_delete.t
t/05_links.t
t/06_curly.t
-META.yml Module meta-data (added by MakeMaker)
+t/97_meta.t
+t/98_pod.t
+t/99_pmv.t
Modified: trunk/libfile-remove-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-remove-perl/META.yml?rev=21054&op=diff
==============================================================================
--- trunk/libfile-remove-perl/META.yml (original)
+++ trunk/libfile-remove-perl/META.yml Sat Jun 14 19:20:12 2008
@@ -1,17 +1,25 @@
---- #YAML:1.0
-name: File-Remove
-version: 1.40
-abstract: Remove files and directories
-license: ~
-author:
- - Richard Soderberg <rs at localdomain>
-generated_by: ExtUtils::MakeMaker version 6.42
-distribution_type: module
-requires:
- File::Copy: 0
- File::Glob: 0
- File::Path: 0
- File::Spec: 0.84
+---
+abstract: 'Remove files and directories'
+author:
+ - 'Adam Kennedy <adamk at cpan.org>'
+build_requires:
+ Test::More: 0.42
+distribution_type: module
+generated_by: 'Module::Install version 0.75'
+license: perl
meta-spec:
- url: http://module-build.sourceforge.net/META-spec-v1.3.html
- version: 1.3
+ url: http://module-build.sourceforge.net/META-spec-v1.3.html
+ version: 1.3
+module_name: File::Remove
+name: File-Remove
+no_index:
+ directory:
+ - inc
+ - t
+requires:
+ File::Copy: 0
+ File::Glob: 0
+ File::Path: 0
+ File::Spec: 0.84
+ perl: 5.005
+version: 1.41
Modified: trunk/libfile-remove-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-remove-perl/Makefile.PL?rev=21054&op=diff
==============================================================================
--- trunk/libfile-remove-perl/Makefile.PL (original)
+++ trunk/libfile-remove-perl/Makefile.PL Sat Jun 14 19:20:12 2008
@@ -1,17 +1,10 @@
-use strict;
-use ExtUtils::MakeMaker;
-# See lib/ExtUtils/MakeMaker.pm for details of how to influence
-# the contents of the Makefile that is written.
-WriteMakefile(
- NAME => 'File::Remove',
- VERSION_FROM => 'lib/File/Remove.pm', # finds $VERSION
- PREREQ_PM => {
- 'File::Spec' => '0.84',
- 'File::Copy' => 0,
- 'File::Path' => 0,
- 'File::Glob' => 0,
- }, # e.g., Module::Name => 1.1
- ($] >= 5.005 ? ## Add these new keywords supported since 5.005
- (ABSTRACT_FROM => 'lib/File/Remove.pm', # retrieve abstract from module
- AUTHOR => 'Richard Soderberg <rs at localdomain>') : ()),
-);
+use inc::Module::Install 0.75;
+
+all_from 'lib/File/Remove.pm';
+requires 'File::Spec' => '0.84';
+requires 'File::Copy' => 0;
+requires 'File::Path' => 0;
+requires 'File::Glob' => 0;
+test_requires 'Test::More' => '0.42';
+
+WriteAll;
Modified: trunk/libfile-remove-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-remove-perl/README?rev=21054&op=diff
==============================================================================
--- trunk/libfile-remove-perl/README (original)
+++ trunk/libfile-remove-perl/README Sat Jun 14 19:20:12 2008
@@ -61,17 +61,24 @@
will be called with the filenames that are to be deleted.
BUGS
- See http://rt.cpan.org/NoAuth/Bugs.html?Dist=File-Remove for the
+ See <http://rt.cpan.org/NoAuth/Bugs.html?Dist=File-Remove> for the
up-to-date bug listing.
AUTHOR
+ Adam Kennedy <adamk at cpan.org>
+
+COPYRIGHT
+ Some parts copyright 2006 - 2008 Adam Kennedy.
+
Taken over by Adam Kennedy <adamk at cpan.org>, to fix the "deep readonly
files" bug, and do some more cleaning up.
+
+ Some parts copyright 2004 - 2005 Richard Soderberg.
Taken over by Richard Soderberg <perl at crystalflame.net>, so as to port
it to File::Spec and add tests.
- Original copyright: (c) 1998 by Gabor Egressy, <gabor at vmunix.com>.
+ Original copyright: 1998 by Gabor Egressy, <gabor at vmunix.com>.
This program is free software; you can redistribute and/or modify it
under the same terms as Perl itself.
Modified: trunk/libfile-remove-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-remove-perl/debian/changelog?rev=21054&op=diff
==============================================================================
--- trunk/libfile-remove-perl/debian/changelog (original)
+++ trunk/libfile-remove-perl/debian/changelog Sat Jun 14 19:20:12 2008
@@ -1,3 +1,9 @@
+libfile-remove-perl (1.41-1) UNRELEASED; urgency=low
+
+ * New upstream release.
+
+ -- gregor herrmann <gregoa at debian.org> Sat, 14 Jun 2008 21:18:35 +0200
+
libfile-remove-perl (1.40-1) unstable; urgency=low
[ gregor herrmann ]
Modified: trunk/libfile-remove-perl/lib/File/Remove.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-remove-perl/lib/File/Remove.pm?rev=21054&op=diff
==============================================================================
--- trunk/libfile-remove-perl/lib/File/Remove.pm (original)
+++ trunk/libfile-remove-perl/lib/File/Remove.pm Sat Jun 14 19:20:12 2008
@@ -4,7 +4,7 @@
use strict;
use vars qw(@EXPORT_OK @ISA $VERSION $debug $unlink $rmdir);
BEGIN {
- $VERSION = '1.40';
+ $VERSION = '1.41';
@ISA = qw(Exporter);
@EXPORT_OK = qw(remove rm trash); # nothing by default :)
@@ -264,18 +264,26 @@
=head1 BUGS
-See http://rt.cpan.org/NoAuth/Bugs.html?Dist=File-Remove for the
+See L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=File-Remove> for the
up-to-date bug listing.
=head1 AUTHOR
+
+Adam Kennedy E<lt>adamk at cpan.orgE<gt>
+
+=head1 COPYRIGHT
+
+Some parts copyright 2006 - 2008 Adam Kennedy.
Taken over by Adam Kennedy E<lt>adamk at cpan.orgE<gt>, to fix the
"deep readonly files" bug, and do some more cleaning up.
+Some parts copyright 2004 - 2005 Richard Soderberg.
+
Taken over by Richard Soderberg E<lt>perl at crystalflame.netE<gt>, so as
to port it to L<File::Spec> and add tests.
-Original copyright: (c) 1998 by Gabor Egressy, E<lt>gabor at vmunix.comE<gt>.
+Original copyright: 1998 by Gabor Egressy, E<lt>gabor at vmunix.comE<gt>.
This program is free software; you can redistribute and/or modify it under
the same terms as Perl itself.
More information about the Pkg-perl-cvs-commits
mailing list