[Bps-public-commit] Test-Spelling branch, master, updated. 96355994bc6b80770ddcb4dcf1a0d9347b9cafe8
Shawn Moore
sartak at bestpractical.com
Mon Apr 25 11:57:26 EDT 2011
The branch, master has been updated
via 96355994bc6b80770ddcb4dcf1a0d9347b9cafe8 (commit)
via c6a246551f00df970fc71c8fada4d931334d189b (commit)
from 8f3abd16dcffd973f80b3e249bf3ae24e885d29c (commit)
Summary of changes:
MANIFEST | 8 --------
META.yml | 15 ---------------
Makefile.PL | 26 ++++++++++++--------------
3 files changed, 12 insertions(+), 37 deletions(-)
delete mode 100644 MANIFEST
delete mode 100644 META.yml
- Log -----------------------------------------------------------------
commit c6a246551f00df970fc71c8fada4d931334d189b
Author: Shawn M Moore <sartak at bestpractical.com>
Date: Mon Apr 25 11:53:03 2011 -0400
Stop versioning MANIFEST and META.yml
diff --git a/MANIFEST b/MANIFEST
deleted file mode 100644
index dbfd90b..0000000
--- a/MANIFEST
+++ /dev/null
@@ -1,8 +0,0 @@
-Changes
-lib/Test/Spelling.pm
-Makefile.PL
-MANIFEST This list of files
-META.yml
-README
-t/load.t
-t/pod.t
diff --git a/META.yml b/META.yml
deleted file mode 100644
index dead18d..0000000
--- a/META.yml
+++ /dev/null
@@ -1,15 +0,0 @@
-# http://module-build.sourceforge.net/META-spec.html
-#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
-name: Test-Spelling
-version: 0.11
-version_from: lib/Test/Spelling.pm
-installdirs: site
-requires:
- Carp: 0
- File::Spec: 0
- File::Temp: 0
- Pod::Spell: 1.01
- Test::More: 0
-
-distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.17
commit 96355994bc6b80770ddcb4dcf1a0d9347b9cafe8
Author: Shawn M Moore <sartak at bestpractical.com>
Date: Mon Apr 25 11:56:43 2011 -0400
Switch to Module::Install
I will attempt to maintain 5.6 compat until it irritates me :)
diff --git a/Makefile.PL b/Makefile.PL
index eae33c4..57780e4 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,15 +1,13 @@
-use 5.006;
-use ExtUtils::MakeMaker;
-
-WriteMakefile (
- 'NAME' => 'Test::Spelling',
- 'VERSION_FROM' => 'lib/Test/Spelling.pm',
- 'PREREQ_PM' => {
- 'Pod::Spell' => '1.01',
- 'Test::More' => 0,
- 'File::Spec' => 0,
- 'File::Temp' => 0,
- 'Carp' => 0,
- },
-);
+use inc::Module::Install;
+
+name 'Test-Spelling';
+all_from 'lib/Test/Spelling.pm';
+repository 'http://github.com/bestpractical/test-spelling';
+
+requires 'Pod::Spell' => '1.01';
+
+test_requires 'Test::More' => 0;
+test_requires 'File::Temp' => 0;
+
+WriteAll;
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list