unzip: add valid patche headers and missing CVE informations

This commit adds a valid git patch header for each patch, so that
additional information can be stored. This is in this case and 'CVE:' tag.
This can be used by CVE scanner to find out if the patch fixes a CVE.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
This commit is contained in:
Florian Eckert
2023-10-30 15:12:55 +01:00
committed by Florian Eckert
parent 5237ebf95e
commit f9e7e2db94
13 changed files with 217 additions and 55 deletions

View File

@@ -0,0 +1,28 @@
From 634103b6311206b8206ef15b076b21fd32fd495f Mon Sep 17 00:00:00 2001
From: OpenWrt community <openwrt-devel@lists.openwrt.org>
Date: Mon, 30 Oct 2023 14:54:43 +0100
Subject: [PATCH] unix.c: Remove build date
In order to make unzip build reproducibly, we remove the (already optional)
build date from the binary.
Bug-Debian: https://bugs.debian.org/782851
---
unix/unix.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/unix/unix.c b/unix/unix.c
index efa97fc..816e3da 100644
--- a/unix/unix.c
+++ b/unix/unix.c
@@ -1705,7 +1705,7 @@ void version(__G)
#endif /* Sun */
#endif /* SGI */
-#ifdef __DATE__
+#if 0
" on ", __DATE__
#else
"", ""
--