summaryrefslogtreecommitdiff
path: root/Porting
diff options
context:
space:
mode:
authorFlorian Ragwitz <rafl@debian.org>2010-07-25 20:23:38 +0200
committerFlorian Ragwitz <rafl@debian.org>2010-07-25 20:29:24 +0200
commitb63bc9b3dfd65dbfa74aa9e3173402826ddc6cb6 (patch)
treebc67e3780da00d9a5f88c1d6709870d1c66e8a89 /Porting
parentad775c2567e5cb58bd056e2faf194b80c378eeda (diff)
downloadperl-b63bc9b3dfd65dbfa74aa9e3173402826ddc6cb6.tar.gz
Make address for Porting/cherrymaint configurable
Still defaults to localhost:3000, but can now be overwritten on the cli and with `git config cherrymaint.address host:port'.
Diffstat (limited to 'Porting')
-rw-r--r--Porting/cherrymaint33
1 files changed, 21 insertions, 12 deletions
diff --git a/Porting/cherrymaint b/Porting/cherrymaint
index d1df73c0e0..3a985b9b0c 100644
--- a/Porting/cherrymaint
+++ b/Porting/cherrymaint
@@ -8,15 +8,19 @@ use LWP::UserAgent;
my %votemap = (
'unexamined' => 0,
- 'rejected' => 1,
- 'vote' => 4,
- 'picked' => 5,
+ 'rejected' => 1,
+ 'vote' => 4,
+ 'picked' => 5,
);
+
+chomp(my $git_addr = `git config --get cherrymaint.address`);
+my $addr = length $git_addr ? $git_addr : 'localhost:3000';
+
# Usage
my $program = basename $0;
my $usage = << "HERE";
-Usage: $program [ACTION] [COMMIT]
+Usage: $program [--address address] [ACTION] [COMMIT]
ACTIONS: (default is 'vote' if omitted)
@@ -31,14 +35,14 @@ HERE
die $usage if grep { /^(--help|-h)$/ } @ARGV;
# Determine action
-my %opt;
-GetOptions( \%opt, keys %votemap ) or die $usage;
+my %opt = (address => \$addr);
+GetOptions( \%opt, 'address=s', keys %votemap ) or die $usage;
if ( keys(%opt) > 1 ) {
- die "Error: cherrymaint takes only one action argument\n\n$usage"
+ die "Error: cherrymaint takes only one action argument\n\n$usage"
}
-my ($action) = keys %opt;
+my ($action) = grep { exists $votemap{$_} } keys %opt;
$action ||= 'vote';
# Determine commit SHA1
@@ -63,7 +67,7 @@ unless ( $action eq 'vote' ) {
# Send the action to cherrymaint
my $n = $votemap{$action};
-my $url = "http://localhost:3000/mark?commit=${short_id}&value=${n}";
+my $url = "http://$addr/mark?commit=${short_id}&value=${n}";
my $ua = LWP::UserAgent->new(
agent => 'Porting/cherrymaint ',
@@ -77,10 +81,15 @@ if ($response->is_success) {
say "Done.";
}
else {
- die $response->status_line . << 'HERE';
+ die $response->status_line . << "HERE";
+
+Have you remembered to tunnel $addr to perl5.git.perl.org:3000? E.g.
+ \$ ssh -C -L${\ join q{:} => reverse split /:/, $addr}:3000 perl5.git.perl.org
+
+Or maybe you created a different tunnel? You can specify the address to use
+either on the command line with --address, or by doing
+ \$ git config cherrymaint.address host:port
-Have you remembered to tunnel localhost:3000 to perl5.git.perl.org:3000? E.g.
- $ ssh -C -L3000:localhost:3000 perl5.git.perl.org
HERE
}