You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2011/12/21 05:02:34 UTC

[lucy-commits] svn commit: r1221599 - in /incubator/lucy/trunk/clownfish/perl: ./ lib/ lib/Clownfish/ lib/Clownfish/CFC/ lib/Clownfish/CFC/Binding/ lib/Clownfish/CFC/Binding/Core/ t/

Author: marvin
Date: Wed Dec 21 04:02:33 2011
New Revision: 1221599

URL: http://svn.apache.org/viewvc?rev=1221599&view=rev
Log:
Finish move CFC to Clownfish::CFC namespace.

Added:
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC.pm
      - copied, changed from r1221595, incubator/lucy/trunk/clownfish/perl/lib/Clownfish.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC.xs
      - copied, changed from r1221575, incubator/lucy/trunk/clownfish/perl/lib/Clownfish.xs
Removed:
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish.xs
Modified:
    incubator/lucy/trunk/clownfish/perl/Build.PL
    incubator/lucy/trunk/clownfish/perl/MANIFEST
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Base.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/Aliases.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/Class.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/File.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/Function.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/Method.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/CBlock.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Class.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/DocuComment.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Dumpable.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/File.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Function.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Hierarchy.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Method.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/ParamList.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Parcel.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Parser.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Symbol.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Type.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Util.pm
    incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Variable.pm
    incubator/lucy/trunk/clownfish/perl/t/051-symbol.t
    incubator/lucy/trunk/clownfish/perl/t/101-primitive_type.t

Modified: incubator/lucy/trunk/clownfish/perl/Build.PL
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/Build.PL?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/Build.PL (original)
+++ incubator/lucy/trunk/clownfish/perl/Build.PL Wed Dec 21 04:02:33 2011
@@ -21,11 +21,11 @@ use Clownfish::CFC::Build;
 use File::Spec::Functions qw( updir catdir );
 
 my $builder = Clownfish::CFC::Build->new(
-    module_name => 'Clownfish',
+    module_name => 'Clownfish::CFC',
     license     => 'apache',
     dist_author =>
         'The Apache Lucy Project <lucy-dev at incubator dot apache dot org>',
-    dist_version_from => 'lib/Clownfish.pm',
+    dist_version_from => 'lib/Clownfish/CFC.pm',
     build_requires    => {
         'ExtUtils::CBuilder' => 0.18,
         'ExtUtils::ParseXS'  => 2.16,

Modified: incubator/lucy/trunk/clownfish/perl/MANIFEST
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/MANIFEST?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/MANIFEST (original)
+++ incubator/lucy/trunk/clownfish/perl/MANIFEST Wed Dec 21 04:02:33 2011
@@ -1,7 +1,7 @@
 Build.PL
 buildlib/Clownfish/CFC/Build.pm
-lib/Clownfish.pm
-lib/Clownfish.xs
+lib/Clownfish/CFC.pm
+lib/Clownfish/CFC.xs
 lib/Clownfish/CFC/Base.pm
 lib/Clownfish/CFC/Binding/Core.pm
 lib/Clownfish/CFC/Binding/Core/Aliases.pm

Copied: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC.pm (from r1221595, incubator/lucy/trunk/clownfish/perl/lib/Clownfish.pm)
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC.pm?p2=incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC.pm&p1=incubator/lucy/trunk/clownfish/perl/lib/Clownfish.pm&r1=1221595&r2=1221599&rev=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC.pm Wed Dec 21 04:02:33 2011
@@ -16,7 +16,7 @@
 use strict;
 use warnings;
 
-package Clownfish;
+package Clownfish::CFC;
 our $VERSION = '0.01';
 
 END {
@@ -25,7 +25,7 @@ END {
 }
 
 use XSLoader;
-BEGIN { XSLoader::load( 'Clownfish', '0.01' ) }
+BEGIN { XSLoader::load( 'Clownfish::CFC', '0.01' ) }
 
 {
     package Clownfish::CFC::Util;

Copied: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC.xs (from r1221575, incubator/lucy/trunk/clownfish/perl/lib/Clownfish.xs)
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC.xs?p2=incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC.xs&p1=incubator/lucy/trunk/clownfish/perl/lib/Clownfish.xs&r1=1221575&r2=1221599&rev=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish.xs (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC.xs Wed Dec 21 04:02:33 2011
@@ -85,7 +85,7 @@ S_sv_eat_c_string(char *string) {
     }
 }
 
-MODULE = Clownfish    PACKAGE = Clownfish::CFC::Base
+MODULE = Clownfish::CFC   PACKAGE = Clownfish::CFC::Base
 
 void
 DESTROY(self)
@@ -94,7 +94,7 @@ PPCODE:
     CFCBase_decref((CFCBase*)self);
 
 
-MODULE = Clownfish    PACKAGE = Clownfish::CFC::CBlock
+MODULE = Clownfish::CFC   PACKAGE = Clownfish::CFC::CBlock
 
 SV*
 _new(contents)
@@ -121,7 +121,7 @@ PPCODE:
     END_SET_OR_GET_SWITCH
 }
 
-MODULE = Clownfish    PACKAGE = Clownfish::CFC::Class
+MODULE = Clownfish::CFC   PACKAGE = Clownfish::CFC::Class
 
 SV*
 _create(parcel, exposure_sv, class_name_sv, cnick_sv, micro_sym_sv, docucomment, source_class_sv, parent_class_name_sv, is_final, is_inert)
@@ -412,7 +412,7 @@ PPCODE:
 }
 
 
-MODULE = Clownfish    PACKAGE = Clownfish::CFC::DocuComment
+MODULE = Clownfish::CFC   PACKAGE = Clownfish::CFC::DocuComment
 
 SV*
 parse(klass, text)
@@ -487,7 +487,7 @@ PPCODE:
     END_SET_OR_GET_SWITCH
 }
 
-MODULE = Clownfish    PACKAGE = Clownfish::CFC::Dumpable
+MODULE = Clownfish::CFC   PACKAGE = Clownfish::CFC::Dumpable
 
 SV*
 new(klass)
@@ -509,7 +509,7 @@ PPCODE:
     CFCDumpable_add_dumpables(self, klass);
 
 
-MODULE = Clownfish    PACKAGE = Clownfish::CFC::File
+MODULE = Clownfish::CFC   PACKAGE = Clownfish::CFC::File
 
 SV*
 _new(source_class)
@@ -610,7 +610,7 @@ CODE:
 OUTPUT: RETVAL
 
 
-MODULE = Clownfish    PACKAGE = Clownfish::CFC::Function
+MODULE = Clownfish::CFC   PACKAGE = Clownfish::CFC::Function
 
 SV*
 _new(parcel, exposure_sv, class_name_sv, class_cnick_sv, micro_sym_sv, return_type, param_list, docucomment, is_inline)
@@ -688,7 +688,7 @@ PPCODE:
     END_SET_OR_GET_SWITCH
 }
 
-MODULE = Clownfish    PACKAGE = Clownfish::CFC::Hierarchy
+MODULE = Clownfish::CFC   PACKAGE = Clownfish::CFC::Hierarchy
 
 SV*
 _new(source, dest)
@@ -749,7 +749,7 @@ PPCODE:
 }
 
 
-MODULE = Clownfish    PACKAGE = Clownfish::CFC::Method
+MODULE = Clownfish::CFC   PACKAGE = Clownfish::CFC::Method
 
 SV*
 _new(parcel, exposure_sv, class_name_sv, class_cnick_sv, macro_sym, return_type, param_list, docucomment, is_final, is_abstract)
@@ -900,7 +900,7 @@ PPCODE:
 }
 
 
-MODULE = Clownfish    PACKAGE = Clownfish::CFC::ParamList
+MODULE = Clownfish::CFC   PACKAGE = Clownfish::CFC::ParamList
 
 SV*
 _new(klass, variadic)
@@ -984,7 +984,7 @@ PPCODE:
 }
 
 
-MODULE = Clownfish    PACKAGE = Clownfish::CFC::Parcel
+MODULE = Clownfish::CFC   PACKAGE = Clownfish::CFC::Parcel
 
 SV*
 _singleton(name_sv, cnick_sv)
@@ -1058,7 +1058,7 @@ PPCODE:
 }
 
 
-MODULE = Clownfish    PACKAGE = Clownfish::CFC::Symbol
+MODULE = Clownfish::CFC   PACKAGE = Clownfish::CFC::Symbol
 
 SV*
 _new(parcel, exposure, class_name_sv, class_cnick_sv, micro_sym_sv)
@@ -1182,7 +1182,7 @@ PPCODE:
 }
 
 
-MODULE = Clownfish    PACKAGE = Clownfish::CFC::Type
+MODULE = Clownfish::CFC   PACKAGE = Clownfish::CFC::Type
 
 SV*
 _new(flags, parcel, specifier, indirection, c_string)
@@ -1479,7 +1479,7 @@ PPCODE:
 }
 
 
-MODULE = Clownfish   PACKAGE = Clownfish::CFC::Util
+MODULE = Clownfish::CFC  PACKAGE = Clownfish::CFC::Util
 
 SV*
 trim_whitespace(text)
@@ -1540,7 +1540,7 @@ CODE:
     RETVAL = CFCUtil_make_path(path);
 OUTPUT: RETVAL
 
-MODULE = Clownfish   PACKAGE = Clownfish::CFC::Variable
+MODULE = Clownfish::CFC  PACKAGE = Clownfish::CFC::Variable
 
 SV*
 _new(parcel, exposure, class_name_sv, class_cnick_sv, micro_sym_sv, type_sv, inert_sv)
@@ -1619,7 +1619,7 @@ PPCODE:
     END_SET_OR_GET_SWITCH
 }
 
-MODULE = Clownfish   PACKAGE = Clownfish::CFC::Binding::Core
+MODULE = Clownfish::CFC  PACKAGE = Clownfish::CFC::Binding::Core
 
 SV*
 _new(hierarchy, dest, header, footer)
@@ -1647,7 +1647,7 @@ CODE:
 OUTPUT: RETVAL
 
 
-MODULE = Clownfish   PACKAGE = Clownfish::CFC::Binding::Core::Function
+MODULE = Clownfish::CFC  PACKAGE = Clownfish::CFC::Binding::Core::Function
 
 SV*
 func_declaration(unused, func)
@@ -1657,7 +1657,7 @@ CODE:
     RETVAL = S_sv_eat_c_string(CFCBindFunc_func_declaration(func));
 OUTPUT: RETVAL
 
-MODULE = Clownfish   PACKAGE = Clownfish::CFC::Binding::Core::Method
+MODULE = Clownfish::CFC  PACKAGE = Clownfish::CFC::Binding::Core::Method
 
 SV*
 typedef_dec(unused, meth)
@@ -1707,7 +1707,7 @@ CODE:
     RETVAL = S_sv_eat_c_string(CFCBindMeth_callback_obj_def(meth, offset));
 OUTPUT: RETVAL
 
-MODULE = Clownfish   PACKAGE = Clownfish::CFC::Binding::Core::Aliases
+MODULE = Clownfish::CFC  PACKAGE = Clownfish::CFC::Binding::Core::Aliases
 
 SV*
 c_aliases(...)
@@ -1715,7 +1715,7 @@ CODE:
     RETVAL = S_sv_eat_c_string(CFCBindAliases_c_aliases());
 OUTPUT: RETVAL
 
-MODULE = Clownfish   PACKAGE = Clownfish::CFC::Binding::Core::Class
+MODULE = Clownfish::CFC  PACKAGE = Clownfish::CFC::Binding::Core::Class
 
 SV*
 _new(client)
@@ -1740,7 +1740,7 @@ CODE:
     RETVAL = S_sv_eat_c_string(CFCBindClass_to_c_header(self));
 OUTPUT: RETVAL
 
-MODULE = Clownfish   PACKAGE = Clownfish::CFC::Binding::Core::File
+MODULE = Clownfish::CFC  PACKAGE = Clownfish::CFC::Binding::Core::File
 
 void
 _write_h(file, dest, header, footer)
@@ -1752,7 +1752,7 @@ PPCODE:
     CFCBindFile_write_h(file, dest, header, footer);
 
 
-MODULE = Clownfish    PACKAGE = Clownfish::CFC::Parser
+MODULE = Clownfish::CFC   PACKAGE = Clownfish::CFC::Parser
 
 SV*
 new(klass)

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Base.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Base.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Base.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Base.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::Base;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::Binding::Core;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/Aliases.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/Aliases.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/Aliases.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/Aliases.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::Binding::Core::Aliases;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/Class.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/Class.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/Class.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/Class.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::Binding::Core::Class;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/File.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/File.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/File.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/File.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::Binding::Core::File;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/Function.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/Function.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/Function.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/Function.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::Binding::Core::Function;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/Method.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/Method.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/Method.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Binding/Core/Method.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::Binding::Core::Method;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/CBlock.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/CBlock.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/CBlock.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/CBlock.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::CBlock;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Class.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Class.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Class.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Class.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::Class;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/DocuComment.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/DocuComment.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/DocuComment.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/DocuComment.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::DocuComment;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Dumpable.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Dumpable.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Dumpable.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Dumpable.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::Dumpable;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/File.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/File.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/File.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/File.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::File;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Function.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Function.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Function.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Function.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::Function;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Hierarchy.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Hierarchy.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Hierarchy.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Hierarchy.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::Hierarchy;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Method.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Method.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Method.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Method.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::Method;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/ParamList.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/ParamList.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/ParamList.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/ParamList.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::ParamList;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Parcel.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Parcel.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Parcel.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Parcel.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::Parcel;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Parser.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Parser.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Parser.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Parser.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::Parser;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Symbol.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Symbol.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Symbol.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Symbol.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::Symbol;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Type.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Type.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Type.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Type.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::Type;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Util.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Util.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Util.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Util.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::Util;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Variable.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Variable.pm?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Variable.pm (original)
+++ incubator/lucy/trunk/clownfish/perl/lib/Clownfish/CFC/Variable.pm Wed Dec 21 04:02:33 2011
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 package Clownfish::CFC::Variable;
-use Clownfish;
+use Clownfish::CFC;
 
 1;
 

Modified: incubator/lucy/trunk/clownfish/perl/t/051-symbol.t
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/t/051-symbol.t?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/t/051-symbol.t (original)
+++ incubator/lucy/trunk/clownfish/perl/t/051-symbol.t Wed Dec 21 04:02:33 2011
@@ -17,7 +17,7 @@ use strict;
 use warnings;
 
 use Test::More tests => 44;
-use Clownfish;
+use Clownfish::CFC;
 
 for (qw( foo FOO 1Foo Foo_Bar FOOBAR 1FOOBAR )) {
     eval { my $thing = new_symbol( class_name => $_ ) };

Modified: incubator/lucy/trunk/clownfish/perl/t/101-primitive_type.t
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/clownfish/perl/t/101-primitive_type.t?rev=1221599&r1=1221598&r2=1221599&view=diff
==============================================================================
--- incubator/lucy/trunk/clownfish/perl/t/101-primitive_type.t (original)
+++ incubator/lucy/trunk/clownfish/perl/t/101-primitive_type.t Wed Dec 21 04:02:33 2011
@@ -16,7 +16,7 @@
 use strict;
 use warnings;
 use Test::More tests => 4;
-use Clownfish;
+use Clownfish::CFC;
 
 my $type = new_primitive_type( specifier => 'hump_t' );
 ok( $type->is_primitive, "is_primitive" );