r77943 - in /trunk/libsvn-look-perl: Changes META.yml Makefile.PL README debian/changelog debian/control debian/copyright lib/SVN/Look.pm

angelabad-guest at users.alioth.debian.org angelabad-guest at users.alioth.debian.org
Thu Jul 28 09:07:17 UTC 2011


Author: angelabad-guest
Date: Thu Jul 28 09:07:15 2011
New Revision: 77943

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=77943
Log:
* New upstream release
* debian/control:
  - {Build-}Depends on liburi-perl

Modified:
    trunk/libsvn-look-perl/Changes
    trunk/libsvn-look-perl/META.yml
    trunk/libsvn-look-perl/Makefile.PL
    trunk/libsvn-look-perl/README
    trunk/libsvn-look-perl/debian/changelog
    trunk/libsvn-look-perl/debian/control
    trunk/libsvn-look-perl/debian/copyright
    trunk/libsvn-look-perl/lib/SVN/Look.pm

Modified: trunk/libsvn-look-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/Changes?rev=77943&op=diff
==============================================================================
--- trunk/libsvn-look-perl/Changes (original)
+++ trunk/libsvn-look-perl/Changes Thu Jul 28 09:07:15 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: trunk/libsvn-look-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/META.yml?rev=77943&op=diff
==============================================================================
--- trunk/libsvn-look-perl/META.yml (original)
+++ trunk/libsvn-look-perl/META.yml Thu Jul 28 09:07:15 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: trunk/libsvn-look-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/Makefile.PL?rev=77943&op=diff
==============================================================================
--- trunk/libsvn-look-perl/Makefile.PL (original)
+++ trunk/libsvn-look-perl/Makefile.PL Thu Jul 28 09:07:15 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: trunk/libsvn-look-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/README?rev=77943&op=diff
==============================================================================
--- trunk/libsvn-look-perl/README (original)
+++ trunk/libsvn-look-perl/README Thu Jul 28 09:07:15 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: trunk/libsvn-look-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/debian/changelog?rev=77943&op=diff
==============================================================================
--- trunk/libsvn-look-perl/debian/changelog (original)
+++ trunk/libsvn-look-perl/debian/changelog Thu Jul 28 09:07:15 2011
@@ -1,8 +1,14 @@
-libsvn-look-perl (0.22-2) UNRELEASED; urgency=low
+libsvn-look-perl (0.23-1) unstable; urgency=low
 
+  [ Angel Abad ]
+  * New upstream release
+  * debian/control:
+    - {Build-}Depends on liburi-perl
+
+  [ Ansgar Burchardt ]
   * debian/control: Convert Vcs-* fields to Git.
 
- -- Ansgar Burchardt <ansgar at debian.org>  Wed, 27 Jul 2011 18:48:02 +0200
+ -- Angel Abad <angelabad at gmail.com>  Thu, 28 Jul 2011 11:06:57 +0200
 
 libsvn-look-perl (0.22-1) unstable; urgency=low
 

Modified: trunk/libsvn-look-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/debian/control?rev=77943&op=diff
==============================================================================
--- trunk/libsvn-look-perl/debian/control (original)
+++ trunk/libsvn-look-perl/debian/control Thu Jul 28 09:07:15 2011
@@ -17,6 +17,7 @@
 Package: libsvn-look-perl
 Architecture: all
 Depends: ${misc:Depends}, ${perl:Depends},
+ liburi-perl,
  subversion
 Description: module providing access to svnlook data
  SVN::Look is a simple Perl module that provides a object-oriented wrapper

Modified: trunk/libsvn-look-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/debian/copyright?rev=77943&op=diff
==============================================================================
--- trunk/libsvn-look-perl/debian/copyright (original)
+++ trunk/libsvn-look-perl/debian/copyright Thu Jul 28 09:07:15 2011
@@ -11,6 +11,7 @@
 Copyright: 2008-2011, Angel Abad <angelabad at gmail.com>
  2009, Antonio Radici <antonio at dyne.org>
  2010, Jonathan Yu <jawnsy at cpan.org>
+ 2011, Ansgar Burchardt <ansgar at debian.org>
 License: Artistic or GPL-1+
 
 License: Artistic

Modified: trunk/libsvn-look-perl/lib/SVN/Look.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvn-look-perl/lib/SVN/Look.pm?rev=77943&op=diff
==============================================================================
--- trunk/libsvn-look-perl/lib/SVN/Look.pm (original)
+++ trunk/libsvn-look-perl/lib/SVN/Look.pm Thu Jul 28 09:07:15 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