Revert "Add patch file to fix guix-gaming-channels"

This reverts commit 679d9a127a.

This patch file was added to the guix gaming channel, I don't need it here anymore.
This commit is contained in:
Tom Willemse 2022-11-17 22:30:32 -08:00
parent 0e20427296
commit c248652a67
Signed by: ryuslash
GPG key ID: 7D5C407B435025C1

View file

@ -1,15 +0,0 @@
--- 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);
}