r46767 - in /trunk/libend-perl: Changes MANIFEST META.yml Makefile.PL debian/changelog 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:24:45 UTC 2009


Author: jawnsy-guest
Date: Thu Nov  5 04:24:35 2009
New Revision: 46767

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=46767
Log:
No release necessary; only fixes to build system
IGNORE-VERSION: 2009110401-1
NOTE when upgrading: this release adds POD tests and coverage too
* New upstream release

Added:
    trunk/libend-perl/t/950_pod.t
      - copied unchanged from r46766, branches/upstream/libend-perl/current/t/950_pod.t
    trunk/libend-perl/t/960_pod_coverage.t
      - copied unchanged from r46766, branches/upstream/libend-perl/current/t/960_pod_coverage.t
    trunk/libend-perl/t/990_kwalitee.t
      - copied unchanged from r46766, branches/upstream/libend-perl/current/t/990_kwalitee.t
Modified:
    trunk/libend-perl/Changes
    trunk/libend-perl/MANIFEST
    trunk/libend-perl/META.yml
    trunk/libend-perl/Makefile.PL
    trunk/libend-perl/debian/changelog
    trunk/libend-perl/lib/End.pm

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

Modified: trunk/libend-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libend-perl/MANIFEST?rev=46767&op=diff
==============================================================================
--- trunk/libend-perl/MANIFEST (original)
+++ trunk/libend-perl/MANIFEST Thu Nov  5 04:24:35 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: trunk/libend-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libend-perl/META.yml?rev=46767&op=diff
==============================================================================
--- trunk/libend-perl/META.yml (original)
+++ trunk/libend-perl/META.yml Thu Nov  5 04:24:35 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: trunk/libend-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libend-perl/Makefile.PL?rev=46767&op=diff
==============================================================================
--- trunk/libend-perl/Makefile.PL (original)
+++ trunk/libend-perl/Makefile.PL Thu Nov  5 04:24:35 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: trunk/libend-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libend-perl/debian/changelog?rev=46767&op=diff
==============================================================================
--- trunk/libend-perl/debian/changelog (original)
+++ trunk/libend-perl/debian/changelog Thu Nov  5 04:24:35 2009
@@ -1,15 +1,17 @@
-libend-perl (2009081101-1) UNRELEASED; urgency=low
+libend-perl (2009110401-1) UNRELEASED; urgency=low
 
-  No release necessary
-  IGNORE-VERSION: 2009081101-1
+  No release necessary; only fixes to build system
+  IGNORE-VERSION: 2009110401-1
+
+  NOTE when upgrading: this release adds POD tests and coverage too
 
   [ Jonathan Yu ]
   * New upstream release
-    + Adds README and Changes
   * Standards-Version 3.8.3 (remove versioned dependency on perl)
   * Rewrote the control description
   * Use new short rules format
   * Cleaned up copyright statement
+  * New upstream release
 
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
@@ -18,7 +20,7 @@
   * Update jawnsy's email address
   * Update ryan52's email address
 
- -- Ryan Niebur <ryan at debian.org>  Fri, 25 Sep 2009 00:24:44 -0700
+ -- Jonathan Yu <jawnsy at cpan.org>  Wed, 04 Nov 2009 19:55:48 -0500
 
 libend-perl (2009040201-1) unstable; urgency=low
 

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




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