summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Schonberg <schonm@gmail.com>2026-01-17 16:50:46 -0500
committerKhem Raj <raj.khem@gmail.com>2026-01-20 08:16:57 -0800
commite9624913eddf905d2d87727d6249043cefdc4eeb (patch)
tree8161bf90e75642e06f9be1ac69400d0b3fb792fb
parent531e60c906e13260f7167a2c75f12c962dce1a91 (diff)
downloadmeta-openembedded-e9624913eddf905d2d87727d6249043cefdc4eeb.tar.gz
xfce4-notifyd: upgrade 0.8.2 -> 0.9.4
Changelog: https://gitlab.xfce.org/apps/xfce4-notifyd/-/tags/xfce4-notifyd-0.9.4 Changelog: https://gitlab.xfce.org/apps/xfce4-notifyd/-/tags/xfce4-notifyd-0.9.3 Changelog: https://gitlab.xfce.org/apps/xfce4-notifyd/-/tags/xfce4-notifyd-0.9.2 Changelog: https://gitlab.xfce.org/apps/xfce4-notifyd/-/tags/xfce4-notifyd-0.9.1 Changelog: https://gitlab.xfce.org/apps/xfce4-notifyd/-/tags/xfce4-notifyd-0.9.0 Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-xfce/recipes-apps/xfce4-notifyd/files/xfce4-notifyd-get-var-abs-path.patch41
-rw-r--r--meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.9.4.bb (renamed from meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.8.2.bb)11
2 files changed, 7 insertions, 45 deletions
diff --git a/meta-xfce/recipes-apps/xfce4-notifyd/files/xfce4-notifyd-get-var-abs-path.patch b/meta-xfce/recipes-apps/xfce4-notifyd/files/xfce4-notifyd-get-var-abs-path.patch
deleted file mode 100644
index 719267fd16..0000000000
--- a/meta-xfce/recipes-apps/xfce4-notifyd/files/xfce4-notifyd-get-var-abs-path.patch
+++ /dev/null
@@ -1,41 +0,0 @@
1Native pkg_config only return basename of the variable queried. Invoke `which`
2to get the absolute path.
3
4Upstream-Status: Inappropriate [oe specific]
5
6Signed-off-by: Kai Kang <kai.kang@windriver.com>
7---
8 configure.ac | 6 +++---
9 1 file changed, 3 insertions(+), 3 deletions(-)
10
11diff --git a/configure.ac b/configure.ac
12index 0f49e2b..a589147 100644
13--- a/configure.ac
14+++ b/configure.ac
15@@ -116,7 +116,7 @@ AC_MSG_CHECKING([for gdbus-codegen])
16 if test x"$GDBUS_CODEGEN" = x""; then
17 GDBUS_CODEGEN=`$PKG_CONFIG --variable=gdbus_codegen gio-2.0`
18 fi
19-if test -x "$GDBUS_CODEGEN"; then
20+if test -x "$(which $GDBUS_CODEGEN)"; then
21 AC_MSG_RESULT([$GDBUS_CODEGEN])
22 else
23 AC_MSG_ERROR([could not find gdbus-codegen in \$PATH. You can run
24@@ -129,7 +129,7 @@ AC_MSG_CHECKING([for glib-compile-resources])
25 if test x"$GLIB_COMPILE_RESOURCES" = x""; then
26 GLIB_COMPILE_RESOURCES=`$PKG_CONFIG --variable=glib_compile_resources gio-2.0`
27 fi
28-if test -x "$GLIB_COMPILE_RESOURCES"; then
29+if test -x "$(which $GLIB_COMPILE_RESOURCES)"; then
30 AC_MSG_RESULT([$GLIB_COMPILE_RESOURCES])
31 else
32 AC_MSG_ERROR([could not find glib-compile-resources in \$PATH. You can run
33@@ -142,7 +142,7 @@ AC_MSG_CHECKING([for glib-genmarshal])
34 if test x"$GLIB_GENMARSHAL" = x""; then
35 GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0`
36 fi
37-if test -x "$GLIB_GENMARSHAL"; then
38+if test -x "$(which $GLIB_GENMARSHAL)"; then
39 AC_MSG_RESULT([$GLIB_GENMARSHAL])
40 else
41 AC_MSG_ERROR([could not find glib-genmarshal in \$PATH. You can run
diff --git a/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.8.2.bb b/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.9.4.bb
index 96cfd32f7b..987735e763 100644
--- a/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.8.2.bb
+++ b/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.9.4.bb
@@ -16,13 +16,16 @@ DEPENDS = " \
16inherit xfce-app 16inherit xfce-app
17inherit python3native 17inherit python3native
18 18
19SRC_URI:append = " file://xfce4-notifyd-get-var-abs-path.patch" 19SRC_URI[sha256sum] = "ae6c128c055c44bd07202f73ae69ad833c5e4754f3530696965136e4d9ea7818"
20
21SRC_URI[sha256sum] = "e3a28adb08daa1411135142a0d421e4d6050c4035a4e513a673a59460ff2ae84"
22 20
23# Avoid trouble with other desktops e.g KDE which also ships dbus service named 21# Avoid trouble with other desktops e.g KDE which also ships dbus service named
24# org.freedesktop.Notifications 22# org.freedesktop.Notifications
25EXTRA_OECONF = "--disable-dbus-start-daemon" 23EXTRA_OECONF = "--disable-dbus-start-daemon \
24 GDBUS_CODEGEN=${STAGING_BINDIR_NATIVE}/gdbus-codegen \
25 GLIB_COMPILE_RESOURCES=${STAGING_BINDIR_NATIVE}/glib-compile-resources \
26 GLIB_GENMARSHAL=${STAGING_BINDIR_NATIVE}/glib-genmarshal \
27 GLIB_MKENUMS=${STAGING_BINDIR_NATIVE}/glib-mkenums \
28 "
26 29
27do_compile:prepend() { 30do_compile:prepend() {
28 mkdir -p xfce4-notifyd xfce4-notifyd-config 31 mkdir -p xfce4-notifyd xfce4-notifyd-config