[Bps-public-commit] r10353 - in bpsbuilder/BPB/lib/BPB: . Backend Source
sunnavy at bestpractical.com
sunnavy at bestpractical.com
Tue Jan 15 11:29:07 EST 2008
Author: sunnavy
Date: Tue Jan 15 11:29:06 2008
New Revision: 10353
Modified:
bpsbuilder/BPB/lib/BPB/Backend.pm
bpsbuilder/BPB/lib/BPB/Backend/SVK.pm
bpsbuilder/BPB/lib/BPB/Backend/SVN.pm
bpsbuilder/BPB/lib/BPB/Build.pm
bpsbuilder/BPB/lib/BPB/Config.pm
bpsbuilder/BPB/lib/BPB/Script/Build.pm
bpsbuilder/BPB/lib/BPB/Script/Import.pm
bpsbuilder/BPB/lib/BPB/Source.pm
bpsbuilder/BPB/lib/BPB/Source/Base.pm
bpsbuilder/BPB/lib/BPB/Source/CPAN.pm
bpsbuilder/BPB/lib/BPB/Source/Compressed.pm
bpsbuilder/BPB/lib/BPB/Source/Directory.pm
bpsbuilder/BPB/lib/BPB/Source/FTP.pm
bpsbuilder/BPB/lib/BPB/Source/HTTP.pm
bpsbuilder/BPB/lib/BPB/Source/SVK.pm
bpsbuilder/BPB/lib/BPB/Source/SVN.pm
bpsbuilder/BPB/lib/BPB/Util.pm
Log:
updated pod
Modified: bpsbuilder/BPB/lib/BPB/Backend.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Backend.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Backend.pm Tue Jan 15 11:29:06 2008
@@ -263,7 +263,7 @@
=head1 NAME
-BPB::Backend - BPB's backend part
+BPB::Backend - backend part
=head1 DESCRIPTION
Modified: bpsbuilder/BPB/lib/BPB/Backend/SVK.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Backend/SVK.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Backend/SVK.pm Tue Jan 15 11:29:06 2008
@@ -334,25 +334,12 @@
=head1 NAME
-BPB::Backend::SVK -
+BPB::Backend::SVK - svk backend
-=head1 VERSION
-
-This document describes BPB::Backend::SVK version 0.0.1
-
-
-=head1 SYNOPSIS
-
- use BPB::Backend::SVK;
-
=head1 DESCRIPTION
-=head1 INTERFACE
-
-
-
=head1 DEPENDENCIES
Modified: bpsbuilder/BPB/lib/BPB/Backend/SVN.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Backend/SVN.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Backend/SVN.pm Tue Jan 15 11:29:06 2008
@@ -349,25 +349,12 @@
=head1 NAME
-BPB::Backend::SVN -
+BPB::Backend::SVN - svn backend
-=head1 VERSION
-
-This document describes BPB::Backend::SVK version 0.0.1
-
-
-=head1 SYNOPSIS
-
- use BPB::Backend::SVK;
-
=head1 DESCRIPTION
-=head1 INTERFACE
-
-
-
=head1 DEPENDENCIES
Modified: bpsbuilder/BPB/lib/BPB/Build.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Build.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Build.pm Tue Jan 15 11:29:06 2008
@@ -192,7 +192,7 @@
=head1 NAME
-BPB::Build -
+BPB::Build - builder part
=head1 DESCRIPTION
Modified: bpsbuilder/BPB/lib/BPB/Config.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Config.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Config.pm Tue Jan 15 11:29:06 2008
@@ -89,7 +89,7 @@
=head1 NAME
-BPB::Config -
+BPB::Config - config part
=head1 SYNOPSIS
Modified: bpsbuilder/BPB/lib/BPB/Script/Build.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Script/Build.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Script/Build.pm Tue Jan 15 11:29:06 2008
@@ -58,6 +58,7 @@
--install-base(-i) specify install base. overide the item in config.yml
--skip specify dists which'll be skipped
--skip-test specify whether to skip test
+ --only-test just test(the running script is t/test)
=head1 AUTHOR
Modified: bpsbuilder/BPB/lib/BPB/Script/Import.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Script/Import.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Script/Import.pm Tue Jan 15 11:29:06 2008
@@ -211,7 +211,7 @@
=head1 NAME
-BPB::Script::Import - import a source
+BPB::Script::Import - import a source(maybe with a lot of dependances)
=head1 SYNOPSIS
@@ -224,7 +224,10 @@
--source(-s) specify the source path
--build-script specify the build script
--source-name specify the sorce name
- --no-follow don't follow
+ --require-yml specify the require.yml
+ --no-follow don't follow the dependant chain
+ --extra-test specify the extra test source(for --only-test when build)
+ --test-script specify the test script(for --only-test when build)
=head1 AUTHOR
Modified: bpsbuilder/BPB/lib/BPB/Source.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Source.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Source.pm Tue Jan 15 11:29:06 2008
@@ -78,7 +78,7 @@
=head1 NAME
-BPB::Source -
+BPB::Source - source part
=head1 SYNOPSIS
Modified: bpsbuilder/BPB/lib/BPB/Source/Base.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Source/Base.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Source/Base.pm Tue Jan 15 11:29:06 2008
@@ -195,7 +195,7 @@
=head1 NAME
-BPB::Source::Base -
+BPB::Source::Base - base class for source
=head1 SYNOPSIS
Modified: bpsbuilder/BPB/lib/BPB/Source/CPAN.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Source/CPAN.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Source/CPAN.pm Tue Jan 15 11:29:06 2008
@@ -89,18 +89,12 @@
=head1 NAME
-BPB::Source::CPAN -
+BPB::Source::CPAN - CPAN source
-=head1 SYNOPSIS
-
-
=head1 DESCRIPTION
-=head1 INTERFACE
-
-
=head1 DEPENDENCIES
None.
Modified: bpsbuilder/BPB/lib/BPB/Source/Compressed.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Source/Compressed.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Source/Compressed.pm Tue Jan 15 11:29:06 2008
@@ -80,20 +80,12 @@
=head1 NAME
-BPB::Source::Compressed -
+BPB::Source::Compressed - compressed source
-=head1 SYNOPSIS
-
- use BPB::Source::Compressed;
-
-
=head1 DESCRIPTION
-=head1 INTERFACE
-
-
=head1 DEPENDENCIES
None.
Modified: bpsbuilder/BPB/lib/BPB/Source/Directory.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Source/Directory.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Source/Directory.pm Tue Jan 15 11:29:06 2008
@@ -54,18 +54,12 @@
=head1 NAME
- -
-
-
-=head1 SYNOPSIS
+BPB::Source::Directory - directory source
=head1 DESCRIPTION
-=head1 INTERFACE
-
-
=head1 DEPENDENCIES
Modified: bpsbuilder/BPB/lib/BPB/Source/FTP.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Source/FTP.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Source/FTP.pm Tue Jan 15 11:29:06 2008
@@ -47,15 +47,12 @@
=head1 NAME
-BPB::Source::FTP -
+BPB::Source::FTP - ftp source
=head1 DESCRIPTION
-=head1 INTERFACE
-
-
=head1 DEPENDENCIES
None.
Modified: bpsbuilder/BPB/lib/BPB/Source/HTTP.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Source/HTTP.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Source/HTTP.pm Tue Jan 15 11:29:06 2008
@@ -48,18 +48,12 @@
=head1 NAME
-BPB::Source::HTTP -
+BPB::Source::HTTP - http source
-=head1 SYNOPSIS
-
-
=head1 DESCRIPTION
-=head1 INTERFACE
-
-
=head1 DEPENDENCIES
None.
Modified: bpsbuilder/BPB/lib/BPB/Source/SVK.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Source/SVK.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Source/SVK.pm Tue Jan 15 11:29:06 2008
@@ -84,18 +84,12 @@
=head1 NAME
-BPB::Source::SVK -
+BPB::Source::SVK - svk source
-=head1 SYNOPSIS
-
-
=head1 DESCRIPTION
-=head1 INTERFACE
-
-
=head1 DEPENDENCIES
None.
Modified: bpsbuilder/BPB/lib/BPB/Source/SVN.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Source/SVN.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Source/SVN.pm Tue Jan 15 11:29:06 2008
@@ -83,18 +83,12 @@
=head1 NAME
-BPB::Source::SVN -
+BPB::Source::SVN - svn source
-=head1 SYNOPSIS
-
-
=head1 DESCRIPTION
-=head1 INTERFACE
-
-
=head1 DEPENDENCIES
None.
Modified: bpsbuilder/BPB/lib/BPB/Util.pm
==============================================================================
--- bpsbuilder/BPB/lib/BPB/Util.pm (original)
+++ bpsbuilder/BPB/lib/BPB/Util.pm Tue Jan 15 11:29:06 2008
@@ -37,7 +37,7 @@
=head1 NAME
-BPB::Util -
+BPB::Util - BPB's Utility
=head1 DESCRIPTION
More information about the Bps-public-commit
mailing list