checkpoint
Robert Norris [Tue, 11 Jul 2006 06:29:39 +0000 (06:29 +0000)]
Build.PL [new file with mode: 0644]
Changes [new file with mode: 0644]
MANIFEST [new file with mode: 0644]
META.yml [new file with mode: 0644]
README [new file with mode: 0644]

diff --git a/Build.PL b/Build.PL
new file mode 100644 (file)
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 <mst@shadowcatsystems.co.uk>',
+    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 (file)
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 (file)
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 (file)
index 0000000..39c051b
--- /dev/null
+++ b/META.yml
@@ -0,0 +1,16 @@
+---
+name: Class-C3-Componentised
+version: 0.01
+author:
+  - 'Matt S. Trout <mst@shadowcatsystems.co.uk>'
+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 (file)
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.