You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by nw...@apache.org on 2016/03/07 19:06:33 UTC

[1/2] lucy git commit: No shell access to people.apache.org anymore

Repository: lucy
Updated Branches:
  refs/heads/master f7798ced6 -> eefbb4085


No shell access to people.apache.org anymore

Adjust devel/bin/release_commands.pl.


Project: http://git-wip-us.apache.org/repos/asf/lucy/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/962b4803
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/962b4803
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/962b4803

Branch: refs/heads/master
Commit: 962b4803bc5450441a49ee83975702bb9f10e952
Parents: f7798ce
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Mon Mar 7 19:03:56 2016 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Mon Mar 7 19:03:56 2016 +0100

----------------------------------------------------------------------
 devel/bin/release_commands.pl | 16 +++++-----------
 1 file changed, 5 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/962b4803/devel/bin/release_commands.pl
----------------------------------------------------------------------
diff --git a/devel/bin/release_commands.pl b/devel/bin/release_commands.pl
index ed6fd0e..4bcfe08 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 );
@@ -170,9 +166,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 Lucy $x_y_z_version" |
     . qq|-U https://dist.apache.org/repos/dist/ |
     . qq|mv dev/lucy/apache-lucy-$full_rc_version/apache-lucy-$x_y_z_version.tar.gz |


[2/2] lucy git commit: Use indelible rel/ namespace for release tags

Posted by nw...@apache.org.
Use indelible rel/ namespace for release tags


Project: http://git-wip-us.apache.org/repos/asf/lucy/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/eefbb408
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/eefbb408
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/eefbb408

Branch: refs/heads/master
Commit: eefbb4085f69c9951b5cb723ba91770f11fc4ad4
Parents: 962b480
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Mon Mar 7 19:05:06 2016 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Mon Mar 7 19:05:06 2016 +0100

----------------------------------------------------------------------
 devel/bin/release_commands.pl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/eefbb408/devel/bin/release_commands.pl
----------------------------------------------------------------------
diff --git a/devel/bin/release_commands.pl b/devel/bin/release_commands.pl
index 4bcfe08..3204358 100755
--- a/devel/bin/release_commands.pl
+++ b/devel/bin/release_commands.pl
@@ -155,8 +155,8 @@ say qq|# After the vote has passed...|;
 say qq|###############################################################\n|;
 
 say qq|# Tag the release and delete the RC tags.|;
-say qq|git tag apache-lucy-$x_y_z_version apache-lucy-$full_rc_version|;
-say qq|git push origin apache-lucy-$x_y_z_version|;
+say qq|git tag rel/apache-lucy-$x_y_z_version apache-lucy-$full_rc_version|;
+say qq|git push origin rel/apache-lucy-$x_y_z_version|;
 for ( 1 .. $rc ) {
     my $rc_tag = qq|apache-lucy-$major.$minor.$micro-rc$_|;
     say qq|git tag -d $rc_tag|;