Index: /lang/perl/Number-Rangify/trunk/LICENSE
===================================================================
--- /lang/perl/Number-Rangify/trunk/LICENSE (revision 16360)
+++ /lang/perl/Number-Rangify/trunk/LICENSE (revision 16360)
@@ -0,0 +1,2 @@
+This software is dual-licensed under the Artistic license and the GPL, just
+like Perl itself.
Index: /lang/perl/Number-Rangify/trunk/t/00_perl_critic.t
===================================================================
--- /lang/perl/Number-Rangify/trunk/t/00_perl_critic.t (revision 16360)
+++ /lang/perl/Number-Rangify/trunk/t/00_perl_critic.t (revision 16360)
@@ -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/Number-Rangify/trunk/t/00_pod.t
===================================================================
--- /lang/perl/Number-Rangify/trunk/t/00_pod.t (revision 16360)
+++ /lang/perl/Number-Rangify/trunk/t/00_pod.t (revision 16360)
@@ -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/Number-Rangify/trunk/t/00_compile.t
===================================================================
--- /lang/perl/Number-Rangify/trunk/t/00_compile.t (revision 16360)
+++ /lang/perl/Number-Rangify/trunk/t/00_compile.t (revision 16360)
@@ -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/Number-Rangify/trunk/MANIFEST
===================================================================
--- /lang/perl/Number-Rangify/trunk/MANIFEST (revision 9791)
+++ /lang/perl/Number-Rangify/trunk/MANIFEST (revision 16360)
@@ -17,8 +17,12 @@
 inc/UNIVERSAL/require.pm
 lib/Number/Rangify.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/01_misc.t
 t/perlcriticrc
Index: /lang/perl/Number-Rangify/trunk/Changes
===================================================================
--- /lang/perl/Number-Rangify/trunk/Changes (revision 12775)
+++ /lang/perl/Number-Rangify/trunk/Changes (revision 16360)
@@ -1,23 +1,14 @@
----
-global:
-  name: Number-Rangify
-releases:
-  - author: 'Marcel Gruenauer <marcel@cpan.org>'
-    changes:
-      - set the version to 0.02
-      - '.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:06:29Z
-    tags: []
-    version: 0.02
-  - author: 'Marcel Gruenauer <marcel@cpan.org>'
-    changes:
-      - original version
-    date: 2007-11-09T14:22:28Z
-    tags: []
-    version: 0.01
+Revision history for Perl extension Number-Rangify
+
+0.02  Thu, 29 May 2008 12:06:29 -0000 (Marcel Gruenauer <marcel@cpan.org>)
+     - set the version to 0.02
+     - .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
+
+0.01  Fri, 09 Nov 2007 14:22:28 -0000 (Marcel Gruenauer <marcel@cpan.org>)
+     - original version
Index: /lang/perl/Number-Rangify/trunk/.shipit
===================================================================
--- /lang/perl/Number-Rangify/trunk/.shipit (revision 12775)
+++ /lang/perl/Number-Rangify/trunk/.shipit (revision 16360)
@@ -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/Number-Rangify/tags/Number-Rangify-%v
+svn.tagpattern = http://svn.coderepos.org/share/lang/perl/Number-Rangify/tags/Number-Rangify-%v
 
 twitter.config = ~/.twitterrc
