[Bps-public-commit] Shipwright branch, master, updated. 22b2306ca3d29abb4ead10d403f6a9c2d3d9a8bb

? sunnavy sunnavy at bestpractical.com
Sat Apr 2 07:36:21 EDT 2011


The branch, master has been updated
       via  22b2306ca3d29abb4ead10d403f6a9c2d3d9a8bb (commit)
       via  a3a755b8fa91adbb2ddbc0e4393ac9484534b3ca (commit)
       via  d1b451101c6ffe19fedf417768db86b3f669bced (commit)
       via  b8a48f4f7d66c44219b8b9bfbeec254fab13064e (commit)
      from  0cc48c0ad3a09288524391bde1ba450366ef693d (commit)

Summary of changes:
 Changes                                        |    6 +++++-
 META.yml                                       |    2 +-
 README                                         |    2 +-
 lib/Shipwright.pm                              |    4 ++--
 lib/Shipwright/Backend.pm                      |    2 +-
 lib/Shipwright/Backend/Base.pm                 |    2 +-
 lib/Shipwright/Backend/FS.pm                   |    2 +-
 lib/Shipwright/Backend/Git.pm                  |    2 +-
 lib/Shipwright/Backend/SVK.pm                  |    2 +-
 lib/Shipwright/Backend/SVN.pm                  |    2 +-
 lib/Shipwright/Base.pm                         |    2 +-
 lib/Shipwright/Logger.pm                       |    2 +-
 lib/Shipwright/Manual.pod                      |    2 +-
 lib/Shipwright/Manual/BuildMultiArchVessel.pod |    2 +-
 lib/Shipwright/Manual/CustomizeBuild.pod       |    2 +-
 lib/Shipwright/Manual/ENV.pod                  |    8 +++++++-
 lib/Shipwright/Manual/Glossary.pod             |    2 +-
 lib/Shipwright/Manual/Tutorial.pod             |    2 +-
 lib/Shipwright/Manual/UsingBranches.pod        |    2 +-
 lib/Shipwright/Manual/UsingFlags.pod           |    2 +-
 lib/Shipwright/Script.pm                       |    2 +-
 lib/Shipwright/Script/Create.pm                |    2 +-
 lib/Shipwright/Script/Defaultbranch.pm         |    2 +-
 lib/Shipwright/Script/Delete.pm                |    2 +-
 lib/Shipwright/Script/Flags.pm                 |    2 +-
 lib/Shipwright/Script/Help.pm                  |    2 +-
 lib/Shipwright/Script/Import.pm                |    2 +-
 lib/Shipwright/Script/Ktf.pm                   |    2 +-
 lib/Shipwright/Script/List.pm                  |    2 +-
 lib/Shipwright/Script/Maintain.pm              |    2 +-
 lib/Shipwright/Script/Relocate.pm              |    2 +-
 lib/Shipwright/Script/Rename.pm                |    2 +-
 lib/Shipwright/Script/Requires.pm              |    2 +-
 lib/Shipwright/Script/Update.pm                |    2 +-
 lib/Shipwright/Source.pm                       |    2 +-
 lib/Shipwright/Source/Base.pm                  |    2 +-
 lib/Shipwright/Source/CPAN.pm                  |    2 +-
 lib/Shipwright/Source/Compressed.pm            |    2 +-
 lib/Shipwright/Source/Directory.pm             |    2 +-
 lib/Shipwright/Source/FTP.pm                   |    2 +-
 lib/Shipwright/Source/Git.pm                   |    2 +-
 lib/Shipwright/Source/HTTP.pm                  |    2 +-
 lib/Shipwright/Source/SVK.pm                   |    2 +-
 lib/Shipwright/Source/SVN.pm                   |    2 +-
 lib/Shipwright/Source/Shipyard.pm              |    2 +-
 lib/Shipwright/Test.pm                         |    2 +-
 lib/Shipwright/Util.pm                         |    2 +-
 lib/Shipwright/Util/CleanINC.pm                |    2 +-
 lib/Shipwright/Util/PatchModuleBuild.pm        |    2 +-
 t/71.script_cmds.t                             |    6 ++++++
 t/hello/fs.t                                   |    9 ++++++++-
 t/hello/git.t                                  |    9 ++++++++-
 t/hello/svk.t                                  |    9 ++++++++-
 t/hello/svn.t                                  |    9 ++++++++-
 54 files changed, 98 insertions(+), 54 deletions(-)

- Log -----------------------------------------------------------------
commit b8a48f4f7d66c44219b8b9bfbeec254fab13064e
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Sat Apr 2 15:43:23 2011 +0800

    skip tests that may fail on fedora or alike as they fucked core lib

diff --git a/lib/Shipwright/Manual/ENV.pod b/lib/Shipwright/Manual/ENV.pod
index 99c5f6d..43b3032 100644
--- a/lib/Shipwright/Manual/ENV.pod
+++ b/lib/Shipwright/Manual/ENV.pod
@@ -67,6 +67,12 @@ path of F<git> command, default value is F<git>.
 
 url of the cpan mirror
 
+=item SHIPWRIGHT_TEST_EXTRA
+
+    some tests depend on something that's missing in some distribution, to
+    make cpan's report happy, thoese tests are disabled by default.
+    you can enable this to set this true.
+
 =item SHIPWRIGHT_TEST_SVK
 
     test svk backend if this's true
diff --git a/t/71.script_cmds.t b/t/71.script_cmds.t
index 980140b..35fb5c8 100644
--- a/t/71.script_cmds.t
+++ b/t/71.script_cmds.t
@@ -1,7 +1,13 @@
 use strict;
 use warnings;
 
+
 use Test::More;
+
+if ( ! $ENV{SHIPWRIGHT_TEST_EXTRA} ) {
+    plan skip_all => 'SHIPWRIGHT_TEST_EXTRA is not set';
+}
+
 if ( $^O =~ /MSWin/ ) {
     plan tests => 136;
 }
diff --git a/t/hello/fs.t b/t/hello/fs.t
index 3d37075..075c4ed 100644
--- a/t/hello/fs.t
+++ b/t/hello/fs.t
@@ -1,6 +1,14 @@
 use strict;
 use warnings;
 
+use Test::More;
+
+if ( ! $ENV{SHIPWRIGHT_TEST_EXTRA} ) {
+    plan skip_all => 'SHIPWRIGHT_TEST_EXTRA is not set';
+}
+
+plan tests => 38;
+
 use Shipwright;
 use File::Temp qw/tempdir/;
 use File::Copy;
@@ -10,7 +18,6 @@ use File::Path qw/remove_tree/;
 use Cwd qw/getcwd abs_path/;
 use File::Slurp;
 
-use Test::More tests => 38;
 use Shipwright::Test;
 Shipwright::Test->init;
 
diff --git a/t/hello/git.t b/t/hello/git.t
index dad0b14..ae76bae 100644
--- a/t/hello/git.t
+++ b/t/hello/git.t
@@ -1,6 +1,14 @@
 use strict;
 use warnings;
 
+use Test::More;
+
+if ( ! $ENV{SHIPWRIGHT_TEST_EXTRA} ) {
+    plan skip_all => 'SHIPWRIGHT_TEST_EXTRA is not set';
+}
+
+plan tests => 10;
+
 use Shipwright;
 use File::Temp qw/tempdir/;
 use File::Copy;
@@ -9,7 +17,6 @@ use File::Spec::Functions qw/catfile catdir updir/;
 use Cwd qw/getcwd abs_path/;
 use File::Slurp;
 
-use Test::More tests => 10;
 use Shipwright::Test;
 Shipwright::Test->init;
 
diff --git a/t/hello/svk.t b/t/hello/svk.t
index f977da4..30c759c 100644
--- a/t/hello/svk.t
+++ b/t/hello/svk.t
@@ -1,6 +1,14 @@
 use strict;
 use warnings;
 
+use Test::More;
+
+if ( ! $ENV{SHIPWRIGHT_TEST_EXTRA} ) {
+    plan skip_all => 'SHIPWRIGHT_TEST_EXTRA is not set';
+}
+
+plan tests => 10;
+
 use Shipwright;
 use File::Temp qw/tempdir/;
 use File::Copy;
@@ -8,7 +16,6 @@ use File::Copy::Recursive qw/rcopy/;
 use File::Spec::Functions qw/catfile catdir updir/;
 use Cwd qw/getcwd abs_path/;
 
-use Test::More tests => 10;
 use Shipwright::Test;
 Shipwright::Test->init;
 
diff --git a/t/hello/svn.t b/t/hello/svn.t
index 826111a..70b21e0 100644
--- a/t/hello/svn.t
+++ b/t/hello/svn.t
@@ -1,13 +1,20 @@
 use strict;
 use warnings;
 
+use Test::More;
+
+if ( ! $ENV{SHIPWRIGHT_TEST_EXTRA} ) {
+    plan skip_all => 'SHIPWRIGHT_TEST_EXTRA is not set';
+}
+
+plan tests => 10;
+
 use Shipwright;
 use File::Temp qw/tempdir/;
 use File::Copy;
 use File::Copy::Recursive qw/rcopy/;
 use File::Spec::Functions qw/catfile catdir updir/;
 use Cwd qw/getcwd abs_path/;
-use Test::More tests => 10;
 use Shipwright::Test;
 Shipwright::Test->init;
 

commit d1b451101c6ffe19fedf417768db86b3f669bced
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Sat Apr 2 19:31:23 2011 +0800

    release 2.4.24

diff --git a/Changes b/Changes
index f27906f..d7b50b1 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,8 @@
 Revision history for Shipwright
 
-2.4.24
+2.4.24 Sat Apr  2 19:30:01 CST 2011
+
+* add SHIPWRIGHT_TEST_EXTRA env, some complex tests are skipped by default
 
 2.4.23 Thu Mar 17 14:03:45 CST 2011
 

commit a3a755b8fa91adbb2ddbc0e4393ac9484534b3ca
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Sat Apr 2 19:34:23 2011 +0800

    bump to 2.4.25

diff --git a/Changes b/Changes
index d7b50b1..25967f2 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,7 @@
 Revision history for Shipwright
 
+2.4.25
+
 2.4.24 Sat Apr  2 19:30:01 CST 2011
 
 * add SHIPWRIGHT_TEST_EXTRA env, some complex tests are skipped by default
diff --git a/META.yml b/META.yml
index 1aa2d1c..980cbaa 100644
--- a/META.yml
+++ b/META.yml
@@ -56,4 +56,4 @@ requires:
 resources:
   license: http://dev.perl.org/licenses/
   repository: git://github.com/bestpractical/shipwright.git
-version: 2.004024
+version: 2.004025
diff --git a/lib/Shipwright.pm b/lib/Shipwright.pm
index 9c01e9f..109d761 100644
--- a/lib/Shipwright.pm
+++ b/lib/Shipwright.pm
@@ -2,7 +2,7 @@ package Shipwright;
 
 use warnings;
 use strict;
-use version; our $VERSION = qv('2.4.24');
+use version; our $VERSION = qv('2.4.25');
 
 use base qw/Shipwright::Base/;
 

commit 22b2306ca3d29abb4ead10d403f6a9c2d3d9a8bb
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Sat Apr 2 19:35:49 2011 +0800

    update copyright to 2011

diff --git a/README b/README
index 55c81d0..d72d178 100644
--- a/README
+++ b/README
@@ -12,7 +12,7 @@ To install this module, run the following commands:
 
 COPYRIGHT AND LICENCE
 
-Copyright 2007-2010 Best Practical Solutions.
+Copyright 2007-2011 Best Practical Solutions.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright.pm b/lib/Shipwright.pm
index 109d761..548646f 100644
--- a/lib/Shipwright.pm
+++ b/lib/Shipwright.pm
@@ -225,7 +225,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Backend.pm b/lib/Shipwright/Backend.pm
index 724a34b..7229c09 100644
--- a/lib/Shipwright/Backend.pm
+++ b/lib/Shipwright/Backend.pm
@@ -81,7 +81,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Backend/Base.pm b/lib/Shipwright/Backend/Base.pm
index 55c420c..f5a16b1 100644
--- a/lib/Shipwright/Backend/Base.pm
+++ b/lib/Shipwright/Backend/Base.pm
@@ -974,7 +974,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Backend/FS.pm b/lib/Shipwright/Backend/FS.pm
index 6a32b72..c36f0bd 100644
--- a/lib/Shipwright/Backend/FS.pm
+++ b/lib/Shipwright/Backend/FS.pm
@@ -290,7 +290,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Backend/Git.pm b/lib/Shipwright/Backend/Git.pm
index 6fe47e6..d5c44fe 100644
--- a/lib/Shipwright/Backend/Git.pm
+++ b/lib/Shipwright/Backend/Git.pm
@@ -331,7 +331,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Backend/SVK.pm b/lib/Shipwright/Backend/SVK.pm
index 484ed69..8fbd0d4 100644
--- a/lib/Shipwright/Backend/SVK.pm
+++ b/lib/Shipwright/Backend/SVK.pm
@@ -353,7 +353,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Backend/SVN.pm b/lib/Shipwright/Backend/SVN.pm
index 65e7f94..cea6da7 100644
--- a/lib/Shipwright/Backend/SVN.pm
+++ b/lib/Shipwright/Backend/SVN.pm
@@ -321,7 +321,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Base.pm b/lib/Shipwright/Base.pm
index c419f60..5294778 100644
--- a/lib/Shipwright/Base.pm
+++ b/lib/Shipwright/Base.pm
@@ -25,7 +25,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Logger.pm b/lib/Shipwright/Logger.pm
index c1577bf..50a82b1 100644
--- a/lib/Shipwright/Logger.pm
+++ b/lib/Shipwright/Logger.pm
@@ -81,7 +81,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Manual.pod b/lib/Shipwright/Manual.pod
index f44e2a8..6bf9b07 100644
--- a/lib/Shipwright/Manual.pod
+++ b/lib/Shipwright/Manual.pod
@@ -48,7 +48,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Manual/BuildMultiArchVessel.pod b/lib/Shipwright/Manual/BuildMultiArchVessel.pod
index 433e62a..86ee25f 100644
--- a/lib/Shipwright/Manual/BuildMultiArchVessel.pod
+++ b/lib/Shipwright/Manual/BuildMultiArchVessel.pod
@@ -68,7 +68,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Manual/CustomizeBuild.pod b/lib/Shipwright/Manual/CustomizeBuild.pod
index 556b914..e02eb43 100644
--- a/lib/Shipwright/Manual/CustomizeBuild.pod
+++ b/lib/Shipwright/Manual/CustomizeBuild.pod
@@ -92,7 +92,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Manual/ENV.pod b/lib/Shipwright/Manual/ENV.pod
index 43b3032..daef341 100644
--- a/lib/Shipwright/Manual/ENV.pod
+++ b/lib/Shipwright/Manual/ENV.pod
@@ -114,7 +114,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Manual/Glossary.pod b/lib/Shipwright/Manual/Glossary.pod
index 96ad5f0..76d7d81 100644
--- a/lib/Shipwright/Manual/Glossary.pod
+++ b/lib/Shipwright/Manual/Glossary.pod
@@ -30,7 +30,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Manual/Tutorial.pod b/lib/Shipwright/Manual/Tutorial.pod
index 11fab1e..5d406df 100644
--- a/lib/Shipwright/Manual/Tutorial.pod
+++ b/lib/Shipwright/Manual/Tutorial.pod
@@ -219,7 +219,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Manual/UsingBranches.pod b/lib/Shipwright/Manual/UsingBranches.pod
index 8a169bd..c21ea39 100644
--- a/lib/Shipwright/Manual/UsingBranches.pod
+++ b/lib/Shipwright/Manual/UsingBranches.pod
@@ -56,7 +56,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Manual/UsingFlags.pod b/lib/Shipwright/Manual/UsingFlags.pod
index 5cfa891..a2c5239 100644
--- a/lib/Shipwright/Manual/UsingFlags.pod
+++ b/lib/Shipwright/Manual/UsingFlags.pod
@@ -62,7 +62,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Script.pm b/lib/Shipwright/Script.pm
index 68f48a6..87cdb1d 100644
--- a/lib/Shipwright/Script.pm
+++ b/lib/Shipwright/Script.pm
@@ -108,7 +108,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Copyright 2007-2010 Best Practical Solutions.
+Copyright 2007-2011 Best Practical Solutions.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Script/Create.pm b/lib/Shipwright/Script/Create.pm
index ffa87b3..5f5c2a3 100644
--- a/lib/Shipwright/Script/Create.pm
+++ b/lib/Shipwright/Script/Create.pm
@@ -55,7 +55,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Script/Defaultbranch.pm b/lib/Shipwright/Script/Defaultbranch.pm
index 44d6cc4..b631b7b 100644
--- a/lib/Shipwright/Script/Defaultbranch.pm
+++ b/lib/Shipwright/Script/Defaultbranch.pm
@@ -64,7 +64,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Script/Delete.pm b/lib/Shipwright/Script/Delete.pm
index 3bc55fb..fc5837a 100644
--- a/lib/Shipwright/Script/Delete.pm
+++ b/lib/Shipwright/Script/Delete.pm
@@ -97,7 +97,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Script/Flags.pm b/lib/Shipwright/Script/Flags.pm
index 07228ce..962704a 100644
--- a/lib/Shipwright/Script/Flags.pm
+++ b/lib/Shipwright/Script/Flags.pm
@@ -150,7 +150,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Script/Help.pm b/lib/Shipwright/Script/Help.pm
index dbd4b16..b44aec7 100644
--- a/lib/Shipwright/Script/Help.pm
+++ b/lib/Shipwright/Script/Help.pm
@@ -22,7 +22,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Script/Import.pm b/lib/Shipwright/Script/Import.pm
index 55abe77..0483ca0 100644
--- a/lib/Shipwright/Script/Import.pm
+++ b/lib/Shipwright/Script/Import.pm
@@ -573,7 +573,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Script/Ktf.pm b/lib/Shipwright/Script/Ktf.pm
index 41ae1de..825a507 100644
--- a/lib/Shipwright/Script/Ktf.pm
+++ b/lib/Shipwright/Script/Ktf.pm
@@ -94,7 +94,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Script/List.pm b/lib/Shipwright/Script/List.pm
index 1fd7af0..4bcce06 100644
--- a/lib/Shipwright/Script/List.pm
+++ b/lib/Shipwright/Script/List.pm
@@ -284,7 +284,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Script/Maintain.pm b/lib/Shipwright/Script/Maintain.pm
index 7e5a6c1..0e7df79 100644
--- a/lib/Shipwright/Script/Maintain.pm
+++ b/lib/Shipwright/Script/Maintain.pm
@@ -92,7 +92,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Script/Relocate.pm b/lib/Shipwright/Script/Relocate.pm
index 76abc46..5526de0 100644
--- a/lib/Shipwright/Script/Relocate.pm
+++ b/lib/Shipwright/Script/Relocate.pm
@@ -98,7 +98,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Script/Rename.pm b/lib/Shipwright/Script/Rename.pm
index 3f7ad19..a73c226 100644
--- a/lib/Shipwright/Script/Rename.pm
+++ b/lib/Shipwright/Script/Rename.pm
@@ -95,7 +95,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Script/Requires.pm b/lib/Shipwright/Script/Requires.pm
index f2ae59d..99ddb16 100644
--- a/lib/Shipwright/Script/Requires.pm
+++ b/lib/Shipwright/Script/Requires.pm
@@ -173,7 +173,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Script/Update.pm b/lib/Shipwright/Script/Update.pm
index 34ceb6a..e1b1e0a 100644
--- a/lib/Shipwright/Script/Update.pm
+++ b/lib/Shipwright/Script/Update.pm
@@ -342,7 +342,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Source.pm b/lib/Shipwright/Source.pm
index 4fe26ff..a7ab192 100644
--- a/lib/Shipwright/Source.pm
+++ b/lib/Shipwright/Source.pm
@@ -130,7 +130,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Source/Base.pm b/lib/Shipwright/Source/Base.pm
index a8137bc..5f0e3f1 100644
--- a/lib/Shipwright/Source/Base.pm
+++ b/lib/Shipwright/Source/Base.pm
@@ -791,7 +791,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Source/CPAN.pm b/lib/Shipwright/Source/CPAN.pm
index 00f15e6..ca63433 100644
--- a/lib/Shipwright/Source/CPAN.pm
+++ b/lib/Shipwright/Source/CPAN.pm
@@ -202,7 +202,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Source/Compressed.pm b/lib/Shipwright/Source/Compressed.pm
index 756ee08..2576ef5 100644
--- a/lib/Shipwright/Source/Compressed.pm
+++ b/lib/Shipwright/Source/Compressed.pm
@@ -107,7 +107,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Copyright 2007-2010 Best Practical Solutions.
+Copyright 2007-2011 Best Practical Solutions.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Source/Directory.pm b/lib/Shipwright/Source/Directory.pm
index 3edeec0..8149178 100644
--- a/lib/Shipwright/Source/Directory.pm
+++ b/lib/Shipwright/Source/Directory.pm
@@ -85,7 +85,7 @@ sunnavy C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Copyright 2007-2010 Best Practical Solutions LLC.
+Copyright 2007-2011 Best Practical Solutions LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Source/FTP.pm b/lib/Shipwright/Source/FTP.pm
index ee1f2af..29fae14 100644
--- a/lib/Shipwright/Source/FTP.pm
+++ b/lib/Shipwright/Source/FTP.pm
@@ -55,7 +55,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Copyright 2007-2010 Best Practical Solutions.
+Copyright 2007-2011 Best Practical Solutions.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Source/Git.pm b/lib/Shipwright/Source/Git.pm
index 1ef3f1a..1d98154 100644
--- a/lib/Shipwright/Source/Git.pm
+++ b/lib/Shipwright/Source/Git.pm
@@ -110,7 +110,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Copyright 2007-2010 Best Practical Solutions.
+Copyright 2007-2011 Best Practical Solutions.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Source/HTTP.pm b/lib/Shipwright/Source/HTTP.pm
index 217f754..f7c501b 100644
--- a/lib/Shipwright/Source/HTTP.pm
+++ b/lib/Shipwright/Source/HTTP.pm
@@ -58,7 +58,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Copyright 2007-2010 Best Practical Solutions.
+Copyright 2007-2011 Best Practical Solutions.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Source/SVK.pm b/lib/Shipwright/Source/SVK.pm
index 42eb0c6..df37186 100644
--- a/lib/Shipwright/Source/SVK.pm
+++ b/lib/Shipwright/Source/SVK.pm
@@ -87,7 +87,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Copyright 2007-2010 Best Practical Solutions.
+Copyright 2007-2011 Best Practical Solutions.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Source/SVN.pm b/lib/Shipwright/Source/SVN.pm
index a5f8047..88db93f 100644
--- a/lib/Shipwright/Source/SVN.pm
+++ b/lib/Shipwright/Source/SVN.pm
@@ -82,7 +82,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Copyright 2007-2010 Best Practical Solutions.
+Copyright 2007-2011 Best Practical Solutions.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Source/Shipyard.pm b/lib/Shipwright/Source/Shipyard.pm
index 23a16f3..71756d4 100644
--- a/lib/Shipwright/Source/Shipyard.pm
+++ b/lib/Shipwright/Source/Shipyard.pm
@@ -87,7 +87,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Copyright 2007-2010 Best Practical Solutions.
+Copyright 2007-2011 Best Practical Solutions.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Test.pm b/lib/Shipwright/Test.pm
index dd94fbc..ef6509f 100644
--- a/lib/Shipwright/Test.pm
+++ b/lib/Shipwright/Test.pm
@@ -259,7 +259,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Shipwright is Copyright 2007-2010 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2011 Best Practical Solutions, LLC.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Util.pm b/lib/Shipwright/Util.pm
index 50e5314..a0aac43 100644
--- a/lib/Shipwright/Util.pm
+++ b/lib/Shipwright/Util.pm
@@ -290,7 +290,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Copyright 2007-2010 Best Practical Solutions.
+Copyright 2007-2011 Best Practical Solutions.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Util/CleanINC.pm b/lib/Shipwright/Util/CleanINC.pm
index af13048..cf77aed 100644
--- a/lib/Shipwright/Util/CleanINC.pm
+++ b/lib/Shipwright/Util/CleanINC.pm
@@ -67,7 +67,7 @@ sunnavy  C<< <sunnavy at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Copyright 2007-2010 Best Practical Solutions.
+Copyright 2007-2011 Best Practical Solutions.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
diff --git a/lib/Shipwright/Util/PatchModuleBuild.pm b/lib/Shipwright/Util/PatchModuleBuild.pm
index 846343c..bc01bac 100644
--- a/lib/Shipwright/Util/PatchModuleBuild.pm
+++ b/lib/Shipwright/Util/PatchModuleBuild.pm
@@ -32,7 +32,7 @@ Jesse Vincent C<< <jesse at bestpractical.com> >>
 
 =head1 LICENCE AND COPYRIGHT
 
-Copyright 2007-2010 Best Practical Solutions.
+Copyright 2007-2011 Best Practical Solutions.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

-----------------------------------------------------------------------



More information about the Bps-public-commit mailing list