r43494 - in /branches/upstream/libparent-perl/current: Changes META.yml Makefile.PL lib/parent.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Wed Sep 2 15:09:11 UTC 2009


Author: jawnsy-guest
Date: Wed Sep  2 15:09:06 2009
New Revision: 43494

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

Modified:
    branches/upstream/libparent-perl/current/Changes
    branches/upstream/libparent-perl/current/META.yml
    branches/upstream/libparent-perl/current/Makefile.PL
    branches/upstream/libparent-perl/current/lib/parent.pm

Modified: branches/upstream/libparent-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libparent-perl/current/Changes?rev=43494&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/Changes (original)
+++ branches/upstream/libparent-perl/current/Changes Wed Sep  2 15:09:06 2009
@@ -1,3 +1,9 @@
+0.223  20090901
+    . No functional changes, no need to upgrade
+    + Fix Makefile.PL so that (re)installing parent under 5.10.1+
+      installs into perl/ instead of site/, patched by J.D.Hedden
+      fixes RT #49328
+
 0.222  20090828
     . No functional changes, no need to upgrade
     + Documentation fix suggested by Clinton Gormley

Modified: branches/upstream/libparent-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libparent-perl/current/META.yml?rev=43494&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/META.yml (original)
+++ branches/upstream/libparent-perl/current/META.yml Wed Sep  2 15:09:06 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               parent
-version:            0.222
+version:            0.223
 abstract:           ~
 author:  []
 license:            unknown

Modified: branches/upstream/libparent-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libparent-perl/current/Makefile.PL?rev=43494&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/Makefile.PL (original)
+++ branches/upstream/libparent-perl/current/Makefile.PL Wed Sep  2 15:09:06 2009
@@ -11,7 +11,7 @@
     NAME            => 'parent',
     VERSION_FROM    => "lib/parent.pm", # finds $VERSION
     PREREQ_PM       => { Test::More => 0.40 },
-    INSTALLDIRS => ($] >= 5.011 ? 'perl' : 'site'),
+    INSTALLDIRS => ($] >= 5.010001 ? 'perl' : 'site'),
 );
 
 # Leftover voodoo for testing various Perl distributions

Modified: branches/upstream/libparent-perl/current/lib/parent.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libparent-perl/current/lib/parent.pm?rev=43494&op=diff
==============================================================================
--- branches/upstream/libparent-perl/current/lib/parent.pm (original)
+++ branches/upstream/libparent-perl/current/lib/parent.pm Wed Sep  2 15:09:06 2009
@@ -1,7 +1,7 @@
 package parent;
 use strict;
 use vars qw($VERSION);
-$VERSION = '0.222';
+$VERSION = '0.223';
 
 sub import {
     my $class = shift;




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