From: Peter Rabbitson Date: Sat, 4 Feb 2012 21:27:51 +0000 (+0100) Subject: Shuffle things around, maint/ is now a proper toolchain tooldir X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=626282428d929eeb4f3947ebafbcbc1e0be2898e;p=dbsrgits%2FDBIx-Class-Historic.git Shuffle things around, maint/ is now a proper toolchain tooldir --- diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP index eb45ef6..f6c1759 100644 --- a/MANIFEST.SKIP +++ b/MANIFEST.SKIP @@ -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$ @@ -40,12 +22,7 @@ # 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$ diff --git a/maint/benchmark_datafetch.pl b/examples/Benchmarks/benchmark_datafetch.pl similarity index 94% rename from maint/benchmark_datafetch.pl rename to examples/Benchmarks/benchmark_datafetch.pl index a325aa9..25938f4 100755 --- a/maint/benchmark_datafetch.pl +++ b/examples/Benchmarks/benchmark_datafetch.pl @@ -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 diff --git a/maint/benchmark_hashrefinflator.pl b/examples/Benchmarks/benchmark_hashrefinflator.pl similarity index 98% rename from maint/benchmark_hashrefinflator.pl rename to examples/Benchmarks/benchmark_hashrefinflator.pl index 6d6a081..3d566f9 100755 --- a/maint/benchmark_hashrefinflator.pl +++ b/examples/Benchmarks/benchmark_hashrefinflator.pl @@ -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; diff --git a/maint/joint_deps.pl b/examples/MiscTools/determine_cpan_joint_deps.pl similarity index 100% rename from maint/joint_deps.pl rename to examples/MiscTools/determine_cpan_joint_deps.pl