mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-26 19:47:17 +00:00
eog: Fix absolute src paths in generated files
Fixes WARNING: eog-44.1-r0 do_package_qa: QA Issue: File /usr/src/debug/eog/44.1-r0/src/eog-enum-types.h in package eog-src contains reference to TMPDIR [buildpaths] Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -0,0 +1,48 @@
|
|||||||
|
From d00edda1f57f904e1590828bea3cedb53d789c48 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Khem Raj <raj.khem@gmail.com>
|
||||||
|
Date: Wed, 24 May 2023 20:33:59 -0700
|
||||||
|
Subject: [PATCH] Replace filename with basename
|
||||||
|
|
||||||
|
This avoids emitting absolute paths into generated sourcecode, it
|
||||||
|
improves reproducibility. See [1]
|
||||||
|
|
||||||
|
[1] https://developer-old.gnome.org/gobject/stable/glib-mkenums.html
|
||||||
|
|
||||||
|
Upstream-Status: Submitted [https://gitlab.gnome.org/GNOME/eog/-/merge_requests/154]
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
---
|
||||||
|
src/eog-enum-types.c.template | 4 ++--
|
||||||
|
src/eog-enum-types.h.template | 2 +-
|
||||||
|
2 files changed, 3 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/eog-enum-types.c.template b/src/eog-enum-types.c.template
|
||||||
|
index 0249baf..1013dcf 100644
|
||||||
|
--- a/src/eog-enum-types.c.template
|
||||||
|
+++ b/src/eog-enum-types.c.template
|
||||||
|
@@ -4,8 +4,8 @@
|
||||||
|
/*** END file-header ***/
|
||||||
|
|
||||||
|
/*** BEGIN file-production ***/
|
||||||
|
-/* enumerations from "@filename@" */
|
||||||
|
-#include "@filename@"
|
||||||
|
+/* enumerations from "@basename@" */
|
||||||
|
+#include "@basename@"
|
||||||
|
|
||||||
|
/*** END file-production ***/
|
||||||
|
|
||||||
|
diff --git a/src/eog-enum-types.h.template b/src/eog-enum-types.h.template
|
||||||
|
index bc3c195..8f4e916 100644
|
||||||
|
--- a/src/eog-enum-types.h.template
|
||||||
|
+++ b/src/eog-enum-types.h.template
|
||||||
|
@@ -8,7 +8,7 @@ G_BEGIN_DECLS
|
||||||
|
/*** END file-header ***/
|
||||||
|
|
||||||
|
/*** BEGIN file-production ***/
|
||||||
|
-/* Enumerations from "@filename@" */
|
||||||
|
+/* Enumerations from "@basename@" */
|
||||||
|
|
||||||
|
/*** END file-production ***/
|
||||||
|
|
||||||
|
--
|
||||||
|
2.40.1
|
||||||
|
|
||||||
@@ -21,6 +21,7 @@ inherit gnomebase pkgconfig gsettings gobject-introspection gettext mime-xdg fea
|
|||||||
|
|
||||||
REQUIRED_DISTRO_FEATURES = "opengl"
|
REQUIRED_DISTRO_FEATURES = "opengl"
|
||||||
|
|
||||||
|
SRC_URI += "file://0001-Replace-filename-with-basename.patch"
|
||||||
SRC_URI[archive.sha256sum] = "e2c963f232fe5a1091dcc18bec25a730e91b02af6e466601efa55e500cd74cab"
|
SRC_URI[archive.sha256sum] = "e2c963f232fe5a1091dcc18bec25a730e91b02af6e466601efa55e500cd74cab"
|
||||||
|
|
||||||
GTKDOC_MESON_OPTION = "gtk_doc"
|
GTKDOC_MESON_OPTION = "gtk_doc"
|
||||||
|
|||||||
Reference in New Issue
Block a user