r62856 - in /trunk/libhook-lexwrap-perl: Build.PL Changes MANIFEST META.yml Makefile.PL debian/changelog lib/Hook/LexWrap.pm t/example1.t

carnil-guest at users.alioth.debian.org carnil-guest at users.alioth.debian.org
Fri Sep 24 20:35:41 UTC 2010


Author: carnil-guest
Date: Fri Sep 24 20:35:14 2010
New Revision: 62856

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=62856
Log:
New upstream release

Added:
    trunk/libhook-lexwrap-perl/t/example1.t
      - copied unchanged from r62855, branches/upstream/libhook-lexwrap-perl/current/t/example1.t
Modified:
    trunk/libhook-lexwrap-perl/Build.PL
    trunk/libhook-lexwrap-perl/Changes
    trunk/libhook-lexwrap-perl/MANIFEST
    trunk/libhook-lexwrap-perl/META.yml
    trunk/libhook-lexwrap-perl/Makefile.PL
    trunk/libhook-lexwrap-perl/debian/changelog
    trunk/libhook-lexwrap-perl/lib/Hook/LexWrap.pm

Modified: trunk/libhook-lexwrap-perl/Build.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhook-lexwrap-perl/Build.PL?rev=62856&op=diff
==============================================================================
--- trunk/libhook-lexwrap-perl/Build.PL (original)
+++ trunk/libhook-lexwrap-perl/Build.PL Fri Sep 24 20:35:14 2010
@@ -18,7 +18,8 @@
       'repository' => 'http://github.com/chorny/Hook-LexWrap',
     }
   },
-  'dist_version_from' => 'lib/Hook/LexWrap.pm'
+  'dist_version_from' => 'lib/Hook/LexWrap.pm',
+  'auto_configure_requires' => 0,
 );
 
 $build->create_build_script();

Modified: trunk/libhook-lexwrap-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhook-lexwrap-perl/Changes?rev=62856&op=diff
==============================================================================
--- trunk/libhook-lexwrap-perl/Changes (original)
+++ trunk/libhook-lexwrap-perl/Changes Fri Sep 24 20:35:14 2010
@@ -57,3 +57,7 @@
         - Add Build.PL
 
         - better support for debugger
+
+0.24    Sep 24 2010
+        - Makefile.PL fixed
+        - New test added

Modified: trunk/libhook-lexwrap-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhook-lexwrap-perl/MANIFEST?rev=62856&op=diff
==============================================================================
--- trunk/libhook-lexwrap-perl/MANIFEST (original)
+++ trunk/libhook-lexwrap-perl/MANIFEST Fri Sep 24 20:35:14 2010
@@ -1,12 +1,13 @@
+Build.PL
 Changes
-MANIFEST
-Makefile.PL
-Build.PL
-README
-lib/Hook/LexWrap.pm
-t/test.t
-t/pod.t
 demo/demo_memo.pl
 demo/demo_temp.pl
 is_prerequisite
-META.yml                                 Module meta-data (added by MakeMaker)
+lib/Hook/LexWrap.pm
+Makefile.PL
+MANIFEST			This list of files
+META.yml
+README
+t/example1.t
+t/pod.t
+t/test.t

Modified: trunk/libhook-lexwrap-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhook-lexwrap-perl/META.yml?rev=62856&op=diff
==============================================================================
--- trunk/libhook-lexwrap-perl/META.yml (original)
+++ trunk/libhook-lexwrap-perl/META.yml Fri Sep 24 20:35:14 2010
@@ -4,9 +4,7 @@
   - 'Damian Conway (damian at conway.org)'
 build_requires:
   Test::More: 0
-configure_requires:
-  Module::Build: 0.36
-generated_by: 'Module::Build version 0.3603'
+generated_by: 'Module::Build version 0.3614'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -15,7 +13,7 @@
 provides:
   Hook::LexWrap:
     file: lib/Hook/LexWrap.pm
-    version: 0.23
+    version: 0.24
   Hook::LexWrap::Cleanup:
     file: lib/Hook/LexWrap.pm
 requires:
@@ -23,4 +21,4 @@
 resources:
   license: http://dev.perl.org/licenses/
   repository: http://github.com/chorny/Hook-LexWrap
-version: 0.23
+version: 0.24

Modified: trunk/libhook-lexwrap-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhook-lexwrap-perl/Makefile.PL?rev=62856&op=diff
==============================================================================
--- trunk/libhook-lexwrap-perl/Makefile.PL (original)
+++ trunk/libhook-lexwrap-perl/Makefile.PL Fri Sep 24 20:35:14 2010
@@ -14,32 +14,36 @@
     BUILD_REQUIRES => {
         'Test::More' => 0,
     },
-    ($ExtUtils::MakeMaker::VERSION ge '6.31'? 
-     ('LICENSE'		=> 'perl', ) : ()),
-    ($ExtUtils::MakeMaker::VERSION ge '6.48'? 
-     ('MIN_PERL_VERSION' => 5.006,) : ()),
+    LICENSE => 'perl',
+    MIN_PERL_VERSION => '5.006',
+    META_MERGE => {
+        resources => {
+            repository => 'http://github.com/chorny/Hook-LexWrap',
+        },
+    },
     clean               => { FILES => 'Hook-LexWrap-*' },
 );
 
-sub WriteMakefile1 {
-        my %params=@_;
-        my $eumm_version=$ExtUtils::MakeMaker::VERSION;
-        $eumm_version=eval $eumm_version;
-        die "EXTRA_META is deprecated" if exists $params{EXTRA_META};
-        die "License not specified" if not exists $params{LICENSE};
-        if ($params{BUILD_REQUIRES} and $eumm_version < 6.5503) { #
-            #Should be modified in future when EUMM will
-            #correctly support BUILD_REQUIRES.
-            #EUMM 6.5502 has problems with BUILD_REQUIRES
-            $params{PREREQ_PM}={ %{$params{PREREQ_PM} || {}} , %{$params{BUILD_REQUIRES}} };
-            delete $params{BUILD_REQUIRES};
-        }
-        delete $params{CONFIGURE_REQUIRES} if $eumm_version < 6.52;
-        delete $params{MIN_PERL_VERSION} if $eumm_version < 6.48;
-        delete $params{META_MERGE} if $eumm_version < 6.46;
-        delete $params{META_ADD} if $eumm_version < 6.46;
-        delete $params{LICENSE} if $eumm_version < 6.31;
-        delete $params{AUTHOR} if $] < 5.005;
-        delete $params{ABSTRACT_FROM} if $] < 5.005;
-        WriteMakefile(%params);
+sub WriteMakefile1 {  #Written by Alexandr Ciornii, version 0.21. Added by eumm-upgrade.
+    my %params=@_;
+    my $eumm_version=$ExtUtils::MakeMaker::VERSION;
+    $eumm_version=eval $eumm_version;
+    die "EXTRA_META is deprecated" if exists $params{EXTRA_META};
+    die "License not specified" if not exists $params{LICENSE};
+    if ($params{BUILD_REQUIRES} and $eumm_version < 6.5503) {
+        #EUMM 6.5502 has problems with BUILD_REQUIRES
+        $params{PREREQ_PM}={ %{$params{PREREQ_PM} || {}} , %{$params{BUILD_REQUIRES}} };
+        delete $params{BUILD_REQUIRES};
+    }
+    delete $params{CONFIGURE_REQUIRES} if $eumm_version < 6.52;
+    delete $params{MIN_PERL_VERSION} if $eumm_version < 6.48;
+    delete $params{META_MERGE} if $eumm_version < 6.46;
+    delete $params{META_ADD} if $eumm_version < 6.46;
+    delete $params{LICENSE} if $eumm_version < 6.31;
+    delete $params{AUTHOR} if $] < 5.005;
+    delete $params{ABSTRACT_FROM} if $] < 5.005;
+    delete $params{BINARY_LOCATION} if $] < 5.005;
+
+    WriteMakefile(%params);
 }
+

Modified: trunk/libhook-lexwrap-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhook-lexwrap-perl/debian/changelog?rev=62856&op=diff
==============================================================================
--- trunk/libhook-lexwrap-perl/debian/changelog (original)
+++ trunk/libhook-lexwrap-perl/debian/changelog Fri Sep 24 20:35:14 2010
@@ -1,3 +1,9 @@
+libhook-lexwrap-perl (0.24-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>  Fri, 24 Sep 2010 22:34:17 +0200
+
 libhook-lexwrap-perl (0.23-1) unstable; urgency=low
 
   [ Nathan Handler ]

Modified: trunk/libhook-lexwrap-perl/lib/Hook/LexWrap.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhook-lexwrap-perl/lib/Hook/LexWrap.pm?rev=62856&op=diff
==============================================================================
--- trunk/libhook-lexwrap-perl/lib/Hook/LexWrap.pm (original)
+++ trunk/libhook-lexwrap-perl/lib/Hook/LexWrap.pm Fri Sep 24 20:35:14 2010
@@ -2,7 +2,7 @@
 use 5.006;
 use strict;
 use warnings;
-our $VERSION = '0.23';
+our $VERSION = '0.24';
 use Carp;
 
 {




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