diff options
| -rw-r--r-- | meta/recipes-connectivity/openssl/openssl/reproducibility.patch | 22 | ||||
| -rw-r--r-- | meta/recipes-connectivity/openssl/openssl_3.0.1.bb | 1 |
2 files changed, 23 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl/reproducibility.patch b/meta/recipes-connectivity/openssl/openssl/reproducibility.patch new file mode 100644 index 0000000000..8accbc9df2 --- /dev/null +++ b/meta/recipes-connectivity/openssl/openssl/reproducibility.patch | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | Using localtime() means the output can depend on the timezone of the build machine. | ||
| 2 | Using gmtime() is safer. For complete reproducibility use SOURCE_DATE_EPOCH if set. | ||
| 3 | |||
| 4 | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> | ||
| 5 | Upstream-Status: Pending [should be suitable] | ||
| 6 | |||
| 7 | Index: openssl-3.0.1/apps/progs.pl | ||
| 8 | =================================================================== | ||
| 9 | --- openssl-3.0.1.orig/apps/progs.pl | ||
| 10 | +++ openssl-3.0.1/apps/progs.pl | ||
| 11 | @@ -21,7 +21,10 @@ die "Unrecognised option, must be -C or | ||
| 12 | my %commands = (); | ||
| 13 | my $cmdre = qr/^\s*int\s+([a-z_][a-z0-9_]*)_main\(\s*int\s+argc\s*,/; | ||
| 14 | my $apps_openssl = shift @ARGV; | ||
| 15 | -my $YEAR = [localtime()]->[5] + 1900; | ||
| 16 | +my $YEAR = [gmtime()]->[5] + 1900; | ||
| 17 | +if (defined($ENV{SOURCE_DATE_EPOCH}) && $ENV{SOURCE_DATE_EPOCH} !~ /\D/) { | ||
| 18 | + $YEAR = [gmtime($ENV{SOURCE_DATE_EPOCH})]->[5] + 1900; | ||
| 19 | +} | ||
| 20 | |||
| 21 | # because the program apps/openssl has object files as sources, and | ||
| 22 | # they then have the corresponding C files as source, we need to chain | ||
diff --git a/meta/recipes-connectivity/openssl/openssl_3.0.1.bb b/meta/recipes-connectivity/openssl/openssl_3.0.1.bb index 162435480c..7727ec43e8 100644 --- a/meta/recipes-connectivity/openssl/openssl_3.0.1.bb +++ b/meta/recipes-connectivity/openssl/openssl_3.0.1.bb | |||
| @@ -12,6 +12,7 @@ SRC_URI = "http://www.openssl.org/source/openssl-${PV}.tar.gz \ | |||
| 12 | file://0001-buildinfo-strip-sysroot-and-debug-prefix-map-from-co.patch \ | 12 | file://0001-buildinfo-strip-sysroot-and-debug-prefix-map-from-co.patch \ |
| 13 | file://afalg.patch \ | 13 | file://afalg.patch \ |
| 14 | file://0001-Configure-do-not-tweak-mips-cflags.patch \ | 14 | file://0001-Configure-do-not-tweak-mips-cflags.patch \ |
| 15 | file://reproducibility.patch \ | ||
| 15 | " | 16 | " |
| 16 | 17 | ||
| 17 | SRC_URI:append:class-nativesdk = " \ | 18 | SRC_URI:append:class-nativesdk = " \ |
