r57259 - in /trunk/libnamespace-autoclean-perl: Changes LICENSE META.yml Makefile.PL README debian/changelog debian/copyright dist.ini lib/namespace/autoclean.pm
jawnsy-guest at users.alioth.debian.org
jawnsy-guest at users.alioth.debian.org
Sat May 1 23:11:28 UTC 2010
Author: jawnsy-guest
Date: Sat May 1 23:11:23 2010
New Revision: 57259
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=57259
Log:
Fix documentation typo
IGNORE-VERSION: 0.10-1
* New upstream release
* Use new DEP5 copyright format
Modified:
trunk/libnamespace-autoclean-perl/Changes
trunk/libnamespace-autoclean-perl/LICENSE
trunk/libnamespace-autoclean-perl/META.yml
trunk/libnamespace-autoclean-perl/Makefile.PL
trunk/libnamespace-autoclean-perl/README
trunk/libnamespace-autoclean-perl/debian/changelog
trunk/libnamespace-autoclean-perl/debian/copyright
trunk/libnamespace-autoclean-perl/dist.ini
trunk/libnamespace-autoclean-perl/lib/namespace/autoclean.pm
Modified: trunk/libnamespace-autoclean-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnamespace-autoclean-perl/Changes?rev=57259&op=diff
==============================================================================
--- trunk/libnamespace-autoclean-perl/Changes (original)
+++ trunk/libnamespace-autoclean-perl/Changes Sat May 1 23:11:23 2010
@@ -1,3 +1,6 @@
+0.10 Sat, 01 May 2010 20:32:59 +0200
+ * Fix documentation typo ( Andrew Rodland).
+
0.09 Tue, 15 Sep 2009 07:45:16 +0200
* Fix to avoid deprecation warnings from the latest Class::MOP, but
it still works with older versions too. (Dave Rolsky)
Modified: trunk/libnamespace-autoclean-perl/LICENSE
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnamespace-autoclean-perl/LICENSE?rev=57259&op=diff
==============================================================================
--- trunk/libnamespace-autoclean-perl/LICENSE (original)
+++ trunk/libnamespace-autoclean-perl/LICENSE Sat May 1 23:11:23 2010
@@ -1,4 +1,4 @@
-This software is copyright (c) 2009 by Florian Ragwitz.
+This software is copyright (c) 2010 by Florian Ragwitz.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
@@ -12,7 +12,7 @@
--- The GNU General Public License, Version 1, February 1989 ---
-This software is Copyright (c) 2009 by Florian Ragwitz.
+This software is Copyright (c) 2010 by Florian Ragwitz.
This is free software, licensed under:
@@ -270,7 +270,7 @@
--- The Artistic License 1.0 ---
-This software is Copyright (c) 2009 by Florian Ragwitz.
+This software is Copyright (c) 2010 by Florian Ragwitz.
This is free software, licensed under:
Modified: trunk/libnamespace-autoclean-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnamespace-autoclean-perl/META.yml?rev=57259&op=diff
==============================================================================
--- trunk/libnamespace-autoclean-perl/META.yml (original)
+++ trunk/libnamespace-autoclean-perl/META.yml Sat May 1 23:11:23 2010
@@ -2,15 +2,19 @@
abstract: 'Keep imports out of your namespace'
author:
- 'Florian Ragwitz <rafl at debian.org>'
-generated_by: 'Dist::Zilla::Plugin::MetaYAML version 1.092450'
+build_requires: {}
+configure_requires:
+ ExtUtils::MakeMaker: 6.31
+generated_by: 'Dist::Zilla version 2.101170'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: namespace-autoclean
+recommends: {}
requires:
B::Hooks::EndOfScope: 0.07
Class::MOP: 0.80
List::Util: 0
namespace::clean: 0.11
-version: 0.09
+version: 0.10
Modified: trunk/libnamespace-autoclean-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnamespace-autoclean-perl/Makefile.PL?rev=57259&op=diff
==============================================================================
--- trunk/libnamespace-autoclean-perl/Makefile.PL (original)
+++ trunk/libnamespace-autoclean-perl/Makefile.PL Sat May 1 23:11:23 2010
@@ -2,20 +2,53 @@
use strict;
use warnings;
-use ExtUtils::MakeMaker;
-WriteMakefile(
- DISTNAME => 'namespace-autoclean',
- NAME => 'namespace::autoclean',
- AUTHOR => 'Florian\ Ragwitz\ \<rafl\@debian\.org\>',
- ABSTRACT => 'Keep\ imports\ out\ of\ your\ namespace',
- VERSION => '0.09',
- EXE_FILES => [ qw() ],
- (eval { ExtUtils::MakeMaker->VERSION(6.31) } ? (LICENSE => 'perl') : ()),
- PREREQ_PM => {
- "namespace::clean" => '0.11',
- "List::Util" => '0',
- "Class::MOP" => '0.80',
- "B::Hooks::EndOfScope" => '0.07',
- },
-);
+
+use ExtUtils::MakeMaker 6.31;
+
+
+
+my %WriteMakefileArgs = (
+ 'test' => {
+ 'TESTS' => 't/*.t'
+ },
+ 'NAME' => 'namespace::autoclean',
+ 'DISTNAME' => 'namespace-autoclean',
+ 'CONFIGURE_REQUIRES' => {
+ 'ExtUtils::MakeMaker' => '6.31'
+ },
+ 'AUTHOR' => 'Florian Ragwitz <rafl at debian.org>',
+ 'BUILD_REQUIRES' => {},
+ 'ABSTRACT' => 'Keep imports out of your namespace',
+ 'EXE_FILES' => [],
+ 'VERSION' => '0.10',
+ 'PREREQ_PM' => {
+ 'namespace::clean' => '0.11',
+ 'List::Util' => '0',
+ 'Class::MOP' => '0.80',
+ 'B::Hooks::EndOfScope' => '0.07'
+ },
+ 'LICENSE' => 'perl'
+ );
+
+
+unless ( eval { ExtUtils::MakeMaker->VERSION(6.56) } ) {
+ my $br = delete $WriteMakefileArgs{BUILD_REQUIRES};
+ my $pp = $WriteMakefileArgs{PREREQ_PM};
+ for my $mod ( keys %$br ) {
+ if ( exists $pp->{$mod} ) {
+ $pp->{$mod} = $br->{$mod} if $br->{$mod} > $pp->{$mod};
+ }
+ else {
+ $pp->{$mod} = $br->{$mod};
+ }
+ }
+}
+
+delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
+ unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
+
+WriteMakefile(%WriteMakefileArgs);
+
+
+
Modified: trunk/libnamespace-autoclean-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnamespace-autoclean-perl/README?rev=57259&op=diff
==============================================================================
--- trunk/libnamespace-autoclean-perl/README (original)
+++ trunk/libnamespace-autoclean-perl/README Sat May 1 23:11:23 2010
@@ -1,12 +1,13 @@
-This archive contains the distribution namespace-autoclean, version
-0.09:
+This archive contains the distribution namespace-autoclean,
+version 0.10:
Keep imports out of your namespace
-This software is copyright (c) 2009 by Florian Ragwitz.
+This software is copyright (c) 2010 by Florian Ragwitz.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
+
Modified: trunk/libnamespace-autoclean-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnamespace-autoclean-perl/debian/changelog?rev=57259&op=diff
==============================================================================
--- trunk/libnamespace-autoclean-perl/debian/changelog (original)
+++ trunk/libnamespace-autoclean-perl/debian/changelog Sat May 1 23:11:23 2010
@@ -1,8 +1,16 @@
-libnamespace-autoclean-perl (0.09-2) UNRELEASED; urgency=low
+libnamespace-autoclean-perl (0.10-1) UNRELEASED; urgency=low
+ Fix documentation typo
+ IGNORE-VERSION: 0.10-1
+
+ [ Jonathan Yu ]
+ * New upstream release
+ * Use new DEP5 copyright format
+
+ [ Ryan Niebur ]
* Update ryan52's email address
- -- Ryan Niebur <ryan at debian.org> Fri, 25 Sep 2009 00:25:42 -0700
+ -- Jonathan Yu <jawnsy at cpan.org> Sat, 01 May 2010 19:46:06 -0400
libnamespace-autoclean-perl (0.09-1) unstable; urgency=low
Modified: trunk/libnamespace-autoclean-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnamespace-autoclean-perl/debian/copyright?rev=57259&op=diff
==============================================================================
--- trunk/libnamespace-autoclean-perl/debian/copyright (original)
+++ trunk/libnamespace-autoclean-perl/debian/copyright Sat May 1 23:11:23 2010
@@ -1,28 +1,30 @@
-Format-Specification:
- http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
-Upstream-Maintainer: Florian Ragwitz <rafl at debian.org>
-Upstream-Source: http://search.cpan.org/dist/namespace-autoclean/
-Upstream-Name: namespace-autoclean
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: Florian Ragwitz <rafl at debian.org>
+Source: http://search.cpan.org/dist/namespace-autoclean/
+Name: namespace-autoclean
Files: *
-Copyright: copyright (c) 2009 by Florian Ragwitz.
-License-Alias: Perl
-License: Artistic | GPL-1+
+Copyright: 2010, Florian Ragwitz <rafl at debian.org>
+License: Artistic or GPL-1+
Files: debian/*
-Copyright: 2009, Ryan Niebur <ryan at debian.org>
-License: Artistic | GPL-1+
+Copyright: 2010, Jonathan Yu <jawnsy at cpan.org>
+ 2009, Ryan Niebur <ryanryan52 at gmail.com>
+ 2009, Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>
+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 GNU/Linux systems, the complete text of the Artistic License
- can be found in `/usr/share/common-licenses/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'
+ 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'
Modified: trunk/libnamespace-autoclean-perl/dist.ini
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnamespace-autoclean-perl/dist.ini?rev=57259&op=diff
==============================================================================
--- trunk/libnamespace-autoclean-perl/dist.ini (original)
+++ trunk/libnamespace-autoclean-perl/dist.ini Sat May 1 23:11:23 2010
@@ -1,5 +1,5 @@
name = namespace-autoclean
-version = 0.09
+version = 0.10
author = Florian Ragwitz <rafl at debian.org>
license = Perl_5
copyright_holder = Florian Ragwitz
@@ -15,4 +15,4 @@
remove = PodVersion
remove = BumpVersion
-[PodPurler]
+[PodWeaver]
Modified: trunk/libnamespace-autoclean-perl/lib/namespace/autoclean.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnamespace-autoclean-perl/lib/namespace/autoclean.pm?rev=57259&op=diff
==============================================================================
--- trunk/libnamespace-autoclean-perl/lib/namespace/autoclean.pm (original)
+++ trunk/libnamespace-autoclean-perl/lib/namespace/autoclean.pm Sat May 1 23:11:23 2010
@@ -2,8 +2,9 @@
use warnings;
package namespace::autoclean;
-our $VERSION = '0.09';
-
+BEGIN {
+ $namespace::autoclean::VERSION = '0.10';
+}
# ABSTRACT: Keep imports out of your namespace
use Class::MOP;
@@ -56,7 +57,6 @@
1;
__END__
-
=pod
=head1 NAME
@@ -65,7 +65,7 @@
=head1 VERSION
-version 0.09
+version 0.10
=head1 SYNOPSIS
@@ -100,7 +100,7 @@
package My::MooseX::namespace::autoclean;
use strict;
- use namespace::autocleanclean (); # no cleanup, just load
+ use namespace::autoclean (); # no cleanup, just load
sub import {
namespace::autoclean->import(
@@ -150,19 +150,16 @@
L<B::Hooks::EndOfScope>
-
-
=head1 AUTHOR
Florian Ragwitz <rafl at debian.org>
=head1 COPYRIGHT AND LICENSE
-This software is copyright (c) 2009 by Florian Ragwitz.
+This software is copyright (c) 2010 by Florian Ragwitz.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
-=cut
+=cut
-
More information about the Pkg-perl-cvs-commits
mailing list