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 2018/03/08 15:23:36 UTC

lucy git commit: Remove md5 checksum file from release prep

Repository: lucy
Updated Branches:
  refs/heads/release-no-md5 [created] ccf6fc89a


Remove md5 checksum file from release prep


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

Branch: refs/heads/release-no-md5
Commit: ccf6fc89ac994ac1f206ef25ad4aa291d6f1be1a
Parents: 0635ca0
Author: Peter Karman <ka...@peknet.com>
Authored: Thu Mar 8 09:23:25 2018 -0600
Committer: Peter Karman <ka...@peknet.com>
Committed: Thu Mar 8 09:23:25 2018 -0600

----------------------------------------------------------------------
 devel/bin/release_commands.pl | 9 ---------
 1 file changed, 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/ccf6fc89/devel/bin/release_commands.pl
----------------------------------------------------------------------
diff --git a/devel/bin/release_commands.pl b/devel/bin/release_commands.pl
index 24c3266..7346a82 100755
--- a/devel/bin/release_commands.pl
+++ b/devel/bin/release_commands.pl
@@ -109,11 +109,6 @@ say qq|cp -p CHANGES apache-lucy-$full_rc_version/CHANGES-$x_y_z_version.txt|;
 say qq|cd apache-lucy-$full_rc_version\n|;
 
 say qq|# Generate checksums.|;
-say qq|perl -MDigest -e '\$d = Digest->new("MD5"); 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.md5|;
 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; |
@@ -127,7 +122,6 @@ say qq|gpg --armor --output apache-lucy-$x_y_z_version.tar.gz.asc |
 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.sha512 |
     . qq|apache-lucy-$x_y_z_version.tar.gz.asc |
     . qq|CHANGES-$x_y_z_version.txt |;
@@ -171,8 +165,6 @@ 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 |
     . 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.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 |
@@ -190,7 +182,6 @@ if ( $micro > 0 ) {
     say qq|svnmucc -m "Remove Apache Lucy $prev" |
         . 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.sha512 |
         . qq|rm apache-lucy-$prev.tar.gz.asc |
         . qq|rm CHANGES-$prev.txt |;