From: Christopher H. Laco Date: Sat, 8 Mar 2008 00:53:21 +0000 (+0000) Subject: Quick fix for CPANTS META/author X-Git-Tag: v0.02003^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class-UUIDColumns.git;a=commitdiff_plain;h=refs%2Ftags%2Fv0.02003 Quick fix for CPANTS META/author --- diff --git a/Changes b/Changes index ec0c78f..23cfd44 100644 --- 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. diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP index e01f9fb..d309ee6 100644 --- a/MANIFEST.SKIP +++ b/MANIFEST.SKIP @@ -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 diff --git a/Makefile.PL b/Makefile.PL index 9083b0e..7005fbb 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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; diff --git a/lib/DBIx/Class/UUIDColumns.pm b/lib/DBIx/Class/UUIDColumns.pm index adddea8..2245def 100644 --- a/lib/DBIx/Class/UUIDColumns.pm +++ b/lib/DBIx/Class/UUIDColumns.pm @@ -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; diff --git a/t/manifest.t b/t/manifest.t index 8367a8b..5c2b7f3 100644 --- a/t/manifest.t +++ b/t/manifest.t @@ -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' });