You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ka...@apache.org on 2017/08/16 14:33:31 UTC

lucy git commit: Add sha512 explicit algorithm to file extension

Repository: lucy
Updated Branches:
  refs/heads/master 598b4d074 -> a1a61b728


Add sha512 explicit algorithm to file extension


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

Branch: refs/heads/master
Commit: a1a61b7282ec5068b72dc5c912be26c508f0bbc8
Parents: 598b4d0
Author: Peter Karman <ka...@peknet.com>
Authored: Wed Aug 16 09:33:27 2017 -0500
Committer: Peter Karman <ka...@peknet.com>
Committed: Wed Aug 16 09:33:27 2017 -0500

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


http://git-wip-us.apache.org/repos/asf/lucy/blob/a1a61b72/devel/bin/release_commands.pl
----------------------------------------------------------------------
diff --git a/devel/bin/release_commands.pl b/devel/bin/release_commands.pl
index 91cdc5f..24c3266 100755
--- a/devel/bin/release_commands.pl
+++ b/devel/bin/release_commands.pl
@@ -118,7 +118,7 @@ say qq|perl -MDigest -e '\$d = Digest->new("SHA-512"); open \$fh, |
     . qq|"<apache-lucy-$x_y_z_version.tar.gz" or die; |
     . qq|\$d->addfile(\$fh); print \$d->hexdigest; |
     . qq|print "  apache-lucy-$x_y_z_version.tar.gz\\n"' > |
-    . qq| apache-lucy-$x_y_z_version.tar.gz.sha\n|;
+    . qq| apache-lucy-$x_y_z_version.tar.gz.sha512\n|;
 
 say qq|# Sign the release.|;
 say qq|gpg --armor --output apache-lucy-$x_y_z_version.tar.gz.asc |
@@ -128,7 +128,7 @@ say qq|# Add the artifacts and commit to the dev area on dist.apache.org.|;
 say qq|svn add |
     . qq|apache-lucy-$x_y_z_version.tar.gz |
     . qq|apache-lucy-$x_y_z_version.tar.gz.md5 |
-    . qq|apache-lucy-$x_y_z_version.tar.gz.sha |
+    . qq|apache-lucy-$x_y_z_version.tar.gz.sha512 |
     . qq|apache-lucy-$x_y_z_version.tar.gz.asc |
     . qq|CHANGES-$x_y_z_version.txt |;
 say qq|svn ci -m "Add apache-lucy-$x_y_z_version artifacts"\n|;
@@ -173,8 +173,8 @@ say qq|svnmucc -m "Publish Apache Lucy $x_y_z_version" |
     . qq|release/lucy/apache-lucy-$x_y_z_version.tar.gz |
     . qq|mv dev/lucy/apache-lucy-$full_rc_version/apache-lucy-$x_y_z_version.tar.gz.md5 |
     . qq|release/lucy/apache-lucy-$x_y_z_version.tar.gz.md5 |
-    . qq|mv dev/lucy/apache-lucy-$full_rc_version/apache-lucy-$x_y_z_version.tar.gz.sha |
-    . qq|release/lucy/apache-lucy-$x_y_z_version.tar.gz.sha |
+    . qq|mv dev/lucy/apache-lucy-$full_rc_version/apache-lucy-$x_y_z_version.tar.gz.sha512 |
+    . qq|release/lucy/apache-lucy-$x_y_z_version.tar.gz.sha512 |
     . qq|mv dev/lucy/apache-lucy-$full_rc_version/apache-lucy-$x_y_z_version.tar.gz.asc |
     . qq|release/lucy/apache-lucy-$x_y_z_version.tar.gz.asc |
     . qq|mv dev/lucy/apache-lucy-$full_rc_version/CHANGES-$x_y_z_version.txt |
@@ -191,7 +191,7 @@ if ( $micro > 0 ) {
         . qq|-U https://dist.apache.org/repos/dist/release/lucy/ |
         . qq|rm apache-lucy-$prev.tar.gz |
         . qq|rm apache-lucy-$prev.tar.gz.md5 |
-        . qq|rm apache-lucy-$prev.tar.gz.sha |
+        . qq|rm apache-lucy-$prev.tar.gz.sha512 |
         . qq|rm apache-lucy-$prev.tar.gz.asc |
         . qq|rm CHANGES-$prev.txt |;
 }