r46765 - in /branches/upstream/libend-perl/current: Changes MANIFEST META.yml Makefile.PL lib/End.pm t/950_pod.t t/960_pod_coverage.t t/990_kwalitee.t

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Thu Nov 5 04:22:18 UTC 2009


Author: jawnsy-guest
Date: Thu Nov  5 04:22:02 2009
New Revision: 46765

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

Added:
    branches/upstream/libend-perl/current/t/950_pod.t   (with props)
    branches/upstream/libend-perl/current/t/960_pod_coverage.t   (with props)
    branches/upstream/libend-perl/current/t/990_kwalitee.t   (with props)
Modified:
    branches/upstream/libend-perl/current/Changes
    branches/upstream/libend-perl/current/MANIFEST
    branches/upstream/libend-perl/current/META.yml
    branches/upstream/libend-perl/current/Makefile.PL
    branches/upstream/libend-perl/current/lib/End.pm

Modified: branches/upstream/libend-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libend-perl/current/Changes?rev=46765&op=diff
==============================================================================
--- branches/upstream/libend-perl/current/Changes (original)
+++ branches/upstream/libend-perl/current/Changes Thu Nov  5 04:22:02 2009
@@ -1,3 +1,7 @@
+Version 2009110401
++ Modernized Makefile.PL
++ Added POD and Kwalitee tests
+
 Version 2009081101
 + Created Changes.
 + Added README to MANIFEST.

Modified: branches/upstream/libend-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libend-perl/current/MANIFEST?rev=46765&op=diff
==============================================================================
--- branches/upstream/libend-perl/current/MANIFEST (original)
+++ branches/upstream/libend-perl/current/MANIFEST Thu Nov  5 04:22:02 2009
@@ -2,6 +2,9 @@
 MANIFEST
 Makefile.PL
 t/000_tests.t
+t/950_pod.t
+t/960_pod_coverage.t
+t/990_kwalitee.t
 README
 Changes
 META.yml                                 Module meta-data (added by MakeMaker)

Modified: branches/upstream/libend-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libend-perl/current/META.yml?rev=46765&op=diff
==============================================================================
--- branches/upstream/libend-perl/current/META.yml (original)
+++ branches/upstream/libend-perl/current/META.yml Thu Nov  5 04:22:02 2009
@@ -1,21 +1,29 @@
 --- #YAML:1.0
 name:               End
-version:            2009081101
-abstract:           ~
+version:            2009110401
+abstract:           generalized END {}.
 author:
     - Abigail <cpan at abigail.be>
-license:            unknown
+license:            mit
 distribution_type:  module
 configure_requires:
     ExtUtils::MakeMaker:  0
 build_requires:
     ExtUtils::MakeMaker:  0
-requires:  {}
+requires:
+    Exporter:  0
+    perl:      5.006
+    strict:    0
+    warnings:  0
+resources:
+    repository:  git://github.com/Abigail/end.git
 no_index:
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.50
+generated_by:       ExtUtils::MakeMaker version 6.55_02
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4
+keywords:  []
+test_requires:  {}

Modified: branches/upstream/libend-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libend-perl/current/Makefile.PL?rev=46765&op=diff
==============================================================================
--- branches/upstream/libend-perl/current/Makefile.PL (original)
+++ branches/upstream/libend-perl/current/Makefile.PL Thu Nov  5 04:22:02 2009
@@ -1,9 +1,48 @@
+#!/usr/bin/perl
+
+use 5.006;
+
+use strict;
+use warnings;
+no  warnings 'syntax';
+
 use ExtUtils::MakeMaker;
-# See lib/ExtUtils/MakeMaker.pm for details of how to influence
-# the contents of the Makefile that is written.
-WriteMakefile(
-    'NAME'		=> 'End',
-    'VERSION_FROM'	=> 'lib/End.pm', # finds $VERSION
-    'PREREQ_PM'		=> {}, # e.g., Module::Name => 1.1
-     AUTHOR             => 'Abigail <cpan at abigail.be>',
+
+my %args = (
+    NAME                 => 'End',
+    VERSION_FROM         => 'lib/End.pm',
+    ABSTRACT_FROM        => 'lib/End.pm',
+    PREREQ_PM            => {'strict'    => 0,  
+                             'warnings'  => 0,  
+                             'Exporter'  => 0,
+                            }, 
+    MIN_PERL_VERSION     =>  5.006,
+    AUTHOR               => 'Abigail <cpan at abigail.be>',
+    LICENSE              => 'mit',
+    META_MERGE           => {
+        build_requires   => { },
+        test_requires    => { },
+        resources        => {
+            repository   =>
+                           'git://github.com/Abigail/end.git',
+        },
+        keywords         => [qw [ ]],
+    },
 );
+
+my %filter = (
+    MIN_PERL_VERSION     => '6.48',
+    LICENSE              => '6.48',
+    META_MERGE           => '6.46',
+    AUTHOR               => '6.07',
+    ABSTRACT_FROM        => '6.07',
+);
+
+delete $args {$_} for grep {defined $filter {$_} &&
+                            $ExtUtils::MakeMaker::VERSION lt $filter {$_}}
+                            keys %args;
+
+
+WriteMakefile %args;
+
+__END__

Modified: branches/upstream/libend-perl/current/lib/End.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libend-perl/current/lib/End.pm?rev=46765&op=diff
==============================================================================
--- branches/upstream/libend-perl/current/lib/End.pm (original)
+++ branches/upstream/libend-perl/current/lib/End.pm Thu Nov  5 04:22:02 2009
@@ -11,7 +11,7 @@
 our @ISA     = qw /Exporter/;
 our @EXPORT  = qw /end/;
 
-our $VERSION = '2009081101';
+our $VERSION = '2009110401';
 
 sub end (&) {
     my    $code =  shift;

Added: branches/upstream/libend-perl/current/t/950_pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libend-perl/current/t/950_pod.t?rev=46765&op=file
==============================================================================
--- branches/upstream/libend-perl/current/t/950_pod.t (added)
+++ branches/upstream/libend-perl/current/t/950_pod.t Thu Nov  5 04:22:02 2009
@@ -1,0 +1,15 @@
+#!/usr/bin/perl
+
+use Test::More;
+
+use strict;
+use warnings;
+no  warnings 'syntax';
+
+eval "use Test::Pod 1.00";
+plan skip_all => "Test::Pod required for testing POD" if $@;
+
+all_pod_files_ok ();
+
+
+__END__

Propchange: branches/upstream/libend-perl/current/t/950_pod.t
------------------------------------------------------------------------------
    svn:executable = *

Added: branches/upstream/libend-perl/current/t/960_pod_coverage.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libend-perl/current/t/960_pod_coverage.t?rev=46765&op=file
==============================================================================
--- branches/upstream/libend-perl/current/t/960_pod_coverage.t (added)
+++ branches/upstream/libend-perl/current/t/960_pod_coverage.t Thu Nov  5 04:22:02 2009
@@ -1,0 +1,15 @@
+#!/usr/bin/perl
+
+use Test::More;
+
+use strict;
+use warnings;
+no  warnings 'syntax';
+
+eval "use Test::Pod::Coverage 1.00";
+plan skip_all => "Test::Pod::Coverage required for testing POD" if $@;
+
+all_pod_coverage_ok ({private => [qr /^/]});
+
+
+__END__

Propchange: branches/upstream/libend-perl/current/t/960_pod_coverage.t
------------------------------------------------------------------------------
    svn:executable = *

Added: branches/upstream/libend-perl/current/t/990_kwalitee.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libend-perl/current/t/990_kwalitee.t?rev=46765&op=file
==============================================================================
--- branches/upstream/libend-perl/current/t/990_kwalitee.t (added)
+++ branches/upstream/libend-perl/current/t/990_kwalitee.t Thu Nov  5 04:22:02 2009
@@ -1,0 +1,21 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+
+use Test::More;
+
+my $garbage = "Debian_CPANTS.txt";
+
+eval {
+    require Test::Kwalitee;
+    Test::Kwalitee -> import;
+};
+
+plan skip_all => 'Test::Kwalitee not installed; skipping' if $@;
+
+if (-f $garbage) {
+    unlink $garbage or die "Failed to clean up $garbage";
+}
+
+__END__

Propchange: branches/upstream/libend-perl/current/t/990_kwalitee.t
------------------------------------------------------------------------------
    svn:executable = *




More information about the Pkg-perl-cvs-commits mailing list