Shuffle things around, maint/ is now a proper toolchain tooldir
Peter Rabbitson [Sat, 4 Feb 2012 21:27:51 +0000 (22:27 +0100)]
MANIFEST.SKIP
examples/Benchmarks/benchmark_datafetch.pl [moved from maint/benchmark_datafetch.pl with 94% similarity]
examples/Benchmarks/benchmark_hashrefinflator.pl [moved from maint/benchmark_hashrefinflator.pl with 98% similarity]
examples/MiscTools/determine_cpan_joint_deps.pl [moved from maint/joint_deps.pl with 100% similarity]

index eb45ef6..f6c1759 100644 (file)
@@ -1,30 +1,12 @@
-^(?!script/|examples/|lib/|inc/|t/|xt/|Makefile\.PL$|maint/Makefile\.PL|README$|MANIFEST$|Changes$|META\.(?:yml|json)$)
+^(?!script/|examples/|lib/|inc/|t/|xt/|Makefile\.PL$|maint/|README$|MANIFEST$|Changes$|META\.(?:yml|json)$)
 
 # Avoid version control files.
 \bRCS\b
 \bCVS\b
 ,v$
 \B\.svn\b
-\B\.git\b
-\B\.gitignore\b
 \b_darcs\b
 
-# Avoid Makemaker generated and utility files.
-\bMakefile$
-\bblib
-\bMakeMaker-\d
-\bpm_to_blib$
-\bblibdirs$
-^MANIFEST\.SKIP$
-
-# for developers only :)
-^TODO$
-^Features_09$
-
-# Avoid Module::Build generated and utility files.
-\bBuild$
-\b_build
-
 # Avoid temp and backup files.
 ~$
 \.tmp$
 # Don't ship the test db
 ^t/var
 
-# Don't ship the last dist we built :)
-\.tar\.(?:gz|bz2|xz)$
-
 # Avoid patch remnants
 \.orig$
 \.rej$
 
-# Dont use Module::Build anymore
-^Build\.PL$
similarity index 94%
rename from maint/benchmark_datafetch.pl
rename to examples/Benchmarks/benchmark_datafetch.pl
index a325aa9..25938f4 100755 (executable)
@@ -5,8 +5,8 @@ use warnings;
 
 use Benchmark qw/cmpthese/;
 use FindBin;
-use lib "$FindBin::Bin/../t/lib";
-use lib "$FindBin::Bin/../lib";
+use lib "$FindBin::Bin/../../t/lib";
+use lib "$FindBin::Bin/../../lib";
 use DBICTest::Schema;
 use DBIx::Class::ResultClass::HashRefInflator;  # older dbic didn't load it
 
similarity index 98%
rename from maint/benchmark_hashrefinflator.pl
rename to examples/Benchmarks/benchmark_hashrefinflator.pl
index 6d6a081..3d566f9 100755 (executable)
@@ -10,7 +10,7 @@ use warnings;
 use strict;
 
 use FindBin;
-use lib ("$FindBin::Bin/../lib", "$FindBin::Bin/../t/lib");
+use lib ("$FindBin::Bin/../../lib", "$FindBin::Bin/../../t/lib");
 
 use Class::Unload '0.07';
 use Benchmark ();
@@ -19,7 +19,7 @@ use Benchmark::Dumb ':all';
 use DBICTest;
 
 # for git reporting to work, and to use it as INC key directly
-chdir ("$FindBin::Bin/../lib");
+chdir ("$FindBin::Bin/../../lib");
 my $hri_fn = 'DBIx/Class/ResultClass/HashRefInflator.pm';
 
 require Getopt::Long;