Repository: lucy-clownfish Updated Branches: refs/heads/master 5b609eb50 -> faefec2b5
No shell access to people.apache.org anymore Adjust devel/bin/release_commands.pl. Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/2d107d35 Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/2d107d35 Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/2d107d35 Branch: refs/heads/master Commit: 2d107d35ee7651d4247bf395120074253b9cfce9 Parents: 5b609eb Author: Nick Wellnhofer <[email protected]> Authored: Mon Mar 7 18:54:42 2016 +0100 Committer: Nick Wellnhofer <[email protected]> Committed: Mon Mar 7 18:54:42 2016 +0100 ---------------------------------------------------------------------- devel/bin/release_commands.pl | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/2d107d35/devel/bin/release_commands.pl ---------------------------------------------------------------------- diff --git a/devel/bin/release_commands.pl b/devel/bin/release_commands.pl index 96dda8d..c5a2c3e 100755 --- a/devel/bin/release_commands.pl +++ b/devel/bin/release_commands.pl @@ -21,20 +21,16 @@ use warnings; use Getopt::Long qw( GetOptions ); my $usage = join( ' ', - $0, qq|--version=X.Y.Z-rcN|, qq|--apache-id=APACHE_ID|, - qq|--name="FULL NAME"| ) + $0, qq|--version=X.Y.Z-rcN|, qq|--name="FULL NAME"| ) . "\n"; -my ( $full_rc_version, $apache_id, $name ); +my ( $full_rc_version, $name ); GetOptions( - 'version=s' => \$full_rc_version, - 'apache-id=s' => \$apache_id, - 'name=s' => \$name, + 'version=s' => \$full_rc_version, + 'name=s' => \$name, ); $full_rc_version or die $usage; -$apache_id or die $usage; $name or die $usage; -$apache_id =~ /^\w+$/ or die $usage; $full_rc_version =~ m/^(\d+)\.(\d+)\.(\d+)-rc(\d+)$/ or die $usage; my ( $major, $minor, $micro, $rc ) = ( $1, $2, $3, $4 ); my $x_y_z_version = sprintf( "%d.%d.%d", $major, $minor, $micro ); @@ -158,9 +154,7 @@ say ""; say qq|# Copy release artifacts to the production dist directory and|; say qq|# remove the RC dir. The "svnmucc" app, which ships with Subversion|; -say qq|# 1.7, is required. If you don't have it, you can ssh to|; -say qq|# people.apache.org and run the commands from there.|; -say qq|ssh $apache_id\@people.apache.org|; +say qq|# 1.7, is required.|; say qq|svnmucc -m "Publish Apache Clownfish $x_y_z_version" | . qq|-U https://dist.apache.org/repos/dist/ | . qq|mv dev/lucy/clownfish/apache-clownfish-$full_rc_version/apache-clownfish-$x_y_z_version.tar.gz |
