r13958 - in /branches/upstream/libcarp-clan-perl/current: Changes MANIFEST META.yml Makefile.PL lib/Carp/Clan.pm t/04boilerplate.t

tincho-guest at users.alioth.debian.org tincho-guest at users.alioth.debian.org
Fri Feb 1 11:50:57 UTC 2008


Author: tincho-guest
Date: Fri Feb  1 11:50:57 2008
New Revision: 13958

URL: http://svn.debian.org/wsvn/?sc=1&rev=13958
Log:
[svn-upgrade] Integrating new upstream version, libcarp-clan-perl (5.10)

Removed:
    branches/upstream/libcarp-clan-perl/current/t/04boilerplate.t
Modified:
    branches/upstream/libcarp-clan-perl/current/Changes
    branches/upstream/libcarp-clan-perl/current/MANIFEST
    branches/upstream/libcarp-clan-perl/current/META.yml
    branches/upstream/libcarp-clan-perl/current/Makefile.PL
    branches/upstream/libcarp-clan-perl/current/lib/Carp/Clan.pm

Modified: branches/upstream/libcarp-clan-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libcarp-clan-perl/current/Changes?rev=13958&op=diff
==============================================================================
--- branches/upstream/libcarp-clan-perl/current/Changes (original)
+++ branches/upstream/libcarp-clan-perl/current/Changes Fri Feb  1 11:50:57 2008
@@ -12,6 +12,11 @@
 
 Version history:
 ----------------
+
+Version 5.10  10.01.2008
+ + Removed the circular dependency on Object::Deadly. It was only
+   used for testing and would only succeed if you already had O::D
+   installed.
 
 Version 5.9   04.11.2007
  + Test::Exceptions is mandatory for testing.

Modified: branches/upstream/libcarp-clan-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/branches/upstream/libcarp-clan-perl/current/MANIFEST?rev=13958&op=diff
==============================================================================
--- branches/upstream/libcarp-clan-perl/current/MANIFEST (original)
+++ branches/upstream/libcarp-clan-perl/current/MANIFEST Fri Feb  1 11:50:57 2008
@@ -9,6 +9,5 @@
 README
 t/01pod.t
 t/03yaml.t
-t/04boilerplate.t
 t/10basic.t
 t/11basic.t

Modified: branches/upstream/libcarp-clan-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libcarp-clan-perl/current/META.yml?rev=13958&op=diff
==============================================================================
--- branches/upstream/libcarp-clan-perl/current/META.yml (original)
+++ branches/upstream/libcarp-clan-perl/current/META.yml Fri Feb  1 11:50:57 2008
@@ -1,14 +1,14 @@
 --- #YAML:1.0
 name:                Carp-Clan
-version:             5.9
+version:             5.10
 abstract:            Report errors from perspective of caller of a "clan" of modules
 license:             ~
-generated_by:        ExtUtils::MakeMaker version 6.31
+author:              
+    - Joshua ben Jore <jjore at cpan.org>
+generated_by:        ExtUtils::MakeMaker version 6.42
 distribution_type:   module
 requires:     
     Test::Exception:               0
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.2.html
-    version: 1.2
-author:
-    - Joshua ben Jore <jjore at cpan.org>
+    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
+    version: 1.3

Modified: branches/upstream/libcarp-clan-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libcarp-clan-perl/current/Makefile.PL?rev=13958&op=diff
==============================================================================
--- branches/upstream/libcarp-clan-perl/current/Makefile.PL (original)
+++ branches/upstream/libcarp-clan-perl/current/Makefile.PL Fri Feb  1 11:50:57 2008
@@ -6,17 +6,6 @@
 my %PREREQ_PM = (
 		 'Test::Exception' => 0,
 		);
-
-# Object::Deadly uses Carp::Clan for its runtime. This is a circular
-# dependency and is resolved by installing Carp::Clan without
-# Object::Deadly. Once Object::Deadly is installed, Carp::Clan may use
-# it for testing.
-if (prompt( 'Add Object::Deadly 0.08+ to prerequisites for testing? [Ny]',
-        'no' ) =~ /^y/i
-    )
-{
-    $PREREQ_PM{'Object::Deadly'} = '0.08';
-}
 
 WriteMakefile(
     NAME          => 'Carp::Clan',

Modified: branches/upstream/libcarp-clan-perl/current/lib/Carp/Clan.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libcarp-clan-perl/current/lib/Carp/Clan.pm?rev=13958&op=diff
==============================================================================
--- branches/upstream/libcarp-clan-perl/current/lib/Carp/Clan.pm (original)
+++ branches/upstream/libcarp-clan-perl/current/lib/Carp/Clan.pm Fri Feb  1 11:50:57 2008
@@ -28,7 +28,7 @@
 
 $Verbose = 0;        # If true then make _shortmsg call _longmsg instead.
 
-$VERSION = '5.9';
+$VERSION = '5.10';
 
 # _longmsg() crawls all the way up the stack reporting on all the function
 # calls made. The error string, $error, is originally constructed from the
@@ -102,7 +102,7 @@
                 $sub .= '(' . join( ', ', @parms ) . ')';
             }
             if ( $msg eq '' ) { $msg = "$sub called"; }
-            else { $msg .= "\t$sub called"; }
+            else              { $msg .= "\t$sub called"; }
         }
         else {
             if   ( $sub =~ /::/ ) { $msg = "$sub(): $error"; }




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