[Bps-public-commit] r17827 - in Shipwright/trunk: . lib lib/Shipwright/Backend lib/Shipwright/Manual lib/Shipwright/Script lib/Shipwright/Source
sunnavy at bestpractical.com
sunnavy at bestpractical.com
Sun Jan 18 08:46:59 EST 2009
Author: sunnavy
Date: Sun Jan 18 08:46:59 2009
New Revision: 17827
Modified:
Shipwright/trunk/ (props changed)
Shipwright/trunk/lib/Shipwright.pm
Shipwright/trunk/lib/Shipwright/Backend.pm
Shipwright/trunk/lib/Shipwright/Backend/Base.pm
Shipwright/trunk/lib/Shipwright/Backend/FS.pm
Shipwright/trunk/lib/Shipwright/Backend/SVK.pm
Shipwright/trunk/lib/Shipwright/Backend/SVN.pm
Shipwright/trunk/lib/Shipwright/Build.pm
Shipwright/trunk/lib/Shipwright/Logger.pm
Shipwright/trunk/lib/Shipwright/Manual.pod
Shipwright/trunk/lib/Shipwright/Manual/CustomizeBuild.pod
Shipwright/trunk/lib/Shipwright/Manual/Glossary.pod
Shipwright/trunk/lib/Shipwright/Manual/Tutorial.pod
Shipwright/trunk/lib/Shipwright/Manual/UsingBranches.pod
Shipwright/trunk/lib/Shipwright/Manual/UsingFlags.pod
Shipwright/trunk/lib/Shipwright/Script.pm
Shipwright/trunk/lib/Shipwright/Script/Build.pm
Shipwright/trunk/lib/Shipwright/Script/Create.pm
Shipwright/trunk/lib/Shipwright/Script/Defaultbranch.pm
Shipwright/trunk/lib/Shipwright/Script/Delete.pm
Shipwright/trunk/lib/Shipwright/Script/Flags.pm
Shipwright/trunk/lib/Shipwright/Script/Help.pm
Shipwright/trunk/lib/Shipwright/Script/Import.pm
Shipwright/trunk/lib/Shipwright/Script/Ktf.pm
Shipwright/trunk/lib/Shipwright/Script/List.pm
Shipwright/trunk/lib/Shipwright/Script/Maintain.pm
Shipwright/trunk/lib/Shipwright/Script/Relocate.pm
Shipwright/trunk/lib/Shipwright/Script/Rename.pm
Shipwright/trunk/lib/Shipwright/Script/Update.pm
Shipwright/trunk/lib/Shipwright/Source.pm
Shipwright/trunk/lib/Shipwright/Source/Base.pm
Shipwright/trunk/lib/Shipwright/Source/CPAN.pm
Shipwright/trunk/lib/Shipwright/Source/Compressed.pm
Shipwright/trunk/lib/Shipwright/Source/Directory.pm
Shipwright/trunk/lib/Shipwright/Source/FTP.pm
Shipwright/trunk/lib/Shipwright/Source/HTTP.pm
Shipwright/trunk/lib/Shipwright/Source/SVK.pm
Shipwright/trunk/lib/Shipwright/Source/SVN.pm
Shipwright/trunk/lib/Shipwright/Source/Shipwright.pm
Shipwright/trunk/lib/Shipwright/Test.pm
Shipwright/trunk/lib/Shipwright/Util.pm
Log:
r18920 at sunnavys-mb: sunnavy | 2009-01-18 21:36:09 +0800
updated copyright
Modified: Shipwright/trunk/lib/Shipwright.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright.pm (original)
+++ Shipwright/trunk/lib/Shipwright.pm Sun Jan 18 08:46:59 2009
@@ -268,7 +268,7 @@
=head1 LICENCE AND COPYRIGHT
-Shipwright is Copyright 2007-2008 Best Practical Solutions, LLC.
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
Modified: Shipwright/trunk/lib/Shipwright/Backend.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Backend.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Backend.pm Sun Jan 18 08:46:59 2009
@@ -6,28 +6,6 @@
use UNIVERSAL::require;
use Cwd qw/abs_path/;
-=head1 NAME
-
-Shipwright::Backend - VCS repository backends
-
-=head1 SYNOPSIS
-
-use Shipwright::Backend;
-$backend = Shipwright::Backend->new (repository => $args{repository});
-
-=head1 METHODS
-
-=over
-
-=item new
-
-The constructor returns the Backend object that corresponds to the type in
-$args{repository}.
-
-Currently, the only supported backends are SVN and SVK.
-
-=cut
-
sub new {
my $class = shift;
my %args = @_;
@@ -63,44 +41,69 @@
__END__
-=back
+=head1 NAME
-=head1 INTERFACE
+Shipwright::Backend - backends
-A backend must support the following methods:
+=head1 SYNOPSIS
+
+use Shipwright::Backend;
+$backend = Shipwright::Backend->new(repository => $args{repository});
+
+=head1 METHODS
+
+=over
+
+=item new
-=head2 initialize
+returns the Backend object that corresponds to the type in
+$args{repository}.
+
+Currently, the supported backends are FS, SVN and SVK.
+
+=item initialize
+
+=item import
+
+=item export
-=head2 import
+=item checkout
-=head2 export
+=item commit
-=head2 checkout
+=item update_order
-=head2 commit
+=item order
-=head2 update_order
+=item map
-=head2 order
+=item source
-=head2 map
+=item delete
-=head2 source
+=item info
-=head2 delete
+=item test_script
-=head2 info
+=item requires
-=head2 test_script
+=item flags
-=head2 requires
+=item version
+
+=item check_repository
+
+=item update
+
+=back
-=head2 flags
+=head1 AUTHORS
-=head2 version
+sunnavy C<< <sunnavy at bestpractical.com> >>
-=head2 check_repository
+=head1 LICENCE AND COPYRIGHT
-=head2 update
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
-=cut
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
Modified: Shipwright/trunk/lib/Shipwright/Backend/Base.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Backend/Base.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Backend/Base.pm Sun Jan 18 08:46:59 2009
@@ -30,7 +30,7 @@
=item new
-This is the constructor.
+the constructor
=cut
@@ -50,7 +50,7 @@
=item initialize
-Initialize a project.
+initialize a project
you should subclass this method, and call this to get the dir with content initialized
=cut
@@ -91,7 +91,7 @@
=item import
-Import a dist.
+import a dist.
=cut
@@ -282,7 +282,7 @@
=item update_order
-Regenerate the dependency order.
+regenerate the dependency order.
=cut
@@ -434,7 +434,7 @@
=item order
-Get or set the dependency order.
+get or set the dependency order.
=cut
@@ -447,7 +447,7 @@
=item map
-Get or set the map.
+get or set the map.
=cut
@@ -461,7 +461,7 @@
=item source
-Get or set the sources map.
+get or set the sources map.
=cut
@@ -474,7 +474,7 @@
=item flags
-Get or set flags.
+get or set flags.
=cut
@@ -488,7 +488,7 @@
=item version
-Get or set version.
+get or set version.
=cut
@@ -502,7 +502,7 @@
=item branches
-Get or set branches.
+get or set branches.
=cut
@@ -521,7 +521,7 @@
=item ktf
-Get or set known failure conditions.
+get or set known failure conditions.
=cut
@@ -535,7 +535,7 @@
=item refs
-Get or set refs
+get or set refs
=cut
@@ -638,7 +638,7 @@
=item requires
-Return the hashref of require.yml for a dist.
+return the hashref of require.yml for a dist.
=cut
@@ -837,3 +837,15 @@
=cut
1;
+__END__
+
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
Modified: Shipwright/trunk/lib/Shipwright/Backend/FS.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Backend/FS.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Backend/FS.pm Sun Jan 18 08:46:59 2009
@@ -207,3 +207,16 @@
=cut
1;
+
+__END__
+
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
Modified: Shipwright/trunk/lib/Shipwright/Backend/SVK.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Backend/SVK.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Backend/SVK.pm Sun Jan 18 08:46:59 2009
@@ -26,7 +26,7 @@
=item initialize
-Initialize a project.
+initialize a project.
=cut
@@ -209,7 +209,7 @@
=item info
-A wrapper around svk's info command.
+a wrapper around svk's info command.
=cut
@@ -228,7 +228,7 @@
=item check_repository
-Check if the given repository is valid.
+check if the given repository is valid.
=cut
@@ -287,3 +287,16 @@
=cut
1;
+
+__END__
+
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
Modified: Shipwright/trunk/lib/Shipwright/Backend/SVN.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Backend/SVN.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Backend/SVN.pm Sun Jan 18 08:46:59 2009
@@ -26,7 +26,7 @@
=item initialize
-Initialize a project.
+initialize a project.
=cut
@@ -195,7 +195,7 @@
=item info
-A wrapper around svn's info command.
+a wrapper around svn's info command.
=cut
@@ -218,7 +218,7 @@
=item check_repository
-Check if the given repository is valid.
+check if the given repository is valid.
=cut
@@ -272,3 +272,16 @@
=cut
1;
+
+__END__
+
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
Modified: Shipwright/trunk/lib/Shipwright/Build.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Build.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Build.pm Sun Jan 18 08:46:59 2009
@@ -469,7 +469,7 @@
=head1 LICENCE AND COPYRIGHT
-Copyright 2007 Best Practical Solutions.
+Copyright 2007-2009 Best Practical Solutions.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
Modified: Shipwright/trunk/lib/Shipwright/Logger.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Logger.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Logger.pm Sun Jan 18 08:46:59 2009
@@ -89,4 +89,13 @@
__END__
-=head1 INTERFACE
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
Modified: Shipwright/trunk/lib/Shipwright/Manual.pod
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Manual.pod (original)
+++ Shipwright/trunk/lib/Shipwright/Manual.pod Sun Jan 18 08:46:59 2009
@@ -32,4 +32,14 @@
=back
-=cut
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Shipwright/trunk/lib/Shipwright/Manual/CustomizeBuild.pod
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Manual/CustomizeBuild.pod (original)
+++ Shipwright/trunk/lib/Shipwright/Manual/CustomizeBuild.pod Sun Jan 18 08:46:59 2009
@@ -86,4 +86,13 @@
L<Shipwright::Manual::UsingFlags>
-=cut
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
Modified: Shipwright/trunk/lib/Shipwright/Manual/Glossary.pod
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Manual/Glossary.pod (original)
+++ Shipwright/trunk/lib/Shipwright/Manual/Glossary.pod Sun Jan 18 08:46:59 2009
@@ -24,3 +24,13 @@
L<Shipwright::Manual::Tutorial>, L<Shipwright::Manual::UsingFlags>, L<Shipwright::Manual::CustomizeBuild>,
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
Modified: Shipwright/trunk/lib/Shipwright/Manual/Tutorial.pod
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Manual/Tutorial.pod (original)
+++ Shipwright/trunk/lib/Shipwright/Manual/Tutorial.pod Sun Jan 18 08:46:59 2009
@@ -211,4 +211,13 @@
L<Shipwright::Manual::UsingFlags>, L<Shipwright::Manual::CustomizeBuild>,
L<Shipwright::Manual::Glossary>
-=cut
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
Modified: Shipwright/trunk/lib/Shipwright/Manual/UsingBranches.pod
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Manual/UsingBranches.pod (original)
+++ Shipwright/trunk/lib/Shipwright/Manual/UsingBranches.pod Sun Jan 18 08:46:59 2009
@@ -46,3 +46,14 @@
if branches are way too different, it's better to create another vessel source
instead of branching.
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Shipwright/trunk/lib/Shipwright/Manual/UsingFlags.pod
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Manual/UsingFlags.pod (original)
+++ Shipwright/trunk/lib/Shipwright/Manual/UsingFlags.pod Sun Jan 18 08:46:59 2009
@@ -55,3 +55,15 @@
=head1 SEE ALSO
L<Shipwright::Manual::CustomizeBuild>
+
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Shipwright/trunk/lib/Shipwright/Script.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Script.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Script.pm Sun Jan 18 08:46:59 2009
@@ -89,7 +89,7 @@
=head1 LICENCE AND COPYRIGHT
-Copyright 2007 Best Practical Solutions.
+Copyright 2007-2009 Best Practical Solutions.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
Modified: Shipwright/trunk/lib/Shipwright/Script/Build.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Script/Build.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Script/Build.pm Sun Jan 18 08:46:59 2009
@@ -150,3 +150,14 @@
use the one specified here instead.
--branches name=branch,... : specify the branch we want to build
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Shipwright/trunk/lib/Shipwright/Script/Create.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Script/Create.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Script/Create.pm Sun Jan 18 08:46:59 2009
@@ -41,3 +41,15 @@
-l [--log-level] LOGLEVEL : specify the log level
(info, debug, warn, error, or fatal)
--log-file FILENAME : specify the log file
+
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Shipwright/trunk/lib/Shipwright/Script/Defaultbranch.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Script/Defaultbranch.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Script/Defaultbranch.pm Sun Jan 18 08:46:59 2009
@@ -54,3 +54,14 @@
=head1 DESCRIPTION
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Shipwright/trunk/lib/Shipwright/Script/Delete.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Script/Delete.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Script/Delete.pm Sun Jan 18 08:46:59 2009
@@ -85,3 +85,15 @@
--log-file FILENAME : specify the log file
--unreferenced : to delete all unreferenced dists except the last one
--check-only : show the lists, not really delete
+
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Shipwright/trunk/lib/Shipwright/Script/Flags.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Script/Flags.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Script/Flags.pm Sun Jan 18 08:46:59 2009
@@ -138,3 +138,15 @@
to allow binary vessels to be built for both MySQL and PostgreSQL from it.
For more information on using flags, see L<Shipwright::Manual::UsingFlags>.
+
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Shipwright/trunk/lib/Shipwright/Script/Help.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Script/Help.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Script/Help.pm Sun Jan 18 08:46:59 2009
@@ -16,3 +16,14 @@
help COMMAND
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Shipwright/trunk/lib/Shipwright/Script/Import.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Script/Import.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Script/Import.pm Sun Jan 18 08:46:59 2009
@@ -499,3 +499,15 @@
L<svn:http://svn.example.com/foo-1.23>
=back
+
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Shipwright/trunk/lib/Shipwright/Script/Ktf.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Script/Ktf.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Script/Ktf.pm Sun Jan 18 08:46:59 2009
@@ -77,3 +77,15 @@
--log-file FILENAME : specify the log file
--delete conditions : delete conditions
--set conditions : set conditions
+
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Shipwright/trunk/lib/Shipwright/Script/List.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Script/List.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Script/List.pm Sun Jan 18 08:46:59 2009
@@ -230,3 +230,15 @@
(info, debug, warn, error, or fatal)
--with-latest-version : show the latest version if possible
--only-update : only show the dists that can be updated
+
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Shipwright/trunk/lib/Shipwright/Script/Maintain.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Script/Maintain.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Script/Maintain.pm Sun Jan 18 08:46:59 2009
@@ -74,3 +74,14 @@
--update-order : update the build order
--update-refs : update refs( times a dist shows in all the require.yml )
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Shipwright/trunk/lib/Shipwright/Script/Relocate.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Script/Relocate.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Script/Relocate.pm Sun Jan 18 08:46:59 2009
@@ -89,3 +89,16 @@
(info, debug, warn, error, or fatal)
NAME : sepecify the dist name
SOURCE : specify the new source
+
+
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Shipwright/trunk/lib/Shipwright/Script/Rename.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Script/Rename.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Script/Rename.pm Sun Jan 18 08:46:59 2009
@@ -89,3 +89,15 @@
-l [--log-level] LOGLEVEL : specify the log level
(info, debug, warn, error, or fatal)
--log-file FILENAME : specify the log file
+
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Shipwright/trunk/lib/Shipwright/Script/Update.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Script/Update.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Script/Update.pm Sun Jan 18 08:46:59 2009
@@ -259,3 +259,15 @@
=head1 ALIASES
up
+
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Shipwright/trunk/lib/Shipwright/Source.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Source.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Source.pm Sun Jan 18 08:46:59 2009
@@ -102,4 +102,14 @@
__END__
-=head1 INTERFACE
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Shipwright/trunk/lib/Shipwright/Source/Base.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Source/Base.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Source/Base.pm Sun Jan 18 08:46:59 2009
@@ -525,4 +525,14 @@
__END__
-=head1 INTERFACE
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Shipwright/trunk/lib/Shipwright/Source/CPAN.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Source/CPAN.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Source/CPAN.pm Sun Jan 18 08:46:59 2009
@@ -167,3 +167,17 @@
}
1;
+
+__END__
+
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Shipwright/trunk/lib/Shipwright/Source/Compressed.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Source/Compressed.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Source/Compressed.pm Sun Jan 18 08:46:59 2009
@@ -124,7 +124,7 @@
=head1 LICENCE AND COPYRIGHT
-Copyright 2007 Best Practical Solutions.
+Copyright 2007-2009 Best Practical Solutions.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
Modified: Shipwright/trunk/lib/Shipwright/Source/Directory.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Source/Directory.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Source/Directory.pm Sun Jan 18 08:46:59 2009
@@ -107,7 +107,7 @@
=head1 LICENCE AND COPYRIGHT
-Copyright 2007 Best Practical Solutions LLC.
+Copyright 2007-2009 Best Practical Solutions LLC.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
Modified: Shipwright/trunk/lib/Shipwright/Source/FTP.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Source/FTP.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Source/FTP.pm Sun Jan 18 08:46:59 2009
@@ -93,7 +93,7 @@
=head1 LICENCE AND COPYRIGHT
-Copyright 2007 Best Practical Solutions.
+Copyright 2007-2009 Best Practical Solutions.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
Modified: Shipwright/trunk/lib/Shipwright/Source/HTTP.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Source/HTTP.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Source/HTTP.pm Sun Jan 18 08:46:59 2009
@@ -94,7 +94,7 @@
=head1 LICENCE AND COPYRIGHT
-Copyright 2007 Best Practical Solutions.
+Copyright 2007-2009 Best Practical Solutions.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
Modified: Shipwright/trunk/lib/Shipwright/Source/SVK.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Source/SVK.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Source/SVK.pm Sun Jan 18 08:46:59 2009
@@ -111,7 +111,7 @@
=head1 LICENCE AND COPYRIGHT
-Copyright 2007 Best Practical Solutions.
+Copyright 2007-2009 Best Practical Solutions.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
Modified: Shipwright/trunk/lib/Shipwright/Source/SVN.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Source/SVN.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Source/SVN.pm Sun Jan 18 08:46:59 2009
@@ -103,7 +103,7 @@
=head1 LICENCE AND COPYRIGHT
-Copyright 2007 Best Practical Solutions.
+Copyright 2007-2009 Best Practical Solutions.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
Modified: Shipwright/trunk/lib/Shipwright/Source/Shipwright.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Source/Shipwright.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Source/Shipwright.pm Sun Jan 18 08:46:59 2009
@@ -104,7 +104,7 @@
=head1 LICENCE AND COPYRIGHT
-Copyright 2007 Best Practical Solutions.
+Copyright 2007-2009 Best Practical Solutions.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
Modified: Shipwright/trunk/lib/Shipwright/Test.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Test.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Test.pm Sun Jan 18 08:46:59 2009
@@ -208,4 +208,14 @@
__END__
-=head1 INTERFACE
+=head1 AUTHORS
+
+sunnavy C<< <sunnavy at bestpractical.com> >>
+
+=head1 LICENCE AND COPYRIGHT
+
+Shipwright is Copyright 2007-2009 Best Practical Solutions, LLC.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
Modified: Shipwright/trunk/lib/Shipwright/Util.pm
==============================================================================
--- Shipwright/trunk/lib/Shipwright/Util.pm (original)
+++ Shipwright/trunk/lib/Shipwright/Util.pm Sun Jan 18 08:46:59 2009
@@ -194,7 +194,7 @@
=head1 LICENCE AND COPYRIGHT
-Copyright 2007 Best Practical Solutions.
+Copyright 2007-2009 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