mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-16 19:17:11 +00:00
* add Pending to .patch files where it was accidentally droped with upgrades or modifications in: f88e5b146e postgresql: upgrade 15.5 -> 16.2 c904e169db multipath-tools: upgrade 0.9.3 -> 0.9.8 105be9b3d9 unionfs-fuse: upgrade 2.2 --> 3.4 or new patches where the author didn't notice/care: 2a7f74cdb0 dropwatch: Use header files from sysroot instead of build host f5cc9f272a yasm: improve reproducibility 39028d0d9d python3-pybind11: Restore strip prevention patch authors of these added to CC, please be more careful with removing or not adding these or enable patch-status in ERROR_QA for your builds, see: https://lists.openembedded.org/g/openembedded-core/topic/104922136#197113 * added with: for p in `/OE/layers/openembedded-core/scripts/contrib/patchreview.py -v . | grep Missing.Upstream-Status.tag | sed 's/.*(//g;s/)$//g'`; do grep -q ^Upstream-Status: $p || sed -i "s/^---$/\nUpstream-Status: Pending\n---/g" $p; grep -q ^Upstream-Status: $p || sed -i "1iUpstream-Status: Pending\n" $p; done Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
38 lines
1014 B
Diff
38 lines
1014 B
Diff
From eb164bb201c0f792fa8aa78270c47294065183a3 Mon Sep 17 00:00:00 2001
|
|
From: Oleh Matiusha <omatiush@cisco.com>
|
|
Date: Tue, 6 Feb 2024 09:33:11 +0000
|
|
Subject: [PATCH 1/2] yasm: Set build date to SOURCE_DATE_EPOCH
|
|
|
|
If SOURCE_DATE_EPOCH is set, use it to generate a reproducible
|
|
string for BUILD_DATE.
|
|
|
|
Signed-off-by: Oleh Matiusha <omatiush@cisco.com>
|
|
|
|
Upstream-Status: Pending
|
|
---
|
|
configure.ac | 8 ++++++++
|
|
1 file changed, 8 insertions(+)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 2823ecd..eeb51ce 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -103,6 +103,14 @@ AM_WITH_DMALLOC
|
|
#
|
|
AC_CHECK_HEADERS([strings.h libgen.h unistd.h direct.h sys/stat.h])
|
|
|
|
+# Use reproducible build date and time
|
|
+if test "$SOURCE_DATE_EPOCH"; then
|
|
+ DATE_FMT="%d %b %Y %H:%M:%S"
|
|
+ BUILD_DATE=$(LC_ALL=C date -u -d "@$SOURCE_DATE_EPOCH" "+$DATE_FMT")
|
|
+ AC_DEFINE_UNQUOTED([BUILD_DATE], ["$BUILD_DATE"], [Use reproducidle build date])
|
|
+fi
|
|
+
|
|
+
|
|
#
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
#
|
|
--
|
|
2.33.0
|
|
|