r57253 - in /branches/upstream/libnamespace-autoclean-perl/current: Changes LICENSE META.yml Makefile.PL README dist.ini lib/namespace/autoclean.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sat May 1 22:59:32 UTC 2010


Author: jawnsy-guest
Date: Sat May  1 22:59:27 2010
New Revision: 57253

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=57253
Log:
[svn-upgrade] Integrating new upstream version, libnamespace-autoclean-perl (0.10)

Modified:
    branches/upstream/libnamespace-autoclean-perl/current/Changes
    branches/upstream/libnamespace-autoclean-perl/current/LICENSE
    branches/upstream/libnamespace-autoclean-perl/current/META.yml
    branches/upstream/libnamespace-autoclean-perl/current/Makefile.PL
    branches/upstream/libnamespace-autoclean-perl/current/README
    branches/upstream/libnamespace-autoclean-perl/current/dist.ini
    branches/upstream/libnamespace-autoclean-perl/current/lib/namespace/autoclean.pm

Modified: branches/upstream/libnamespace-autoclean-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnamespace-autoclean-perl/current/Changes?rev=57253&op=diff
==============================================================================
--- branches/upstream/libnamespace-autoclean-perl/current/Changes (original)
+++ branches/upstream/libnamespace-autoclean-perl/current/Changes Sat May  1 22:59:27 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: branches/upstream/libnamespace-autoclean-perl/current/LICENSE
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnamespace-autoclean-perl/current/LICENSE?rev=57253&op=diff
==============================================================================
--- branches/upstream/libnamespace-autoclean-perl/current/LICENSE (original)
+++ branches/upstream/libnamespace-autoclean-perl/current/LICENSE Sat May  1 22:59:27 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: branches/upstream/libnamespace-autoclean-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnamespace-autoclean-perl/current/META.yml?rev=57253&op=diff
==============================================================================
--- branches/upstream/libnamespace-autoclean-perl/current/META.yml (original)
+++ branches/upstream/libnamespace-autoclean-perl/current/META.yml Sat May  1 22:59:27 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: branches/upstream/libnamespace-autoclean-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnamespace-autoclean-perl/current/Makefile.PL?rev=57253&op=diff
==============================================================================
--- branches/upstream/libnamespace-autoclean-perl/current/Makefile.PL (original)
+++ branches/upstream/libnamespace-autoclean-perl/current/Makefile.PL Sat May  1 22:59:27 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: branches/upstream/libnamespace-autoclean-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnamespace-autoclean-perl/current/README?rev=57253&op=diff
==============================================================================
--- branches/upstream/libnamespace-autoclean-perl/current/README (original)
+++ branches/upstream/libnamespace-autoclean-perl/current/README Sat May  1 22:59:27 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: branches/upstream/libnamespace-autoclean-perl/current/dist.ini
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnamespace-autoclean-perl/current/dist.ini?rev=57253&op=diff
==============================================================================
--- branches/upstream/libnamespace-autoclean-perl/current/dist.ini (original)
+++ branches/upstream/libnamespace-autoclean-perl/current/dist.ini Sat May  1 22:59:27 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: branches/upstream/libnamespace-autoclean-perl/current/lib/namespace/autoclean.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnamespace-autoclean-perl/current/lib/namespace/autoclean.pm?rev=57253&op=diff
==============================================================================
--- branches/upstream/libnamespace-autoclean-perl/current/lib/namespace/autoclean.pm (original)
+++ branches/upstream/libnamespace-autoclean-perl/current/lib/namespace/autoclean.pm Sat May  1 22:59:27 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