Author: jkeenan
Date: Mon Mar 24 11:21:34 2008
New Revision: 26529
Added:
trunk/config/auto/icu.pm
- copied, changed from r26528, /trunk/config/gen/icu.pm
trunk/t/steps/auto_icu-01.t
- copied, changed from r26528, /trunk/t/steps/gen_icu-01.t
Removed:
trunk/config/gen/icu.pm
trunk/t/steps/gen_icu-01.t
Modified:
trunk/MANIFEST
trunk/lib/Parrot/Configure/Step/List.pm
Log:
Change name of config step class gen::icu to auto::icu. It was not
generating any new files. It was simply another automated probe of the
configuration environment. Make additional corrections as needed in
Parrot::Configure::Step::List, MANIFEST and tests.
Modified: trunk/MANIFEST
==============================================================================
--- trunk/MANIFEST (original)
+++ trunk/MANIFEST Mon Mar 24 11:21:34 2008
@@ -1,7 +1,7 @@
# ex: set ro:
# $Id$
#
-# generated by tools/dev/mk_manifest_and_skip.pl Mon Mar 24 16:54:59 2008 UT
+# generated by tools/dev/mk_manifest_and_skip.pl Mon Mar 24 18:17:42 2008 UT
#
# See tools/dev/install_files.pl for documentation on the
# format of this file.
@@ -253,6 +253,7 @@
config/auto/gmp/gmp.in []
config/auto/headers.pm []
config/auto/headers/test_c.in []
+config/auto/icu.pm []
config/auto/inline.pm []
config/auto/inline/test_1.in []
config/auto/inline/test_2.in []
@@ -299,7 +300,6 @@
config/gen/config_pm/config_lib.in []
config/gen/config_pm/myconfig.in []
config/gen/core_pmcs.pm []
-config/gen/icu.pm []
config/gen/languages.pm []
config/gen/makefiles.pm []
config/gen/makefiles/CFLAGS.in []
@@ -3441,6 +3441,7 @@
t/steps/auto_headers-02.t []
t/steps/auto_headers-03.t []
t/steps/auto_headers-04.t []
+t/steps/auto_icu-01.t []
t/steps/auto_inline-01.t []
t/steps/auto_inline-02.t []
t/steps/auto_inline-03.t []
@@ -3495,7 +3496,6 @@
t/steps/gen_config_h-01.t []
t/steps/gen_config_pm-01.t []
t/steps/gen_core_pmcs-01.t []
-t/steps/gen_icu-01.t []
t/steps/gen_languages-01.t []
t/steps/gen_makefiles-01.t []
t/steps/gen_parrot_include-01.t []
Copied: trunk/config/auto/icu.pm (from r26528, /trunk/config/gen/icu.pm)
==============================================================================
--- /trunk/config/gen/icu.pm (original)
+++ trunk/config/auto/icu.pm Mon Mar 24 11:21:34 2008
@@ -3,7 +3,7 @@
=head1 NAME
-config/gen/icu.pm - ICU
+config/auto/icu.pm - ICU
=head1 DESCRIPTION
@@ -11,7 +11,7 @@
=cut
-package gen::icu;
+package auto::icu;
use strict;
use warnings;
Modified: trunk/lib/Parrot/Configure/Step/List.pm
==============================================================================
--- trunk/lib/Parrot/Configure/Step/List.pm (original)
+++ trunk/lib/Parrot/Configure/Step/List.pm Mon Mar 24 11:21:34 2008
@@ -63,7 +63,7 @@
auto::m4
auto::ctags
auto::revision
- gen::icu
+ auto::icu
gen::config_h
gen::core_pmcs
gen::parrot_include
Copied: trunk/t/steps/auto_icu-01.t (from r26528, /trunk/t/steps/gen_icu-01.t)
==============================================================================
--- /trunk/t/steps/gen_icu-01.t (original)
+++ trunk/t/steps/auto_icu-01.t Mon Mar 24 11:21:34 2008
@@ -1,14 +1,14 @@
#! perl
# Copyright (C) 2007, The Perl Foundation.
# $Id$
-# gen_icu-01.t
+# auto_icu-01.t
use strict;
use warnings;
use Test::More tests => 2;
use Carp;
use lib qw( lib );
-use_ok('config::gen::icu');
+use_ok('config::auto::icu');
=for hints_for_testing Provide an explanation in the POD for what 'ICU'
is. Try to test all branches and conditions; consult a recent code
@@ -23,17 +23,17 @@
=head1 NAME
-gen_icu-01.t - test config::gen::icu
+auto_icu-01.t - test config::auto::icu
=head1 SYNOPSIS
- % prove t/steps/gen_icu-01.t
+ % prove t/steps/auto_icu-01.t
=head1 DESCRIPTION
The files in this directory test functionality used by F<Configure.pl>.
-The tests in this file test subroutines exported by config::gen::icu.
+The tests in this file test subroutines exported by config::auto::icu.
=head1 AUTHOR
@@ -41,7 +41,7 @@
=head1 SEE ALSO
-config::gen::icu, F<Configure.pl>.
+config::auto::icu, F<Configure.pl>.
=cut