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

ruby-changes:63681

From: Nobuyoshi <ko1@a...>
Date: Sun, 22 Nov 2020 11:39:49 +0900 (JST)
Subject: [ruby-changes:63681] e9c3de4764 (master): make-snapshot: don't store symlinks by 7z for reproduceable pacakges

https://git.ruby-lang.org/ruby.git/commit/?id=e9c3de4764

From e9c3de47649c2c25eef2c610d79629fdc235bcc4 Mon Sep 17 00:00:00 2001
From: Nobuyoshi Nakada <nobu@r...>
Date: Sun, 22 Nov 2020 11:30:02 +0900
Subject: make-snapshot: don't store symlinks by 7z for reproduceable pacakges


diff --git a/tool/make-snapshot b/tool/make-snapshot
index 735d0f0..131d7b9 100755
--- a/tool/make-snapshot
+++ b/tool/make-snapshot
@@ -54,7 +54,7 @@ PACKAGES = { https://github.com/ruby/ruby/blob/trunk/tool/make-snapshot#L54
 DEFAULT_PACKAGES = PACKAGES.keys - ["tar"]
 if !$no7z and system("7z", out: IO::NULL)
   PACKAGES["gzip"] = %w".tar.gz 7z a dummy -tgzip -mx -so"
-  PACKAGES["zip"]  = %w".zip    7z a -tzip  -mx -mtc=off" << {out: IO::NULL}
+  PACKAGES["zip"]  = %w".zip    7z a -tzip -l -mx -mtc=off" << {out: IO::NULL}
 elsif gzip = ENV.delete("GZIP")
   PACKAGES["gzip"].concat(gzip.shellsplit)
 end
-- 
cgit v0.10.2


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

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