mirror of
https://git.yoctoproject.org/poky
synced 2026-04-23 00:32:12 +02:00
libsecret: Improve determimism
(From OE-Core rev: 9c807afd997f0729fe3c90e81b2d8351ec980010) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 28175c44e7402397a24a00a4b056eef39b0a03fa) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
37
meta/recipes-gnome/libsecret/libsecret/determinism.patch
Normal file
37
meta/recipes-gnome/libsecret/libsecret/determinism.patch
Normal file
@@ -0,0 +1,37 @@
|
||||
secret-enum-types.c/h.template: Fix reproducibility issue
|
||||
|
||||
When full filenames are used in generated sources it makes the resulting
|
||||
debug packages non-reproducible. Best practise is to use basename in
|
||||
comments instead.
|
||||
|
||||
Signed-off-by: Richard Purdie richard.purdie@linuxfoundation.org
|
||||
Upstream-Status: Submitted [https://gitlab.gnome.org/GNOME/libsecret/-/merge_requests/68]
|
||||
|
||||
Index: libsecret-0.20.4/libsecret/secret-enum-types.c.template
|
||||
===================================================================
|
||||
--- libsecret-0.20.4.orig/libsecret/secret-enum-types.c.template
|
||||
+++ libsecret-0.20.4/libsecret/secret-enum-types.c.template
|
||||
@@ -23,8 +23,8 @@
|
||||
/*** END file-header ***/
|
||||
|
||||
/*** BEGIN file-production ***/
|
||||
-#include "@filename@"
|
||||
-/* enumerations from "@filename@" */
|
||||
+#include "@basename@"
|
||||
+/* enumerations from "@basename@" */
|
||||
/*** END file-production ***/
|
||||
|
||||
/*** BEGIN value-header ***/
|
||||
Index: libsecret-0.20.4/libsecret/secret-enum-types.h.template
|
||||
===================================================================
|
||||
--- libsecret-0.20.4.orig/libsecret/secret-enum-types.h.template
|
||||
+++ libsecret-0.20.4/libsecret/secret-enum-types.h.template
|
||||
@@ -27,7 +27,7 @@ G_BEGIN_DECLS
|
||||
|
||||
/*** BEGIN file-production ***/
|
||||
|
||||
-/* enumerations from "@filename@" */
|
||||
+/* enumerations from "@basename@" */
|
||||
/*** END file-production ***/
|
||||
|
||||
/*** BEGIN value-header ***/
|
||||
@@ -13,7 +13,8 @@ inherit gnomebase gtk-doc vala gobject-introspection manpages
|
||||
|
||||
DEPENDS += "glib-2.0 libgcrypt gettext-native"
|
||||
|
||||
SRC_URI += "file://0001-meson-add-option-introspection.patch"
|
||||
SRC_URI += "file://0001-meson-add-option-introspection.patch \
|
||||
file://determinism.patch"
|
||||
|
||||
SRC_URI[archive.md5sum] = "47c3fdfeb111a87b509ad271e4a6f496"
|
||||
SRC_URI[archive.sha256sum] = "4fcb3c56f8ac4ab9c75b66901fb0104ec7f22aa9a012315a14c0d6dffa5290e4"
|
||||
|
||||
Reference in New Issue
Block a user