git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] supply '-n' to gzip to produce identical tarballs
@ 2011-04-10  6:12 Fraser Tweedale
  2011-04-10  7:38 ` Jakub Narebski
  0 siblings, 1 reply; 6+ messages in thread
From: Fraser Tweedale @ 2011-04-10  6:12 UTC (permalink / raw)
  To: git; +Cc: Fraser Tweedale

Without the '-n' ('--no-name') argument, gzip includes timestamp in
output which results in different files.  Important systems like FreeBSD
ports and perhaps many others hash/checksum downloaded files to ensure
integrity.  For projects that do not release official archives, gitweb's
snapshot feature would be an excellent stand-in but for the fact that the
files it produces are not identical.

Supply '-n' to gzip to exclude timestamp from output and produce idential
output every time.

Signed-off-by: Fraser Tweedale <frase@frase.id.au>
---
 gitweb/gitweb.perl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index 46186ab..2ab08da 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -186,7 +186,7 @@ our %known_snapshot_formats = (
 		'type' => 'application/x-gzip',
 		'suffix' => '.tar.gz',
 		'format' => 'tar',
-		'compressor' => ['gzip']},
+		'compressor' => ['gzip', '-n']},
 
 	'tbz2' => {
 		'display' => 'tar.bz2',
-- 
1.7.4.3

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-04-11 21:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-10  6:12 [PATCH] supply '-n' to gzip to produce identical tarballs Fraser Tweedale
2011-04-10  7:38 ` Jakub Narebski
2011-04-10 10:13   ` Fraser Tweedale
2011-04-10 13:55     ` Jakub Narebski
2011-04-11 19:24       ` Junio C Hamano
2011-04-11 20:59         ` Fraser Tweedale

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).