Andy Wardley sent the following bits through the ether:

> Developer release 2.07c is out!  Barring any major problems, this will
> become the next proper release, 2.08 within the next few days.  

Looks pretty good to me under 5.005_03/5.6.0/5.6.1/5.8.0 on
Darwin/Linux, apart from a couple of 5.6-isms in contants.t and
debug.t. Patches attached.

BTW I've been doing weird things with attempting to package CPAN
recently and I like the TT_ACCEPT Makefile.PL parameter, but I
strongly believe that modules shouldn't install extra docs or things
in a weird part of the filesystem by default. Attached is a patch to
make the "Optional Extras" default to 'n'. What do you reckon?

Leon
-- 
Leon Brocard.............................http://www.astray.com/
scribot.................................http://www.scribot.com/

... Divers do it in rubber
--- constants.t.orig    2002-07-29 16:05:16.000000000 +0100
+++ constants.t 2002-07-29 16:06:15.000000000 +0100
@@ -17,7 +17,6 @@
 #========================================================================
 
 use strict;
-use warnings;
 use lib qw( ./lib ../lib );
 use Template::Test;
 use Template::Stash;
--- debug.t.orig        2002-07-29 16:05:20.000000000 +0100
+++ debug.t     2002-07-29 16:06:19.000000000 +0100
@@ -21,15 +21,11 @@
 use Template::Parser;
 use Template::Directive;
 
-no warnings;
-
 my $DEBUG = grep(/-d/, @ARGV);
 #$Template::Parser::DEBUG = $DEBUG;
 $Template::Directive::Pretty = $DEBUG;
 $Template::Test::PRESERVE = 1;
 
-use warnings;
-
 my $dir   = -d 't' ? 't/test' : 'test';
 
 my $vars = {
--- Makefile.PL.orig    2002-07-29 15:27:44.000000000 +0100
+++ Makefile.PL 2002-07-29 15:28:34.000000000 +0100
@@ -588,7 +588,7 @@
 
 EOF
 
-    if (ttprompt('Do you want to install these components?', 'y') =~ /^y/i) {
+    if (ttprompt('Do you want to install these components?', 'n') =~ /^y/i) {
        message(<<EOF);
 
 You can chose any directory for the installation of the additional

Reply via email to