[前][次][番号順一覧][スレッド一覧]

ruby-changes:37356

From: hsbt <ko1@a...>
Date: Thu, 29 Jan 2015 20:28:45 +0900 (JST)
Subject: [ruby-changes:37356] hsbt:r49437 (trunk): * tool/make-snapshot: removed md5 digest with package infomation

hsbt	2015-01-29 20:28:31 +0900 (Thu, 29 Jan 2015)

  New Revision: 49437

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=49437

  Log:
    * tool/make-snapshot: removed md5 digest with package infomation

  Modified files:
    trunk/ChangeLog
    trunk/tool/make-snapshot
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 49436)
+++ ChangeLog	(revision 49437)
@@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Thu Jan 29 20:28:25 2015  SHIBATA Hiroshi  <shibata.hiroshi@g...>
+
+	* tool/make-snapshot: removed md5 digest with package infomation
+
 Thu Jan 29 10:41:52 2015  gogotanaka  <mail@t...>
 
 	* math.c (Get_Double): direct casting from Fixnum to double.
Index: tool/make-snapshot
===================================================================
--- tool/make-snapshot	(revision 49436)
+++ tool/make-snapshot	(revision 49437)
@@ -1,7 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/tool/make-snapshot#L1
 #!/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 optiona https://github.com/ruby/ruby/blob/trunk/tool/make-snapshot#L35
 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",

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]