ruby-changes:36951
From: hsbt <ko1@a...>
Date: Sat, 27 Dec 2014 10:04:05 +0900 (JST)
Subject: [ruby-changes:36951] hsbt:r49032 (trunk): * tool/make-snapshot: show sha1 digest when making packages.
hsbt 2014-12-27 10:03:50 +0900 (Sat, 27 Dec 2014) New Revision: 49032 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=49032 Log: * tool/make-snapshot: show sha1 digest when making packages. it's request from https://github.com/ruby/www.ruby-lang.org/issues/921 [fix GH-794] Modified files: trunk/ChangeLog trunk/tool/make-snapshot Index: ChangeLog =================================================================== --- ChangeLog (revision 49031) +++ ChangeLog (revision 49032) @@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Sat Dec 27 10:03:41 2014 SHIBATA Hiroshi <shibata.hiroshi@g...> + + * tool/make-snapshot: show sha1 digest when making packages. + it's request from https://github.com/ruby/www.ruby-lang.org/issues/921 + [fix GH-794] + Fri Dec 26 15:32:16 2014 Nobuyoshi Nakada <nobu@r...> * ext/tk/tcltklib.c (ip_invoke_core): remove probably duplicate Index: tool/make-snapshot =================================================================== --- tool/make-snapshot (revision 49031) +++ tool/make-snapshot (revision 49032) @@ -2,6 +2,7 @@ https://github.com/ruby/ruby/blob/trunk/tool/make-snapshot#L2 # -*- coding: us-ascii -*- require 'uri' require 'digest/md5' +require 'digest/sha1' require 'digest/sha2' require 'fileutils' require 'tmpdir' @@ -34,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 SHA256 SHA512] +DIGESTS = %w[MD5 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/