r22913 - in /branches/upstream/libdevel-backtrace-perl/current: Build.PL Changes LICENSE META.yml README lib/Devel/Backtrace.pm lib/Devel/Backtrace/Point.pm lib/Devel/DollarAt.pm t/basic.t

rmayorga-guest at users.alioth.debian.org rmayorga-guest at users.alioth.debian.org
Tue Jul 8 05:57:59 UTC 2008


Author: rmayorga-guest
Date: Tue Jul  8 05:57:59 2008
New Revision: 22913

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

Modified:
    branches/upstream/libdevel-backtrace-perl/current/Build.PL
    branches/upstream/libdevel-backtrace-perl/current/Changes
    branches/upstream/libdevel-backtrace-perl/current/LICENSE
    branches/upstream/libdevel-backtrace-perl/current/META.yml
    branches/upstream/libdevel-backtrace-perl/current/README
    branches/upstream/libdevel-backtrace-perl/current/lib/Devel/Backtrace.pm
    branches/upstream/libdevel-backtrace-perl/current/lib/Devel/Backtrace/Point.pm
    branches/upstream/libdevel-backtrace-perl/current/lib/Devel/DollarAt.pm
    branches/upstream/libdevel-backtrace-perl/current/t/basic.t

Modified: branches/upstream/libdevel-backtrace-perl/current/Build.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdevel-backtrace-perl/current/Build.PL?rev=22913&op=diff
==============================================================================
--- branches/upstream/libdevel-backtrace-perl/current/Build.PL (original)
+++ branches/upstream/libdevel-backtrace-perl/current/Build.PL Tue Jul  8 05:57:59 2008
@@ -16,6 +16,7 @@
         'String::Escape'  => 0,
         'Class::Accessor' => 0,
         'Carp'            => 0,
+        'perl'            => '5.006_000',
     },
     build_requires => {
         'Test::More' => 0,

Modified: branches/upstream/libdevel-backtrace-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdevel-backtrace-perl/current/Changes?rev=22913&op=diff
==============================================================================
--- branches/upstream/libdevel-backtrace-perl/current/Changes (original)
+++ branches/upstream/libdevel-backtrace-perl/current/Changes Tue Jul  8 05:57:59 2008
@@ -46,3 +46,8 @@
         examples, but now it's independent from the examples because that's
         more flexible.
         Again, added some fixes to make the tests work on all platforms.
+
+0.11    Mon Jul  7 00:55:37 CEST 2008
+        DBP is in the public domain too.  (Forgot that in 0.06)
+        Fix a test that failed on Windows because of path separators.
+        Add the Perl license as a fallback license...

Modified: branches/upstream/libdevel-backtrace-perl/current/LICENSE
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdevel-backtrace-perl/current/LICENSE?rev=22913&op=diff
==============================================================================
--- branches/upstream/libdevel-backtrace-perl/current/LICENSE (original)
+++ branches/upstream/libdevel-backtrace-perl/current/LICENSE Tue Jul  8 05:57:59 2008
@@ -1,3 +1,7 @@
 The Perl module distribution Devel::Backtrace is in the public domain.
 
 The author is Christoph Bussenius.
+
+If your country's law does not allow this distribution being in the public
+domain or does not include the concept of public domain, you may use the
+distribution under the same terms as perl itself.

Modified: branches/upstream/libdevel-backtrace-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdevel-backtrace-perl/current/META.yml?rev=22913&op=diff
==============================================================================
--- branches/upstream/libdevel-backtrace-perl/current/META.yml (original)
+++ branches/upstream/libdevel-backtrace-perl/current/META.yml Tue Jul  8 05:57:59 2008
@@ -1,6 +1,6 @@
 ---
 name: Devel-Backtrace
-version: 0.10
+version: 0.11
 author:
   - 'Christoph Bussenius <pepe at cpan.org>'
 abstract: Object-oriented backtrace
@@ -11,21 +11,22 @@
   Carp: 0
   Class::Accessor: 0
   String::Escape: 0
+  perl: 5.006_000
 build_requires:
   Test::More: 0
 provides:
   Devel::Backtrace:
     file: lib/Devel/Backtrace.pm
-    version: 0.10
+    version: 0.11
   Devel::Backtrace::Point:
     file: lib/Devel/Backtrace/Point.pm
-    version: 0.10
+    version: 0.11
   Devel::DollarAt:
     file: lib/Devel/DollarAt.pm
     version: 0.02
 no_index:
   directory: example
-generated_by: Module::Build version 0.2807
+generated_by: Module::Build version 0.2808
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.2.html
   version: 1.2

Modified: branches/upstream/libdevel-backtrace-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdevel-backtrace-perl/current/README?rev=22913&op=diff
==============================================================================
--- branches/upstream/libdevel-backtrace-perl/current/README (original)
+++ branches/upstream/libdevel-backtrace-perl/current/README Tue Jul  8 05:57:59 2008
@@ -2,7 +2,7 @@
     Devel::Backtrace - Object-oriented backtrace
 
 VERSION
-    This is version 0.10.
+    This is version 0.11.
 
 SYNOPSIS
         my $backtrace = Devel::Backtrace->new;
@@ -124,6 +124,10 @@
     mention this module's name in the subject of your mails, in order to
     make sure they won't get lost in all the spam.
 
-COPYRIGHT
+LICENSE
     This module is in the public domain.
 
+    If your country's law does not allow this module being in the public
+    domain or does not include the concept of public domain, you may use the
+    module under the same terms as perl itself.
+

Modified: branches/upstream/libdevel-backtrace-perl/current/lib/Devel/Backtrace.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdevel-backtrace-perl/current/lib/Devel/Backtrace.pm?rev=22913&op=diff
==============================================================================
--- branches/upstream/libdevel-backtrace-perl/current/lib/Devel/Backtrace.pm (original)
+++ branches/upstream/libdevel-backtrace-perl/current/lib/Devel/Backtrace.pm Tue Jul  8 05:57:59 2008
@@ -12,11 +12,11 @@
 
 =head1 VERSION
 
-This is version 0.10.
-
-=cut
-
-our $VERSION = '0.10';
+This is version 0.11.
+
+=cut
+
+our $VERSION = '0.11';
 
 =head1 SYNOPSIS
 
@@ -260,8 +260,12 @@
 You should mention this module's name in the subject of your mails, in order to
 make sure they won't get lost in all the spam.
 
-=head1 COPYRIGHT
+=head1 LICENSE
 
 This module is in the public domain.
 
-=cut
+If your country's law does not allow this module being in the public
+domain or does not include the concept of public domain, you may use the
+module under the same terms as perl itself.
+
+=cut

Modified: branches/upstream/libdevel-backtrace-perl/current/lib/Devel/Backtrace/Point.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdevel-backtrace-perl/current/lib/Devel/Backtrace/Point.pm?rev=22913&op=diff
==============================================================================
--- branches/upstream/libdevel-backtrace-perl/current/lib/Devel/Backtrace/Point.pm (original)
+++ branches/upstream/libdevel-backtrace-perl/current/lib/Devel/Backtrace/Point.pm Tue Jul  8 05:57:59 2008
@@ -1,7 +1,7 @@
 package Devel::Backtrace::Point;
 use strict;
 use warnings;
-our $VERSION = '0.10';
+our $VERSION = '0.11';
 use Carp;
 use String::Escape qw(printable);
 
@@ -306,11 +306,12 @@
 
 Christoph Bussenius <pepe at cpan.org>
 
-=head1 COPYRIGHT
-
-Copyright (C) 2007 Christoph Bussenius.
-
-This program is free software; you can redistribute it and/or modify it under
-the same terms as Perl itself.
-
-=cut
+=head1 LICENSE
+
+This Perl module is in the public domain.
+
+If your country's law does not allow this module being in the public
+domain or does not include the concept of public domain, you may use the
+module under the same terms as perl itself.
+
+=cut

Modified: branches/upstream/libdevel-backtrace-perl/current/lib/Devel/DollarAt.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdevel-backtrace-perl/current/lib/Devel/DollarAt.pm?rev=22913&op=diff
==============================================================================
--- branches/upstream/libdevel-backtrace-perl/current/lib/Devel/DollarAt.pm (original)
+++ branches/upstream/libdevel-backtrace-perl/current/lib/Devel/DollarAt.pm Tue Jul  8 05:57:59 2008
@@ -298,8 +298,12 @@
 You should mention this module's name in the subject of your mails, in order to
 make sure they won't get lost in all the spam.
 
-=head1 COPYRIGHT
+=head1 LICENSE
 
 This module is in the public domain.
 
+If your country's law does not allow this module being in the public
+domain or does not include the concept of public domain, you may use the
+module under the same terms as perl itself.
+
 =cut

Modified: branches/upstream/libdevel-backtrace-perl/current/t/basic.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdevel-backtrace-perl/current/t/basic.t?rev=22913&op=diff
==============================================================================
--- branches/upstream/libdevel-backtrace-perl/current/t/basic.t (original)
+++ branches/upstream/libdevel-backtrace-perl/current/t/basic.t Tue Jul  8 05:57:59 2008
@@ -26,7 +26,7 @@
 
     like($backtrace3->to_long_string, qr{^
 package:\s*main\n
-filename:\s*t/basic\.t\n
+filename:\s*t[\\/]basic\.t\n
 line:\s*\Q$line0\E\n
 subroutine:\s*main::foo\n
 hasargs:\s*1\n




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