r13956 - in /branches/upstream/libcarp-clan-perl/current: CHANGES.txt Changes Clan.pm Clan.pod MANIFEST META.yml Makefile.PL README README.txt lib/ t/00____version.t t/01_______carp.t t/01pod.t t/03yaml.t t/04boilerplate.t t/10basic.t t/11basic.t

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


Author: tincho-guest
Date: Fri Feb  1 11:48:24 2008
New Revision: 13956

URL: http://svn.debian.org/wsvn/?sc=1&rev=13956
Log:
Cleaning source mess

Added:
    branches/upstream/libcarp-clan-perl/current/Changes
      - copied unchanged from r13955, trunk/libcarp-clan-perl/Changes
    branches/upstream/libcarp-clan-perl/current/META.yml
      - copied unchanged from r13955, trunk/libcarp-clan-perl/META.yml
    branches/upstream/libcarp-clan-perl/current/README
      - copied unchanged from r13955, trunk/libcarp-clan-perl/README
    branches/upstream/libcarp-clan-perl/current/lib/
      - copied from r13955, trunk/libcarp-clan-perl/lib/
    branches/upstream/libcarp-clan-perl/current/t/01pod.t
      - copied unchanged from r13955, trunk/libcarp-clan-perl/t/01pod.t
    branches/upstream/libcarp-clan-perl/current/t/03yaml.t
      - copied unchanged from r13955, trunk/libcarp-clan-perl/t/03yaml.t
    branches/upstream/libcarp-clan-perl/current/t/04boilerplate.t
      - copied unchanged from r13955, trunk/libcarp-clan-perl/t/04boilerplate.t
    branches/upstream/libcarp-clan-perl/current/t/10basic.t
      - copied unchanged from r13955, trunk/libcarp-clan-perl/t/10basic.t
    branches/upstream/libcarp-clan-perl/current/t/11basic.t
      - copied unchanged from r13955, trunk/libcarp-clan-perl/t/11basic.t
Removed:
    branches/upstream/libcarp-clan-perl/current/CHANGES.txt
    branches/upstream/libcarp-clan-perl/current/Clan.pm
    branches/upstream/libcarp-clan-perl/current/Clan.pod
    branches/upstream/libcarp-clan-perl/current/README.txt
    branches/upstream/libcarp-clan-perl/current/t/00____version.t
    branches/upstream/libcarp-clan-perl/current/t/01_______carp.t
Modified:
    branches/upstream/libcarp-clan-perl/current/MANIFEST
    branches/upstream/libcarp-clan-perl/current/Makefile.PL

Modified: branches/upstream/libcarp-clan-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/branches/upstream/libcarp-clan-perl/current/MANIFEST?rev=13956&op=diff
==============================================================================
--- branches/upstream/libcarp-clan-perl/current/MANIFEST (original)
+++ branches/upstream/libcarp-clan-perl/current/MANIFEST Fri Feb  1 11:48:24 2008
@@ -1,10 +1,14 @@
 Artistic.txt
-CHANGES.txt
-Clan.pm
-Clan.pod
+Changes
 GNU_GPL.txt
+lib/Carp/Clan.pm
+lib/Carp/Clan.pod
 Makefile.PL
-MANIFEST
-README.txt
-t/00____version.t
-t/01_______carp.t
+MANIFEST			This list of files
+META.yml
+README
+t/01pod.t
+t/03yaml.t
+t/04boilerplate.t
+t/10basic.t
+t/11basic.t

Modified: branches/upstream/libcarp-clan-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libcarp-clan-perl/current/Makefile.PL?rev=13956&op=diff
==============================================================================
--- branches/upstream/libcarp-clan-perl/current/Makefile.PL (original)
+++ branches/upstream/libcarp-clan-perl/current/Makefile.PL Fri Feb  1 11:48:24 2008
@@ -1,29 +1,29 @@
-#!perl -w
-
-###############################################################################
-##                                                                           ##
-##    Copyright (c) 2001 - 2004 by Steffen Beyer.                            ##
-##    All rights reserved.                                                   ##
-##                                                                           ##
-##    This package is free software; you can redistribute it                 ##
-##    and/or modify it under the same terms as Perl itself.                  ##
-##                                                                           ##
-###############################################################################
+#!perl
 
 use strict;
-
 use ExtUtils::MakeMaker;
 
+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',
-    'VERSION_FROM'      => 'Clan.pm',
-#   ($] >= 5.005 ?
-#       ('ABSTRACT'     => 'Report errors from perspective of caller of a "clan" of modules',
-#        'AUTHOR'       => 'Steffen Beyer (sb at engelschall.com)') : ()),
-#   ($] >= 5.005 && $^O eq 'MSWin32' && $Config{archname} =~ /-object\b/i ?
-#       ('CAPI'         => 'TRUE') : ()),
-    'dist'              => { COMPRESS => "gzip -9", SUFFIX => "gz" }
+    NAME          => 'Carp::Clan',
+    AUTHOR        => 'Joshua ben Jore <jjore at cpan.org>',
+    VERSION_FROM  => 'lib/Carp/Clan.pm',
+    ABSTRACT_FROM => 'lib/Carp/Clan.pod',
+    PREREQ_PM     => \ % PREREQ_PM,
+    dist          => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
+    clean => { FILES => 'Carp-Clan-*', },
 );
-
-__END__
-




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