You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2011/07/19 00:55:56 UTC

[lucy-commits] svn commit: r1148085 - /incubator/lucy/trunk/devel/bin/release_commands.pl

Author: marvin
Date: Mon Jul 18 22:55:56 2011
New Revision: 1148085

URL: http://svn.apache.org/viewvc?rev=1148085&view=rev
Log:
Move commands which run after vote passes.

Modified:
    incubator/lucy/trunk/devel/bin/release_commands.pl

Modified: incubator/lucy/trunk/devel/bin/release_commands.pl
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/devel/bin/release_commands.pl?rev=1148085&r1=1148084&r2=1148085&view=diff
==============================================================================
--- incubator/lucy/trunk/devel/bin/release_commands.pl (original)
+++ incubator/lucy/trunk/devel/bin/release_commands.pl Mon Jul 18 22:55:56 2011
@@ -87,18 +87,6 @@ say qq|find . -type f -exec chmod 664 {}
 say qq|find . -type d -exec chmod 775 {} \\;|;
 say qq|chgrp -R incubator *\n|;
 
-say qq|# Tag release after all votes have passed.|;
-say qq|svn copy https://svn.apache.org/repos/asf/incubator/lucy/tags/apache-lucy-incubating-$full_rc_version |
- . qq|https://svn.apache.org/repos/asf/incubator/lucy/tags/apache-lucy-incubating-$x_y_z_version |
- . qq|-m "Tagging release $x_y_z_version"\n|;
-
-
-say qq|# Copy to dist directory, remove RC dir.|;
-say qq|ssh people.apache.org|;
-say qq|cd public_html/|;
-say qq|cp -p apache-lucy-incubating-$full_rc_version/* /www/www.apache.org/dist/incubator/lucy/|;
-say qq|rm -rf apache-lucy-incubating-$full_rc_version/\n|;
-
 say qq|#######################################################################|;
 say qq|# Boilerplate VOTE email for lucy-dev\@incubator.a.o|;
 say qq|#######################################################################\n|;
@@ -200,4 +188,19 @@ Thanks!
 END_GENERAL_AT_INCUBATOR_VOTE
 
 say qq|#######################################################################|;
+say qq|# After both Lucy PPMC and Incubator PMC votes have passed...|;
+say qq|#######################################################################\n|;
+
+say qq|# Tag release.|;
+say qq|svn copy https://svn.apache.org/repos/asf/incubator/lucy/tags/apache-lucy-incubating-$full_rc_version |
+ . qq|https://svn.apache.org/repos/asf/incubator/lucy/tags/apache-lucy-incubating-$x_y_z_version |
+ . qq|-m "Tagging release $x_y_z_version"\n|;
+
+say qq|# Copy to dist directory, remove RC dir.|;
+say qq|ssh people.apache.org|;
+say qq|cd public_html/|;
+say qq|cp -p apache-lucy-incubating-$full_rc_version/* /www/www.apache.org/dist/incubator/lucy/|;
+say qq|rm -rf apache-lucy-incubating-$full_rc_version/\n|;
+
+say qq|#######################################################################|;