From: Robert Norris Date: Tue, 11 Jul 2006 06:29:39 +0000 (+0000) Subject: checkpoint X-Git-Tag: v1.001000~38 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4892f64f9e4efe6c22ea3d25a58846ad3c923eef;p=p5sagit%2FClass-C3-Componentised.git checkpoint --- diff --git a/Build.PL b/Build.PL new file mode 100644 index 0000000..a066280 --- /dev/null +++ b/Build.PL @@ -0,0 +1,20 @@ +use strict; +use warnings; +use Module::Build; + +my $builder = Module::Build->new( + module_name => 'Class::C3::Componentised', + dist_author => 'Matt S. Trout ', + license => 'perl', + create_makefile_pl => 'passthrough', + dist_version_from => 'lib/Class/C3/Componentised.pm', + requires => { + 'Class::C3' => 0, + }, + build_requires => { + 'Test::More' => 0, + }, + add_to_cleanup => [ 'Class-C3-Componentised-*' ], +); + +$builder->create_build_script(); diff --git a/Changes b/Changes new file mode 100644 index 0000000..726c3f4 --- /dev/null +++ b/Changes @@ -0,0 +1,5 @@ +Revision history for Class-C3-Componentised + +0.01 soon + First version, based on DBIx::Class r2082 + diff --git a/MANIFEST b/MANIFEST new file mode 100644 index 0000000..f9e1288 --- /dev/null +++ b/MANIFEST @@ -0,0 +1,10 @@ +Build.PL +Changes +MANIFEST +META.yml # Will be created by "make dist" +README +lib/Class/C3/Componentised.pm +t/00-load.t +t/boilerplate.t +t/pod-coverage.t +t/pod.t diff --git a/META.yml b/META.yml new file mode 100644 index 0000000..39c051b --- /dev/null +++ b/META.yml @@ -0,0 +1,16 @@ +--- +name: Class-C3-Componentised +version: 0.01 +author: + - 'Matt S. Trout ' +abstract: ~ +license: perl +requires: + Class::C3: 0 +build_requires: + Test::More: 0 +provides: + Class::C3::Componentised: + file: lib/Class/C3/Componentised.pm + version: 0.01 +generated_by: Module::Build version 0.26 diff --git a/README b/README new file mode 100644 index 0000000..72e5e94 --- /dev/null +++ b/README @@ -0,0 +1,15 @@ +README for Class::C3::Componentised + +Description here + +INSTALL + + perl Build.PL + ./Build + ./Build test + ./Build install + +LICENSE + +This program is free software; you can redistribute it and/or modify it +under the same terms as Perl itself.