From: Scott McWhirter Date: Thu, 9 Mar 2006 20:50:32 +0000 (+0000) Subject: Update to hide modules from the PAUSE Indexer. X-Git-Tag: v0.06000~60^2~37 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c6d74d3ead7c87c6c63997b8e39fa638f4851559;hp=c0e7b4e55952cd193b6f1866d0c27ece182397eb;p=dbsrgits%2FDBIx-Class.git Update to hide modules from the PAUSE Indexer. --- diff --git a/t/lib/DBICTest.pm b/t/lib/DBICTest.pm index a2eef1b..628696a 100755 --- a/t/lib/DBICTest.pm +++ b/t/lib/DBICTest.pm @@ -1,4 +1,5 @@ -package DBICTest; +package # hide from PAUSE + DBICTest; use strict; use warnings; diff --git a/t/lib/DBICTest/BasicRels.pm b/t/lib/DBICTest/BasicRels.pm index 9ee0938..0e905df 100644 --- a/t/lib/DBICTest/BasicRels.pm +++ b/t/lib/DBICTest/BasicRels.pm @@ -1,4 +1,5 @@ -package DBICTest::BasicRels; +package # hide from PAUSE + DBICTest::BasicRels; use DBICTest::Schema; use DBICTest::Schema::BasicRels; diff --git a/t/lib/DBICTest/Extra.pm b/t/lib/DBICTest/Extra.pm index 96f11d9..17418ea 100644 --- a/t/lib/DBICTest/Extra.pm +++ b/t/lib/DBICTest/Extra.pm @@ -1,4 +1,5 @@ -package DBICTest::Extra; +package # hide from PAUSE + DBICTest::Extra; use base 'DBIx::Class::Schema'; __PACKAGE__->load_classes("Foo"); diff --git a/t/lib/DBICTest/Extra/Foo.pm b/t/lib/DBICTest/Extra/Foo.pm index 9f8670f..2572ac3 100644 --- a/t/lib/DBICTest/Extra/Foo.pm +++ b/t/lib/DBICTest/Extra/Foo.pm @@ -1,4 +1,5 @@ -package DBICTest::Extra::Foo; +package # hide from PAUSE + DBICTest::Extra::Foo; use base 'DBIx::Class'; __PACKAGE__->load_components(qw/ ResultSetManager Core /); @@ -6,4 +7,4 @@ __PACKAGE__->table('foo'); sub bar : ResultSet { 'good' } -1; \ No newline at end of file +1; diff --git a/t/lib/DBICTest/ForeignComponent.pm b/t/lib/DBICTest/ForeignComponent.pm index a701459..333dd26 100644 --- a/t/lib/DBICTest/ForeignComponent.pm +++ b/t/lib/DBICTest/ForeignComponent.pm @@ -1,5 +1,6 @@ # belongs to t/05components.t -package DBICTest::ForeignComponent; +package # hide from PAUSE + DBICTest::ForeignComponent; use warnings; use strict; diff --git a/t/lib/DBICTest/ForeignComponent/TestComp.pm b/t/lib/DBICTest/ForeignComponent/TestComp.pm index ce024ba..cc95940 100644 --- a/t/lib/DBICTest/ForeignComponent/TestComp.pm +++ b/t/lib/DBICTest/ForeignComponent/TestComp.pm @@ -1,5 +1,6 @@ # belongs to t/05components.t -package DBICTest::ForeignComponent::TestComp; +package # hide from PAUSE + DBICTest::ForeignComponent::TestComp; use warnings; use strict; diff --git a/t/lib/DBICTest/HelperRels.pm b/t/lib/DBICTest/HelperRels.pm index 2dec167..93456ed 100644 --- a/t/lib/DBICTest/HelperRels.pm +++ b/t/lib/DBICTest/HelperRels.pm @@ -1,4 +1,5 @@ -package DBICTest::HelperRels; +package # hide from PAUSE + DBICTest::HelperRels; use DBICTest::Schema; use DBICTest::Schema::HelperRels; diff --git a/t/lib/DBICTest/Plain.pm b/t/lib/DBICTest/Plain.pm index 313d1fc..03a1976 100644 --- a/t/lib/DBICTest/Plain.pm +++ b/t/lib/DBICTest/Plain.pm @@ -1,4 +1,5 @@ -package DBICTest::Plain; +package # hide from PAUSE + DBICTest::Plain; use strict; use warnings; diff --git a/t/lib/DBICTest/Plain/Test.pm b/t/lib/DBICTest/Plain/Test.pm index 4b5e00f..e950278 100644 --- a/t/lib/DBICTest/Plain/Test.pm +++ b/t/lib/DBICTest/Plain/Test.pm @@ -1,4 +1,5 @@ -package DBICTest::Plain::Test; +package # hide from PAUSE + DBICTest::Plain::Test; use base 'DBIx::Class::Core'; diff --git a/t/lib/DBICTest/Schema.pm b/t/lib/DBICTest/Schema.pm index 8090e51..f2ee2d7 100644 --- a/t/lib/DBICTest/Schema.pm +++ b/t/lib/DBICTest/Schema.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema; +package # hide from PAUSE + DBICTest::Schema; use base qw/DBIx::Class::Schema/; diff --git a/t/lib/DBICTest/Schema/Artist.pm b/t/lib/DBICTest/Schema/Artist.pm index d05526f..43504b3 100644 --- a/t/lib/DBICTest/Schema/Artist.pm +++ b/t/lib/DBICTest/Schema/Artist.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema::Artist; +package # hide from PAUSE + DBICTest::Schema::Artist; use base 'DBIx::Class::Core'; diff --git a/t/lib/DBICTest/Schema/ArtistUndirectedMap.pm b/t/lib/DBICTest/Schema/ArtistUndirectedMap.pm index 8e58312..6e888ed 100644 --- a/t/lib/DBICTest/Schema/ArtistUndirectedMap.pm +++ b/t/lib/DBICTest/Schema/ArtistUndirectedMap.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema::ArtistUndirectedMap; +package # hide from PAUSE + DBICTest::Schema::ArtistUndirectedMap; use base 'DBIx::Class::Core'; diff --git a/t/lib/DBICTest/Schema/BasicRels.pm b/t/lib/DBICTest/Schema/BasicRels.pm index ecb9cef..75e5d34 100644 --- a/t/lib/DBICTest/Schema/BasicRels.pm +++ b/t/lib/DBICTest/Schema/BasicRels.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema::BasicRels; +package # hide from PAUSE + DBICTest::Schema::BasicRels; use base 'DBIx::Class::Core'; diff --git a/t/lib/DBICTest/Schema/CD.pm b/t/lib/DBICTest/Schema/CD.pm index 4eaba4f..7487644 100644 --- a/t/lib/DBICTest/Schema/CD.pm +++ b/t/lib/DBICTest/Schema/CD.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema::CD; +package # hide from PAUSE + DBICTest::Schema::CD; use base 'DBIx::Class::Core'; diff --git a/t/lib/DBICTest/Schema/CD_to_Producer.pm b/t/lib/DBICTest/Schema/CD_to_Producer.pm index 762e806..378c58c 100644 --- a/t/lib/DBICTest/Schema/CD_to_Producer.pm +++ b/t/lib/DBICTest/Schema/CD_to_Producer.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema::CD_to_Producer; +package # hide from PAUSE + DBICTest::Schema::CD_to_Producer; use base 'DBIx::Class::Core'; diff --git a/t/lib/DBICTest/Schema/FourKeys.pm b/t/lib/DBICTest/Schema/FourKeys.pm index f9112fa..71659e6 100644 --- a/t/lib/DBICTest/Schema/FourKeys.pm +++ b/t/lib/DBICTest/Schema/FourKeys.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema::FourKeys; +package # hide from PAUSE + DBICTest::Schema::FourKeys; use base 'DBIx::Class::Core'; diff --git a/t/lib/DBICTest/Schema/HelperRels.pm b/t/lib/DBICTest/Schema/HelperRels.pm index 59cd0a3..45e0ed8 100644 --- a/t/lib/DBICTest/Schema/HelperRels.pm +++ b/t/lib/DBICTest/Schema/HelperRels.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema::HelperRels; +package # hide from PAUSE + DBICTest::Schema::HelperRels; use base 'DBIx::Class::Core'; diff --git a/t/lib/DBICTest/Schema/LinerNotes.pm b/t/lib/DBICTest/Schema/LinerNotes.pm index 1f35b4b..19e4025 100644 --- a/t/lib/DBICTest/Schema/LinerNotes.pm +++ b/t/lib/DBICTest/Schema/LinerNotes.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema::LinerNotes; +package # hide from PAUSE + DBICTest::Schema::LinerNotes; use base qw/DBIx::Class::Core/; diff --git a/t/lib/DBICTest/Schema/OneKey.pm b/t/lib/DBICTest/Schema/OneKey.pm index 19387eb..dbe7003 100644 --- a/t/lib/DBICTest/Schema/OneKey.pm +++ b/t/lib/DBICTest/Schema/OneKey.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema::OneKey; +package # hide from PAUSE + DBICTest::Schema::OneKey; use base 'DBIx::Class::Core'; diff --git a/t/lib/DBICTest/Schema/Producer.pm b/t/lib/DBICTest/Schema/Producer.pm index 01fa843..d1cbc18 100644 --- a/t/lib/DBICTest/Schema/Producer.pm +++ b/t/lib/DBICTest/Schema/Producer.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema::Producer; +package # hide from PAUSE + DBICTest::Schema::Producer; use base 'DBIx::Class::Core'; diff --git a/t/lib/DBICTest/Schema/SelfRef.pm b/t/lib/DBICTest/Schema/SelfRef.pm index 48c8290..2817b67 100644 --- a/t/lib/DBICTest/Schema/SelfRef.pm +++ b/t/lib/DBICTest/Schema/SelfRef.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema::SelfRef; +package # hide from PAUSE + DBICTest::Schema::SelfRef; use base 'DBIx::Class::Core'; diff --git a/t/lib/DBICTest/Schema/SelfRefAlias.pm b/t/lib/DBICTest/Schema/SelfRefAlias.pm index 9761d94..9d58a8c 100644 --- a/t/lib/DBICTest/Schema/SelfRefAlias.pm +++ b/t/lib/DBICTest/Schema/SelfRefAlias.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema::SelfRefAlias; +package # hide from PAUSE + DBICTest::Schema::SelfRefAlias; use base 'DBIx::Class::Core'; diff --git a/t/lib/DBICTest/Schema/Serialized.pm b/t/lib/DBICTest/Schema/Serialized.pm index 16b73f0..41610da 100644 --- a/t/lib/DBICTest/Schema/Serialized.pm +++ b/t/lib/DBICTest/Schema/Serialized.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema::Serialized; +package # hide from PAUSE + DBICTest::Schema::Serialized; use base 'DBIx::Class::Core'; diff --git a/t/lib/DBICTest/Schema/Tag.pm b/t/lib/DBICTest/Schema/Tag.pm index 5b4eb20..4fdf230 100644 --- a/t/lib/DBICTest/Schema/Tag.pm +++ b/t/lib/DBICTest/Schema/Tag.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema::Tag; +package # hide from PAUSE + DBICTest::Schema::Tag; use base qw/DBIx::Class::Core/; diff --git a/t/lib/DBICTest/Schema/Track.pm b/t/lib/DBICTest/Schema/Track.pm index 3385a1d..d20c908 100644 --- a/t/lib/DBICTest/Schema/Track.pm +++ b/t/lib/DBICTest/Schema/Track.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema::Track; +package # hide from PAUSE + DBICTest::Schema::Track; use base 'DBIx::Class::Core'; diff --git a/t/lib/DBICTest/Schema/TreeLike.pm b/t/lib/DBICTest/Schema/TreeLike.pm index 5b3835c..49abb69 100644 --- a/t/lib/DBICTest/Schema/TreeLike.pm +++ b/t/lib/DBICTest/Schema/TreeLike.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema::TreeLike; +package # hide from PAUSE + DBICTest::Schema::TreeLike; use base qw/DBIx::Class/; diff --git a/t/lib/DBICTest/Schema/TwoKeys.pm b/t/lib/DBICTest/Schema/TwoKeys.pm index e4bb1b0..91a6fef 100755 --- a/t/lib/DBICTest/Schema/TwoKeys.pm +++ b/t/lib/DBICTest/Schema/TwoKeys.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema::TwoKeys; +package # hide from PAUSE + DBICTest::Schema::TwoKeys; use base 'DBIx::Class::Core'; diff --git a/t/testlib/Actor.pm b/t/testlib/Actor.pm index 837b095..62bd5ad 100644 --- a/t/testlib/Actor.pm +++ b/t/testlib/Actor.pm @@ -1,4 +1,5 @@ -package Actor; +package # hide from PAUSE + Actor; BEGIN { unshift @INC, './t/testlib'; } diff --git a/t/testlib/ActorAlias.pm b/t/testlib/ActorAlias.pm index 8dcbcb0..90e3042 100644 --- a/t/testlib/ActorAlias.pm +++ b/t/testlib/ActorAlias.pm @@ -1,4 +1,5 @@ -package ActorAlias; +package # hide from PAUSE + ActorAlias; BEGIN { unshift @INC, './t/testlib'; } diff --git a/t/testlib/Binary.pm b/t/testlib/Binary.pm index d29849f..10ba5b1 100644 --- a/t/testlib/Binary.pm +++ b/t/testlib/Binary.pm @@ -1,4 +1,5 @@ -package Binary; +package # hide from PAUSE + Binary; BEGIN { unshift @INC, './t/testlib'; } diff --git a/t/testlib/Blurb.pm b/t/testlib/Blurb.pm index 8173cb8..4f4baf0 100644 --- a/t/testlib/Blurb.pm +++ b/t/testlib/Blurb.pm @@ -1,4 +1,5 @@ -package Blurb; +package # hide from PAUSE + Blurb; BEGIN { unshift @INC, './t/testlib'; } diff --git a/t/testlib/CDBase.pm b/t/testlib/CDBase.pm index 80d8fc5..22c6262 100644 --- a/t/testlib/CDBase.pm +++ b/t/testlib/CDBase.pm @@ -1,4 +1,5 @@ -package CDBase; +package # hide from PAUSE + CDBase; use strict; use base qw(DBIx::Class::Test::SQLite); diff --git a/t/testlib/Director.pm b/t/testlib/Director.pm index aa13661..b19a44a 100644 --- a/t/testlib/Director.pm +++ b/t/testlib/Director.pm @@ -1,4 +1,5 @@ -package Director; +package # hide from PAUSE + Director; BEGIN { unshift @INC, './t/testlib'; } diff --git a/t/testlib/Film.pm b/t/testlib/Film.pm index 6747656..459015f 100644 --- a/t/testlib/Film.pm +++ b/t/testlib/Film.pm @@ -1,4 +1,5 @@ -package Film; +package # hide from PAUSE + Film; BEGIN { unshift @INC, './t/testlib'; } use base 'DBIx::Class::Test::SQLite'; diff --git a/t/testlib/Lazy.pm b/t/testlib/Lazy.pm index 74dc069..b30c34b 100644 --- a/t/testlib/Lazy.pm +++ b/t/testlib/Lazy.pm @@ -1,4 +1,5 @@ -package Lazy; +package # hide from PAUSE + Lazy; BEGIN { unshift @INC, './t/testlib'; } use base 'DBIx::Class::Test::SQLite'; diff --git a/t/testlib/Log.pm b/t/testlib/Log.pm index af4c6f6..33672b5 100644 --- a/t/testlib/Log.pm +++ b/t/testlib/Log.pm @@ -1,4 +1,5 @@ -package Log; +package # hide from PAUSE + Log; BEGIN { unshift @INC, './t/testlib'; } use base 'MyBase'; diff --git a/t/testlib/MyBase.pm b/t/testlib/MyBase.pm index 4950087..da1e86f 100644 --- a/t/testlib/MyBase.pm +++ b/t/testlib/MyBase.pm @@ -1,4 +1,5 @@ -package MyBase; +package # hide from PAUSE + MyBase; use strict; use base qw(DBIx::Class); diff --git a/t/testlib/MyFilm.pm b/t/testlib/MyFilm.pm index 676a4a9..e0abf44 100644 --- a/t/testlib/MyFilm.pm +++ b/t/testlib/MyFilm.pm @@ -1,4 +1,5 @@ -package MyFilm; +package # hide from PAUSE + MyFilm; BEGIN { unshift @INC, './t/testlib'; } use base 'MyBase'; diff --git a/t/testlib/MyFoo.pm b/t/testlib/MyFoo.pm index 4ed37d8..fa536ab 100644 --- a/t/testlib/MyFoo.pm +++ b/t/testlib/MyFoo.pm @@ -1,4 +1,5 @@ -package MyFoo; +package # hide from PAUSE + MyFoo; BEGIN { unshift @INC, './t/testlib'; } use base 'MyBase'; diff --git a/t/testlib/MyStar.pm b/t/testlib/MyStar.pm index e8e79b2..f053d1c 100644 --- a/t/testlib/MyStar.pm +++ b/t/testlib/MyStar.pm @@ -1,4 +1,5 @@ -package MyStar; +package # hide from PAUSE + MyStar; BEGIN { unshift @INC, './t/testlib'; } use base 'MyBase'; diff --git a/t/testlib/MyStarLink.pm b/t/testlib/MyStarLink.pm index fe31e25..74a835c 100644 --- a/t/testlib/MyStarLink.pm +++ b/t/testlib/MyStarLink.pm @@ -1,4 +1,5 @@ -package MyStarLink; +package # hide from PAUSE + MyStarLink; BEGIN { unshift @INC, './t/testlib'; } use base 'MyBase'; diff --git a/t/testlib/MyStarLinkMCPK.pm b/t/testlib/MyStarLinkMCPK.pm index f81292f..3e74a5b 100644 --- a/t/testlib/MyStarLinkMCPK.pm +++ b/t/testlib/MyStarLinkMCPK.pm @@ -1,4 +1,5 @@ -package MyStarLinkMCPK; +package # hide from PAUSE + MyStarLinkMCPK; BEGIN { unshift @INC, './t/testlib'; } use base 'MyBase'; diff --git a/t/testlib/Order.pm b/t/testlib/Order.pm index a48a135..009e10e 100644 --- a/t/testlib/Order.pm +++ b/t/testlib/Order.pm @@ -1,4 +1,5 @@ -package Order; +package # hide from PAUSE + Order; BEGIN { unshift @INC, './t/testlib'; } diff --git a/t/testlib/OtherFilm.pm b/t/testlib/OtherFilm.pm index 2e78316..5d97101 100644 --- a/t/testlib/OtherFilm.pm +++ b/t/testlib/OtherFilm.pm @@ -1,4 +1,5 @@ -package OtherFilm; +package # hide from PAUSE + OtherFilm; use strict; use base 'Film'; diff --git a/t/testlib/PgBase.pm b/t/testlib/PgBase.pm index c75773b..5428a50 100644 --- a/t/testlib/PgBase.pm +++ b/t/testlib/PgBase.pm @@ -1,4 +1,5 @@ -package PgBase; +package # hide from PAUSE + PgBase; use strict; use base 'DBIx::Class';