aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-01-29 11:28:31 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-01-29 11:28:31 +0000
commit9a39740ef3f5009a99a511591b28c190f9d58760 (patch)
tree5434d628c8cc0fb7e82812eeef815a2090012d91
parentbc3e73a8f3db588b7b72e0baf87a6eb3c7d7e61f (diff)
downloadruby-9a39740ef3f5009a99a511591b28c190f9d58760.tar.gz
* tool/make-snapshot: removed md5 digest with package infomation
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49437 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rwxr-xr-xtool/make-snapshot3
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9dc841bcc9..2912f56428 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Jan 29 20:28:25 2015 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
+
+ * tool/make-snapshot: removed md5 digest with package infomation
+
Thu Jan 29 10:41:52 2015 gogotanaka <mail@tanakakazuki.com>
* math.c (Get_Double): direct casting from Fixnum to double.
diff --git a/tool/make-snapshot b/tool/make-snapshot
index 5bd21158c6..052ecf4721 100755
--- a/tool/make-snapshot
+++ b/tool/make-snapshot
@@ -1,7 +1,6 @@
#!/usr/bin/ruby -s
# -*- coding: us-ascii -*-
require 'uri'
-require 'digest/md5'
require 'digest/sha1'
require 'digest/sha2'
require 'fileutils'
@@ -36,7 +35,7 @@ each versions may be followed by optional @revision.
USAGE
end
-DIGESTS = %w[MD5 SHA1 SHA256 SHA512]
+DIGESTS = %w[SHA1 SHA256 SHA512]
PACKAGES = {
"bzip" => %w".tar.bz2 bzip2 -c",
"gzip" => %w".tar.gz gzip -c",