Quick fix for CPANTS META/author v0.02003
Christopher H. Laco [Sat, 8 Mar 2008 00:53:21 +0000 (00:53 +0000)]
Changes
MANIFEST.SKIP
Makefile.PL
lib/DBIx/Class/UUIDColumns.pm
t/manifest.t

diff --git a/Changes b/Changes
index ec0c78f..23cfd44 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for DBIx::Class::UUIDColumns
 
+0.02003 Fri MAr 7 19:52:56 2008
+    - Quick fix for CPANTS META/author
+
 0.02002 Mon Sep 24 23:14:45 2007
     - Added Class::Accessor::Grouped to PREREQ. Duh.
 
index e01f9fb..d309ee6 100644 (file)
@@ -8,6 +8,7 @@
 aegis.log$
 \bconfig$
 \bbuild$
+\.DS_Store$
 
 # Avoid Makemaker generated and utility files.
 \bMakefile$
@@ -32,6 +33,5 @@ Build.bat
 \.tmp$
 \#$
 \b\.#
-
-# Avoid author test files.
-\bpod-spelling.t$
+\.kpf
+\.tmproj
index 9083b0e..7005fbb 100644 (file)
@@ -34,10 +34,10 @@ recommends 'Win32API::GUID';
 tests "t/*.t t/*/*.t";
 clean_files "DBIx-Class-UUIDColumns-* t/var";
 
+eval {
+    system 'pod2text lib/DBIx/Class/UUIDColumns.pm > README';
+};
+
 auto_install;
 
-WriteMakefile(
-  dist => {
-    PREOP => 'pod2text lib/DBIx/Class/UUIDColumns.pm > README'
-  }
-);
+WriteMakefile;
index adddea8..2245def 100644 (file)
@@ -14,7 +14,7 @@ __PACKAGE__->uuid_class(__PACKAGE__->_find_uuid_module);
 # i.e. first release of 0.XX *must* be 0.XX000. This avoids fBSD ports
 # brain damage and presumably various other packaging systems too
 
-$VERSION = '0.02002';
+$VERSION = '0.02003';
 
 sub uuid_columns {
     my $self = shift;
index 8367a8b..5c2b7f3 100644 (file)
@@ -17,6 +17,6 @@ BEGIN {
 
 ok_manifest({
     exclude => ['/t/var', '/cover_db'],
-    filter  => [qr/\.svn/, qr/cover/, qr/Build(.(PL|bat))?/, qr/_build/],
+    filter  => [qr/\.svn/, qr/cover/, qr/Build(.(PL|bat))?/, qr/_build/, qr/\.tmproj/],
     bool    => 'or'
 });