Skip to content

Commit 6dd302a

Browse files
committed
* tool/make-snapshot: show sha1 digest when making packages.
it's request from ruby/www.ruby-lang.org#921 [fix rubyGH-794] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49032 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent ca24e58 commit 6dd302a

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Sat Dec 27 10:03:41 2014 SHIBATA Hiroshi <[email protected]>
2+
3+
* tool/make-snapshot: show sha1 digest when making packages.
4+
it's request from https://github.com/ruby/www.ruby-lang.org/issues/921
5+
[fix GH-794]
6+
17
Fri Dec 26 15:32:16 2014 Nobuyoshi Nakada <[email protected]>
28

39
* ext/tk/tcltklib.c (ip_invoke_core): remove probably duplicate

tool/make-snapshot

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# -*- coding: us-ascii -*-
33
require 'uri'
44
require 'digest/md5'
5+
require 'digest/sha1'
56
require 'digest/sha2'
67
require 'fileutils'
78
require 'tmpdir'
@@ -34,7 +35,7 @@ each versions may be followed by optional @revision.
3435
USAGE
3536
end
3637

37-
DIGESTS = %w[MD5 SHA256 SHA512]
38+
DIGESTS = %w[MD5 SHA1 SHA256 SHA512]
3839
PACKAGES = {
3940
"bzip" => %w".tar.bz2 bzip2 -c",
4041
"gzip" => %w".tar.gz gzip -c",

0 commit comments

Comments
 (0)