r77941 - in /branches/upstream/libsvn-look-perl/current: Changes META.yml Makefile.PL README lib/SVN/Look.pm

angelabad-guest at users.alioth.debian.org angelabad-guest at users.alioth.debian.org
Thu Jul 28 08:55:27 UTC 2011


Author: angelabad-guest
Date: Thu Jul 28 08:55:26 2011
New Revision: 77941

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=77941
Log:
[svn-upgrade] new version libsvn-look-perl (0.23)

Modified:
    branches/upstream/libsvn-look-perl/current/Changes
    branches/upstream/libsvn-look-perl/current/META.yml
    branches/upstream/libsvn-look-perl/current/Makefile.PL
    branches/upstream/libsvn-look-perl/current/README
    branches/upstream/libsvn-look-perl/current/lib/SVN/Look.pm

Modified: branches/upstream/libsvn-look-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-look-perl/current/Changes?rev=77941&op=diff
==============================================================================
--- branches/upstream/libsvn-look-perl/current/Changes (original)
+++ branches/upstream/libsvn-look-perl/current/Changes Thu Jul 28 08:55:26 2011
@@ -1,4 +1,9 @@
 Revision history for SVN-Look. -*- text -*-
+
+0.23	2011-07-27
+
+	Porting Makefile.PL to Windows.
+	Adding URI::file to the dependencies.
 
 0.22	2011-07-21
 

Modified: branches/upstream/libsvn-look-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-look-perl/current/META.yml?rev=77941&op=diff
==============================================================================
--- branches/upstream/libsvn-look-perl/current/META.yml (original)
+++ branches/upstream/libsvn-look-perl/current/META.yml Thu Jul 28 08:55:26 2011
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               SVN-Look
-version:            0.22
+version:            0.23
 abstract:           A caching wrapper aroung the svnlook command.
 author:
     - Gustavo Chaves <gustavo+perl at gnustavo.org>
@@ -13,6 +13,7 @@
 requires:
     File::Spec::Functions:  0
     Test::More:           0
+    URI::file:            0
 no_index:
     directory:
         - t

Modified: branches/upstream/libsvn-look-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-look-perl/current/Makefile.PL?rev=77941&op=diff
==============================================================================
--- branches/upstream/libsvn-look-perl/current/Makefile.PL (original)
+++ branches/upstream/libsvn-look-perl/current/Makefile.PL Thu Jul 28 08:55:26 2011
@@ -6,7 +6,8 @@
 use Getopt::Long  qw(GetOptions);
 
 # clean up the testing flag file.
-unlink('t/author.enabled');
+my $t_author = catfile('t', 'author.enabled');
+unlink($t_author);
 
 my $usage        = "$0 [--author-tests]\n";
 my $author_tests = 0;
@@ -26,19 +27,22 @@
     if $@;
 
 if ($author_tests) {
-    open(ENABLED, ">t/author.enabled") or die "Can't touch ./t/author.enabled: $!";
-    close(ENABLED)                     or die "Can't touch ./t/author.enabled: $!";
+    open(ENABLED, '>', $t_author) or die "Can't touch $t_author: $!\n";
+    close(ENABLED)                or die "Can't touch $t_author: $!\n";
 }
+
+my $look_pm = catfile('lib', 'SVN', 'Look.pm');
 
 WriteMakefile(
     NAME                => 'SVN::Look',
     AUTHOR              => 'Gustavo Chaves <gustavo+perl at gnustavo.org>',
-    VERSION_FROM        => 'lib/SVN/Look.pm',
-    ABSTRACT_FROM       => 'lib/SVN/Look.pm',
+    VERSION_FROM        => $look_pm,
+    ABSTRACT_FROM       => $look_pm,
     PL_FILES            => {},
     PREREQ_PM => {
         'Test::More'    => 0,
 	'File::Spec::Functions' => 0,
+	'URI::file' => 0,
     },
     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
     clean               => { FILES => 'SVN-Look-*' },

Modified: branches/upstream/libsvn-look-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-look-perl/current/README?rev=77941&op=diff
==============================================================================
--- branches/upstream/libsvn-look-perl/current/README (original)
+++ branches/upstream/libsvn-look-perl/current/README Thu Jul 28 08:55:26 2011
@@ -1,6 +1,6 @@
 Name:    SVN-Look
 What:    A caching wrapper aroung the svnlook command.
-Version: 0.22
+Version: 0.23
 Author:  Gustavo Chaves <gnustavo at cpan.org>
 
 SVN-Look is a caching wrapper aroung the svnlook command.

Modified: branches/upstream/libsvn-look-perl/current/lib/SVN/Look.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libsvn-look-perl/current/lib/SVN/Look.pm?rev=77941&op=diff
==============================================================================
--- branches/upstream/libsvn-look-perl/current/lib/SVN/Look.pm (original)
+++ branches/upstream/libsvn-look-perl/current/lib/SVN/Look.pm Thu Jul 28 08:55:26 2011
@@ -11,11 +11,11 @@
 
 =head1 VERSION
 
-Version 0.22
-
-=cut
-
-our $VERSION = '0.22';
+Version 0.23
+
+=cut
+
+our $VERSION = '0.23';
 
 =head1 SYNOPSIS
 




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