[Bps-public-commit] SD branch, master, updated. 993870d1058ec8e2c6de1512909054302777afaf
sartak at bestpractical.com
sartak at bestpractical.com
Fri Jun 19 00:30:02 EDT 2009
The branch, master has been updated
via 993870d1058ec8e2c6de1512909054302777afaf (commit)
via d110bfaaf6a2ebdc4979e7a134d120dd8b36430d (commit)
from 3cc8437f1890481f7618c4655634ed45f9da4e08 (commit)
Summary of changes:
Makefile.PL | 48 ++++++++++++++++++++++++++++++++++--------------
1 files changed, 34 insertions(+), 14 deletions(-)
- Log -----------------------------------------------------------------
commit d110bfaaf6a2ebdc4979e7a134d120dd8b36430d
Author: Shawn M Moore <sartak at gmail.com>
Date: Fri Jun 19 00:28:17 2009 -0400
Clean up Makefile.PL
diff --git a/Makefile.PL b/Makefile.PL
index 60c8a7b..1b85864 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -4,35 +4,40 @@ author('Jesse Vincent and Chia-Liang Kao');
copyright('2008-2009 Best Practical Solutions, LLC');
license('MIT');
version_from('lib/App/SD.pm');
+
+requires 'Prophet'; # URI UNIVERSAL::require Params::Validate Class::Accessor Template::Declare::Tags Test::HTTP::Server::Simple JSON Test::WWW::Mechanize Any::Moose
+
requires('DateTime');
requires('Time::Progress');
-requires 'Prophet'; # URI UNIVERSAL::require Params::Validate Class::Accessor Template::Declare::Tags Test::HTTP::Server::Simple JSON Test::WWW::Mechanize Any::Moose
requires('HTML::TreeBuilder');
requires('DateTime::Format::Natural');
requires('HTML::Tree');
requires('URI::file');
-feature
- 'RT sync' =>
- -default => 0,
- 'RT::Client::REST' => 0, # RT::Client::REST::Ticket
-;
+
+
+feature 'RT sync' => (
+ -default => 0,
+ 'RT::Client::REST' => 0, # RT::Client::REST::Ticket
+);
recommends 'RT::Client::REST';
-feature 'Hiveminder sync' =>
- -default => 0,
- 'Net::Jifty' => 0.09,
- 'Email::Address' => 0;
+feature 'Hiveminder sync' => (
+ -default => 0,
+ 'Net::Jifty' => 0.09,
+ 'Email::Address' => 0,
+);
recommends 'Net::Jifty';
recommends 'Email::Address';
-feature 'Trac sync' =>
- -default => 0,
- 'LWP::Simple' => 0,
- 'Net::Trac' => 0.13;
+feature 'Trac sync' => (
+ -default => 0,
+ 'LWP::Simple' => 0,
+ 'Net::Trac' => 0.13,
+);
recommends 'Net::Trac';
commit 993870d1058ec8e2c6de1512909054302777afaf
Author: Shawn M Moore <sartak at gmail.com>
Date: Fri Jun 19 00:29:51 2009 -0400
Add gcode and github deps to Makefile.PL
diff --git a/Makefile.PL b/Makefile.PL
index 1b85864..5e8c4d2 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -41,6 +41,21 @@ feature 'Trac sync' => (
recommends 'Net::Trac';
+feature 'Google Code sync (experimental)' => (
+ -default => 0,
+ 'Net::Google::Code' => 0,
+);
+
+recommends 'Net::Google::Code';
+
+
+feature 'GitHub sync (experimental)' => (
+ -default => 0,
+ 'Net::GitHub' => 0.18,
+);
+
+recommends 'Net::GitHub' => 0.18;
+
install_script('bin/sd');
install_script('bin/git-sd');
install_share('share');
-----------------------------------------------------------------------
More information about the Bps-public-commit
mailing list