Index: lang/perl/DBIx-Lookup-Field/trunk/LICENSE
===================================================================
--- lang/perl/DBIx-Lookup-Field/trunk/LICENSE (revision 16320)
+++ lang/perl/DBIx-Lookup-Field/trunk/LICENSE (revision 16320)
@@ -0,0 +1,2 @@
+This software is dual-licensed under the Artistic license and the GPL, just
+like Perl itself.
Index: lang/perl/DBIx-Lookup-Field/trunk/t/00_perl_critic.t
===================================================================
--- lang/perl/DBIx-Lookup-Field/trunk/t/00_perl_critic.t (revision 16320)
+++ lang/perl/DBIx-Lookup-Field/trunk/t/00_perl_critic.t (revision 16320)
@@ -0,0 +1,27 @@
+#!perl -w
+
+use strict;
+use warnings;
+
+use FindBin '$Bin';
+use File::Spec;
+use UNIVERSAL::require;
+use Test::More;
+
+plan skip_all =>
+    'Author test. Set $ENV{TEST_AUTHOR} to a true value to run.'
+    unless $ENV{TEST_AUTHOR};
+
+my %opt;
+my $rc_file = File::Spec->catfile($Bin, 'perlcriticrc');
+$opt{'-profile'} = $rc_file if -r $rc_file;
+
+if (Perl::Critic->require('1.078') &&
+    Test::Perl::Critic->require &&
+    Test::Perl::Critic->import(%opt)) {
+
+    all_critic_ok("lib");
+} else {
+    plan skip_all => $@;
+}
+    
Index: lang/perl/DBIx-Lookup-Field/trunk/t/00_pod.t
===================================================================
--- lang/perl/DBIx-Lookup-Field/trunk/t/00_pod.t (revision 16320)
+++ lang/perl/DBIx-Lookup-Field/trunk/t/00_pod.t (revision 16320)
@@ -0,0 +1,10 @@
+#!perl -w
+
+use strict;
+use warnings;
+
+use Test::More;
+eval "use Test::Pod";
+plan skip_all => "Test::Pod required for testing POD" if $@;
+all_pod_files_ok();
+    
Index: lang/perl/DBIx-Lookup-Field/trunk/t/00_compile.t
===================================================================
--- lang/perl/DBIx-Lookup-Field/trunk/t/00_compile.t (revision 16320)
+++ lang/perl/DBIx-Lookup-Field/trunk/t/00_compile.t (revision 16320)
@@ -0,0 +1,13 @@
+#!perl -w
+
+use strict;
+use warnings;
+
+BEGIN {
+    use Test::More;
+    eval "use Test::Compile";
+    Test::More->builder->BAIL_OUT(
+        "Test::Compile required for testing compilation") if $@;
+    all_pm_files_ok();
+}
+    
Index: lang/perl/DBIx-Lookup-Field/trunk/MANIFEST
===================================================================
--- lang/perl/DBIx-Lookup-Field/trunk/MANIFEST (revision 9753)
+++ lang/perl/DBIx-Lookup-Field/trunk/MANIFEST (revision 16320)
@@ -17,8 +17,12 @@
 inc/UNIVERSAL/require.pm
 lib/DBIx/Lookup/Field.pm
+LICENSE
 Makefile.PL
 MANIFEST			This list of files
 META.yml
 README
+t/00_compile.t
+t/00_perl_critic.t
+t/00_pod.t
 t/perlcriticrc
 t/README
Index: lang/perl/DBIx-Lookup-Field/trunk/Changes
===================================================================
--- lang/perl/DBIx-Lookup-Field/trunk/Changes (revision 12751)
+++ lang/perl/DBIx-Lookup-Field/trunk/Changes (revision 16320)
@@ -1,50 +1,30 @@
----
-global:
-  name: DBIx-Lookup-Field
-releases:
-  - author: 'Marcel Gruenauer <marcel@cpan.org>'
-    changes:
-      - Converted Changes file to YAML style
-      - '.shipit: added Twitter step'
-      - 'Makefile.PL: added auto_install() and process_templates()'
-      - 'lib/*: converted to template'
-      - updated MANIFEST
-      - added t/perlcriticrc
-      - updated MANIFEST
-      - '.shipit: fixed svk.tagpattern'
-    date: 2008-05-29T12:04:23Z
-    tags:
-      - NEWFEATURE
-    version: 1.24
-  - author: 'Marcel Gruenauer <marcel@cpan.org>'
-    changes:
-      - fixed version requirement of Test::More
-    date: 2007-10-18T10:09:39+02:00
-    tags: []
-    version: 1.23
-  - author: 'Marcel Gruenauer <marcel@cpan.org>'
-    changes:
-      - 'converted to new-style distro (ShipIt, Module::Install)'
-      - fixed documentation
-      - moved files to where they should be
-    date: 2007-09-10T09:12:36+02:00
-    tags: []
-    version: 1.22
-  - author: 'Marcel Gruenauer <marcel@cpan.org>'
-    changes:
-      - 'Test::Distribution was still called Test::Comprehensive when 1.2 was released, so that got changed (thanks florian)'
-    date: 2002-09-10T17:04:25+02:00
-    tags: []
-    version: 1.21
-  - author: 'Marcel Gruenauer <marcel@cpan.org>'
-    changes:
-      - added dbi_lookup_field_with_reverse()
-    date: 2002-09-02T18:40:48+02:00
-    tags: []
-    version: 1.02
-  - author: 'Marcel Gruenauer <marcel@cpan.org>'
-    changes:
-      - original version
-    date: 2000-10-26T12:03:21+01:00
-    tags: []
-    version: 0.01
+Revision history for Perl extension DBIx-Lookup-Field
+
+1.24  Thu, 29 May 2008 12:04:23 -0000 (Marcel Gruenauer <marcel@cpan.org>)
+     - Converted Changes file to YAML style
+     - .shipit: added Twitter step
+     - Makefile.PL: added auto_install() and process_templates()
+     - lib/*: converted to template
+     - updated MANIFEST
+     - added t/perlcriticrc
+     - updated MANIFEST
+     - .shipit: fixed svk.tagpattern
+     - tags: NEWFEATURE
+
+1.23  Thu, 18 Oct 2007 10:09:39 +0200 (Marcel Gruenauer <marcel@cpan.org>)
+     - fixed version requirement of Test::More
+
+1.22  Mon, 10 Sep 2007 09:12:36 +0200 (Marcel Gruenauer <marcel@cpan.org>)
+     - converted to new-style distro (ShipIt, Module::Install)
+     - fixed documentation
+     - moved files to where they should be
+
+1.21  Tue, 10 Sep 2002 17:04:25 +0200 (Marcel Gruenauer <marcel@cpan.org>)
+     - Test::Distribution was still called Test::Comprehensive when 1.2 was
+       released, so that got changed (thanks florian)
+
+1.02  Mon, 02 Sep 2002 18:40:48 +0200 (Marcel Gruenauer <marcel@cpan.org>)
+     - added dbi_lookup_field_with_reverse()
+
+0.01  Thu, 26 Oct 2000 12:03:21 +0100 (Marcel Gruenauer <marcel@cpan.org>)
+     - original version
Index: lang/perl/DBIx-Lookup-Field/trunk/.shipit
===================================================================
--- lang/perl/DBIx-Lookup-Field/trunk/.shipit (revision 12751)
+++ lang/perl/DBIx-Lookup-Field/trunk/.shipit (revision 16320)
@@ -1,5 +1,5 @@
-steps = ApplyYAMLChangeLogVersion, Manifest, DistTest, Commit, Tag, MakeDist, MyUploadCPAN, DistClean, Twitter
+steps = FindVersion, ChangeVersion, CheckChangeLog, Manifest, DistTest, Commit, Tag, MakeDist, MyUploadCPAN, DistClean, Twitter
 
-svk.tagpattern = //local/coderepos/DBIx-Lookup-Field/tags/DBIx-Lookup-Field-%v
+svn.tagpattern = http://svn.coderepos.org/share/lang/perl/DBIx-Lookup-Field/tags/DBIx-Lookup-Field-%v
 
 twitter.config = ~/.twitterrc
