r56071 - in /branches/upstream/libpar-perl/current: ChangeLog MANIFEST META.yml README lib/PAR.pm lib/PAR/Environment.pod lib/PAR/Heavy.pm lib/PAR/SetupProgname.pm lib/PAR/SetupTemp.pm

chrisb at users.alioth.debian.org chrisb at users.alioth.debian.org
Tue Apr 13 18:46:44 UTC 2010


Author: chrisb
Date: Tue Apr 13 18:46:31 2010
New Revision: 56071

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

Removed:
    branches/upstream/libpar-perl/current/META.yml
Modified:
    branches/upstream/libpar-perl/current/ChangeLog
    branches/upstream/libpar-perl/current/MANIFEST
    branches/upstream/libpar-perl/current/README
    branches/upstream/libpar-perl/current/lib/PAR.pm
    branches/upstream/libpar-perl/current/lib/PAR/Environment.pod
    branches/upstream/libpar-perl/current/lib/PAR/Heavy.pm
    branches/upstream/libpar-perl/current/lib/PAR/SetupProgname.pm
    branches/upstream/libpar-perl/current/lib/PAR/SetupTemp.pm

Modified: branches/upstream/libpar-perl/current/ChangeLog
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpar-perl/current/ChangeLog?rev=56071&op=diff
==============================================================================
--- branches/upstream/libpar-perl/current/ChangeLog (original)
+++ branches/upstream/libpar-perl/current/ChangeLog Tue Apr 13 18:46:31 2010
@@ -1,3 +1,6 @@
+[Changes for 1.000 - Apr 10, 2010]
+  - Fix defined(%hash) deprecation warning in PAR::Heavy
+
 [Changes for 0.994 - Jul 23, 2009]
   - Fix for the PAR::Heavy fix to the INC priority handling.
 

Modified: branches/upstream/libpar-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpar-perl/current/MANIFEST?rev=56071&op=diff
==============================================================================
--- branches/upstream/libpar-perl/current/MANIFEST (original)
+++ branches/upstream/libpar-perl/current/MANIFEST Tue Apr 13 18:46:31 2010
@@ -23,7 +23,6 @@
 Makefile.PL
 MANIFEST			This list of files
 MANIFEST.SKIP
-META.yml
 README
 t/00-pod.t
 t/01-basic.t

Modified: branches/upstream/libpar-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpar-perl/current/README?rev=56071&op=diff
==============================================================================
--- branches/upstream/libpar-perl/current/README (original)
+++ branches/upstream/libpar-perl/current/README Tue Apr 13 18:46:31 2010
@@ -76,9 +76,9 @@
 
 * Copyright
 
-Copyright 2002-2009 by Audrey Tang <cpan at audreyt.org>.
+Copyright 2002-2010 by Audrey Tang <cpan at audreyt.org>.
 
-Copyright 2002-2009 by Steffen Mueller <smueller at cpan.org>.
+Copyright 2006-2010 by Steffen Mueller <smueller at cpan.org>.
 
 All rights reserved.  You can redistribute and/or modify
 this bundle under the same terms as Perl itself.

Modified: branches/upstream/libpar-perl/current/lib/PAR.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpar-perl/current/lib/PAR.pm?rev=56071&op=diff
==============================================================================
--- branches/upstream/libpar-perl/current/lib/PAR.pm (original)
+++ branches/upstream/libpar-perl/current/lib/PAR.pm Tue Apr 13 18:46:31 2010
@@ -1,5 +1,5 @@
 package PAR;
-$PAR::VERSION = '0.994';
+$PAR::VERSION = '1.000';
 
 use 5.006;
 use strict;
@@ -1232,9 +1232,9 @@
 
 =head1 COPYRIGHT
 
-Copyright 2002-2009 by Audrey Tang
+Copyright 2002-2010 by Audrey Tang
 E<lt>cpan at audreyt.orgE<gt>.
-Copyright 2005-2009 by Steffen Mueller E<lt>smueller at cpan.orgE<gt>
+Copyright 2005-2010 by Steffen Mueller E<lt>smueller at cpan.orgE<gt>
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Modified: branches/upstream/libpar-perl/current/lib/PAR/Environment.pod
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpar-perl/current/lib/PAR/Environment.pod?rev=56071&op=diff
==============================================================================
--- branches/upstream/libpar-perl/current/lib/PAR/Environment.pod (original)
+++ branches/upstream/libpar-perl/current/lib/PAR/Environment.pod Tue Apr 13 18:46:31 2010
@@ -239,10 +239,10 @@
 
 =head1 COPYRIGHT
 
-PAR: Copyright 2003-2008 by Audrey Tang,
+PAR: Copyright 2003-2010 by Audrey Tang,
 E<lt>cpan at audreyt.orgE<gt>.
 
-This document: Copyright 2006-2008 by Steffen Mueller,
+This document: Copyright 2006-2010 by Steffen Mueller,
 E<lt>smueller at cpan.orgE<gt>
 
 Some information has been taken from Alan Stewart's extra documentation in the

Modified: branches/upstream/libpar-perl/current/lib/PAR/Heavy.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpar-perl/current/lib/PAR/Heavy.pm?rev=56071&op=diff
==============================================================================
--- branches/upstream/libpar-perl/current/lib/PAR/Heavy.pm (original)
+++ branches/upstream/libpar-perl/current/lib/PAR/Heavy.pm Tue Apr 13 18:46:31 2010
@@ -1,5 +1,5 @@
 package PAR::Heavy;
-$PAR::Heavy::VERSION = '0.11';
+$PAR::Heavy::VERSION = '0.12';
 
 =head1 NAME
 
@@ -71,7 +71,7 @@
     # FIXME: Config is always loaded by PAR.pm!
     $dlext ||= do {
         require Config;
-        (defined %Config::Config) ? $Config::Config{dlext} : '';
+        (%Config::Config) ? $Config::Config{dlext} : '';
     };
 
     my $modpname = join((($^O eq 'MacOS') ? ':' : '/'), @modparts);
@@ -190,10 +190,10 @@
 
 =head1 COPYRIGHT
 
-Copyright 2002-2009 by Audrey Tang
+Copyright 2002-2010 by Audrey Tang
 E<lt>cpan at audreyt.orgE<gt>.
 
-Copyright 2006-2009 by Steffen Mueller
+Copyright 2006-2010 by Steffen Mueller
 E<lt>smueller at cpan.orgE<gt>.
 
 This program is free software; you can redistribute it and/or modify it

Modified: branches/upstream/libpar-perl/current/lib/PAR/SetupProgname.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpar-perl/current/lib/PAR/SetupProgname.pm?rev=56071&op=diff
==============================================================================
--- branches/upstream/libpar-perl/current/lib/PAR/SetupProgname.pm (original)
+++ branches/upstream/libpar-perl/current/lib/PAR/SetupProgname.pm Tue Apr 13 18:46:31 2010
@@ -1,5 +1,5 @@
 package PAR::SetupProgname;
-$PAR::VERSION = '0.982';
+$PAR::VERSION = '1.000';
 
 use 5.006;
 use strict;
@@ -81,7 +81,9 @@
 
 =head1 COPYRIGHT
 
-Copyright 2002-2008 by Audrey Tang E<lt>cpan at audreyt.orgE<gt>.
+Copyright 2002-2010 by Audrey Tang E<lt>cpan at audreyt.orgE<gt>.
+
+Copyright 2006-2010 by Steffen Mueller E<lt>smueller at cpan.orgE<gt>.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Modified: branches/upstream/libpar-perl/current/lib/PAR/SetupTemp.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpar-perl/current/lib/PAR/SetupTemp.pm?rev=56071&op=diff
==============================================================================
--- branches/upstream/libpar-perl/current/lib/PAR/SetupTemp.pm (original)
+++ branches/upstream/libpar-perl/current/lib/PAR/SetupTemp.pm Tue Apr 13 18:46:31 2010
@@ -151,7 +151,9 @@
 
 =head1 COPYRIGHT
 
-Copyright 2002-2008 by Audrey Tang E<lt>cpan at audreyt.orgE<gt>.
+Copyright 2002-2010 by Audrey Tang E<lt>cpan at audreyt.orgE<gt>.
+
+Copyright 2006-2010 by Steffen Mueller E<lt>smueller at cpan.orgE<gt>.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.




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