--- mono-4.4.1/mcs/class/monodoc/Monodoc/storage/ZipStorage.cs.orig 2018-11-26 22:16:25.008879747 +0100 +++ mono-4.4.1/mcs/class/monodoc/Monodoc/storage/ZipStorage.cs 2018-11-26 22:21:53.969770985 +0100 @@ -74,6 +74,12 @@ id = GetNewCode (); ZipEntry entry = new ZipEntry (id); + var SOURCE_DATE_EPOCH_string = Environment.GetEnvironmentVariable("SOURCE_DATE_EPOCH"); + if (SOURCE_DATE_EPOCH_string != null) + { + var SOURCE_DATE_EPOCH = Convert.ToInt64(SOURCE_DATE_EPOCH_string); + entry.DateTime = new DateTime(SOURCE_DATE_EPOCH, DateTimeKind.Utc); + } zipOutput.PutNextEntry (entry); } e='afb82831fa4d8602859eb00056dd3f418ed363c9'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/gremlin.scm
AgeCommit message (Expand)Author
2018-08-25Merge branch 'staging' into core-updatesMarius Bakke
2018-08-21gremlin: 'elf-dynamic-info-needed' test is no longer skipped....* tests/gremlin.scm (%guile-executable): Use /proc/self/exe instead of (command-line). For a while now, the first element of (command-line) was "./build-aux/test-driver.scm"; consequently the test was always skipped. Ludovic Courtès
2018-05-07gremlin: Add 'strip-runpath'....* guix/build/gremlin.scm (strip-runpath): New procedure. * tests/gremlin.scm (c-compiler): New variable. ("strip-runpath"): New test. Ludovic Courtès