[oe] [meta-initramfs][PATCH] dracut: upgrade 055 -> 056

2022-04-01 Thread Yi Zhao
* Add a patch to fix musl build:
  src/install/util.c:30:19: error: missing binary operator before token "("
 30 | #if __GLIBC_PREREQ(2, 30) == 0
|   ^
  make: *** [Makefile:57: src/install/util.o] Error 1

* Pass "-fPIC" to CFLAGS to fix build warning with musl build:
  WARNING: dracut-1_056-r0 do_package_qa: QA Issue: dracut: ELF binary
  /usr/lib/dracut/dracut-install has relocations in .text [textrel]

Signed-off-by: Yi Zhao 
---
 ...against-__GLIBC_PREREQ-for-musl-libc.patch | 35 +++
 .../dracut/{dracut_055.bb => dracut_056.bb}   |  4 ++-
 2 files changed, 38 insertions(+), 1 deletion(-)
 create mode 100644 
meta-initramfs/recipes-devtools/dracut/dracut/0001-Guard-against-__GLIBC_PREREQ-for-musl-libc.patch
 rename meta-initramfs/recipes-devtools/dracut/{dracut_055.bb => dracut_056.bb} 
(93%)

diff --git 
a/meta-initramfs/recipes-devtools/dracut/dracut/0001-Guard-against-__GLIBC_PREREQ-for-musl-libc.patch
 
b/meta-initramfs/recipes-devtools/dracut/dracut/0001-Guard-against-__GLIBC_PREREQ-for-musl-libc.patch
new file mode 100644
index 0..bd768d00d
--- /dev/null
+++ 
b/meta-initramfs/recipes-devtools/dracut/dracut/0001-Guard-against-__GLIBC_PREREQ-for-musl-libc.patch
@@ -0,0 +1,35 @@
+From ff5e1a662ba93ba79e2aeaaaec48a2a8ec4b4701 Mon Sep 17 00:00:00 2001
+From: Yi Zhao 
+Date: Thu, 31 Mar 2022 22:22:44 +0800
+Subject: [PATCH] Guard against __GLIBC_PREREQ for musl libc
+
+Upstream-Status: Pending
+
+Signed-off-by: Yi Zhao 
+---
+ src/install/util.c | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/src/install/util.c b/src/install/util.c
+index 5721de89..784aec48 100644
+--- a/src/install/util.c
 b/src/install/util.c
+@@ -27,6 +27,7 @@
+ 
+ #include "util.h"
+ 
++#if defined(__GLIBC__)
+ #if __GLIBC_PREREQ(2, 30) == 0
+ #include 
+ #ifndef SYS_gettid
+@@ -35,6 +36,7 @@
+ 
+ #define gettid()((pid_t) syscall(SYS_gettid))
+ #endif /*__GLIBC_PREREQ */
++#endif /*__GLIBC__*/
+ 
+ size_t page_size(void)
+ {
+-- 
+2.25.1
+
diff --git a/meta-initramfs/recipes-devtools/dracut/dracut_055.bb 
b/meta-initramfs/recipes-devtools/dracut/dracut_056.bb
similarity index 93%
rename from meta-initramfs/recipes-devtools/dracut/dracut_055.bb
rename to meta-initramfs/recipes-devtools/dracut/dracut_056.bb
index a8fc5462f..7b8900610 100644
--- a/meta-initramfs/recipes-devtools/dracut/dracut_055.bb
+++ b/meta-initramfs/recipes-devtools/dracut/dracut_056.bb
@@ -7,9 +7,10 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
 
 PE = "1"
 
-SRCREV = "86bf2533d77762e823ad7a3e06a574522c1a90e3"
+SRCREV = "631d5f72a223288aa1f48bb8e8d0313e75947400"
 SRC_URI = 
"git://git.kernel.org/pub/scm/boot/dracut/dracut.git;protocol=http;branch=master
 \
file://0001-util.h-include-sys-reg.h-when-libc-glibc.patch \
+   file://0001-Guard-against-__GLIBC_PREREQ-for-musl-libc.patch \
"
 
 DEPENDS += "kmod"
@@ -36,6 +37,7 @@ PACKAGECONFIG[systemd] = 
"--with-systemdsystemunitdir=${systemd_unitdir}/system/
 
 EXTRA_OEMAKE += 'libdir=${prefix}/lib LDLIBS="${LDLIBS}"'
 
+CFLAGS:append = " -fPIC"
 LDLIBS:append:libc-musl = " -lfts"
 
 do_configure() {
-- 
2.25.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#96323): 
https://lists.openembedded.org/g/openembedded-devel/message/96323
Mute This Topic: https://lists.openembedded.org/mt/90174195/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [PATCH 01/15] octave: upgrade 4.4.1 -> 6.4.0 and overhaul recipe

2022-04-01 Thread Andreas Müller
Complete rework of recipe was done with two targets in mind:
* Do not disappoint users on this project - it is a treasure for mathians
* Do not over-complicate recipe unnecessarily

Signed-off-by: Andreas Müller 
---
 .../recipes-devtools/octave/octave_4.4.1.bb   | 40 --
 .../recipes-devtools/octave/octave_6.4.0.bb   | 52 +++
 2 files changed, 52 insertions(+), 40 deletions(-)
 delete mode 100644 meta-oe/recipes-devtools/octave/octave_4.4.1.bb
 create mode 100644 meta-oe/recipes-devtools/octave/octave_6.4.0.bb

diff --git a/meta-oe/recipes-devtools/octave/octave_4.4.1.bb 
b/meta-oe/recipes-devtools/octave/octave_4.4.1.bb
deleted file mode 100644
index 433175fb6..0
--- a/meta-oe/recipes-devtools/octave/octave_4.4.1.bb
+++ /dev/null
@@ -1,40 +0,0 @@
-DESCRIPTION = "High-level language, primarily intended for numerical 
computations"
-HOMEPAGE = "http://www.gnu.org/software/octave/";
-SECTION = "math"
-
-LICENSE = "GPL-3.0-only"
-LIC_FILES_CHKSUM = "file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464"
-
-DEPENDS = "gperf-native texinfo lapack pcre readline"
-
-inherit autotools pkgconfig texinfo gettext mime-xdg
-
-EXTRA_OECONF = "--disable-java --disable-docs"
-
-SRC_URI = "${GNU_MIRROR}/octave/${BPN}-${PV}.tar.gz \
-   file://fix-blas-library-integer-size.patch \
-"
-
-SRC_URI[md5sum] = "b43bd5f4309a0c048c91af10cf8e8674"
-SRC_URI[sha256sum] = 
"09fbd0f212f4ef21e53f1d9c41cf30ce3d7f9450fb44911601e21ed64c67ae97"
-
-do_compile:prepend() {
-   for folder in "liboctave/operators liboctave/numeric liboctave/array 
liboctave/util"; do
-   mkdir -p ${B}/${folder}
-   done
-}
-
-PACKAGES =+ " octave-common liboctave liboctave-dev liboctave-dbg"
-
-FILES:${PN} = "${bindir}/* ${sbindir}/* ${libexecdir}/* ${datadir}/${PN} \
-${libdir}/${PN}/${PV}/oct ${libdir}/${PN}/${PV}/site  \
-${libdir}/${PN}/site ${datadir}/applications ${datadir}/metainfo"
-FILES:${PN}-common = "${datadir}/icons"
-
-FILES:liboctave = "${libdir}/${PN}/${PV}/lib*${SOLIBS}"
-FILES:liboctave-dev = "${libdir}/${PN}/${PV}/lib*${SOLIBSDEV}"
-FILES:liboctave-dbg = "${libdir}/${PN}/${PV}/.debug"
-
-FILES:${PN}-dbg = "${bindir}/.debug 
${libdir}/${PN}/${PV}/oct/${TARGET_SYS}/.debug"
-
-EXCLUDE_FROM_WORLD = "1"
diff --git a/meta-oe/recipes-devtools/octave/octave_6.4.0.bb 
b/meta-oe/recipes-devtools/octave/octave_6.4.0.bb
new file mode 100644
index 0..a7ff84fad
--- /dev/null
+++ b/meta-oe/recipes-devtools/octave/octave_6.4.0.bb
@@ -0,0 +1,52 @@
+SUMMARY = "High-level language, primarily intended for numerical computations"
+HOMEPAGE = "http://www.gnu.org/software/octave/";
+SECTION = "math"
+
+LICENSE = "GPL-3.0-only"
+LIC_FILES_CHKSUM = "file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464"
+
+# To build, add 'FORTRAN:forcevariable = ",fortran"' to your local.conf (or use
+# meta-mortsgna as distro :)
+
+DEPENDS = " \
+gperf-native \
+libglu \
+lapack \
+fftw \
+curl \
+freetype \
+fontconfig \
+texinfo \
+pcre \
+readline \
+fltk \
+hdf5 \
+libsndfile1 \
+"
+
+inherit autotools pkgconfig texinfo gettext gtk-icon-cache mime-xdg 
features_check
+
+REQUIRED_DISTRO_FEATURES = "x11 opengl"
+
+SRC_URI = " \
+${GNU_MIRROR}/octave/${BPN}-${PV}.tar.gz \
+file://fix-blas-library-integer-size.patch \
+"
+SRC_URI[sha256sum] = 
"b48f33d4fceaf394cfbea73a8c85936d83a41739a24f7568b5b0a7b39acd"
+
+EXTRA_OECONF = " \
+--disable-java \
+--disable-docs \
+"
+
+do_compile:prepend() {
+   for folder in "liboctave/operators liboctave/numeric liboctave/array 
liboctave/util"; do
+   mkdir -p ${B}/${folder}
+   done
+}
+
+FILES:${PN} += "${datadir}/metainfo"
+FILES:${PN}-dev += "${libdir}/${BPN}/${PV}/lib*${SOLIBSDEV}"
+
+# fortran is not enabled by default
+EXCLUDE_FROM_WORLD = "1"
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#96324): 
https://lists.openembedded.org/g/openembedded-devel/message/96324
Mute This Topic: https://lists.openembedded.org/mt/90190955/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [PATCH 02/15] mousepad: upgrade 0.5.8 -> 0.5.9

2022-04-01 Thread Andreas Müller
License checksum change caused by 'polishing' [1]

[1] 
https://gitlab.xfce.org/apps/mousepad/-/commit/4eeade8df3896814b547fd9ec0640592fb7ea46c

Release notes for 0.5.9
===
- New Features:
  - Add shortcuts plugin (#70, !121)
Depends on Libxfce4ui 4.17.5 which is a dev version, so will
be excluded at configure time on most systems until Xfce 4.18
is released.
  - Add search history (!119)
  - File monitoring: Add an automatic reloading option
- Appearance Changes / Minor Improvements:
  - Move the document modification mark to the close button (#63,
!122)
  - Add mousepad styleclass for easier theming (#33)
  - Hide search bar by pressing Esc key even when not focused
  - Search: Escape selection when regex search is enabled
- Code Refactoring:
  - Plugins: Add a skeleton plugin to ease writing of new plugins
- Bug Fixes:
  - Test plugin: Sanitize memory management of sources
  - Honor GTK_CSD
  - Filter entries from `accels.scm` on non-detailed action name
  - i18n: Check for `bind_textdomain_codeset()`
  - Update Copying (#160, !120)
  - Session history: Never clear session array on exit (#162)
  - Fix broken feature "Show menubar temporarily when hidden"
  - Force encoding when reloading
  - Force encoding when it has been explicitly set by the user
  - Do not consider encoding as always user-set in the "Open"
dialog
  - Fix antonym of the word "indent" in preferences dialog (!118)
  - File monitoring: Try to filter out fake deletions
  - Add ellipsis to preferences menu entry (!117)
  - Switch all labels to title case in prefs dialog (!116)
  - Correctly restore font size after zooming when using system
font (#158)
  - Printing: Enable line wrapping by default (#156)
  - Fix a warning from GCC static analyzer
  - Search: Do not delay the search when the text changes
- Translation Updates

Signed-off-by: Andreas Müller 
---
 .../mousepad/{mousepad_0.5.8.bb => mousepad_0.5.9.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-xfce/recipes-apps/mousepad/{mousepad_0.5.8.bb => 
mousepad_0.5.9.bb} (71%)

diff --git a/meta-xfce/recipes-apps/mousepad/mousepad_0.5.8.bb 
b/meta-xfce/recipes-apps/mousepad/mousepad_0.5.9.bb
similarity index 71%
rename from meta-xfce/recipes-apps/mousepad/mousepad_0.5.8.bb
rename to meta-xfce/recipes-apps/mousepad/mousepad_0.5.9.bb
index 90a75bf5a..1be015bfb 100644
--- a/meta-xfce/recipes-apps/mousepad/mousepad_0.5.8.bb
+++ b/meta-xfce/recipes-apps/mousepad/mousepad_0.5.9.bb
@@ -1,13 +1,13 @@
 SUMMARY = "A simple text editor for Xfce"
 SECTION = "x11/application"
 LICENSE = "GPL-2.0-only"
-LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
+LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
 
 DEPENDS = "gtk+3 gtksourceview4 xfconf xfce4-dev-tools-native"
 
 inherit xfce-app gsettings mime-xdg
 
-SRC_URI[sha256sum] = 
"921ebbcfdfd5e2e56f31a5177a2d26f46c758cc972595017bca9e0a6a3c3a721"
+SRC_URI[sha256sum] = 
"f108a8c167ec5727266ab67666f10dbd60e972d56ea03944302fdabb2167f473"
 
 PACKAGECONFIG ??= ""
 PACKAGECONFIG[spell] = "--enable-plugin-gspell,--disable-plugin-gspell,gspell"
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#96325): 
https://lists.openembedded.org/g/openembedded-devel/message/96325
Mute This Topic: https://lists.openembedded.org/mt/90190956/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [PATCH 03/15] xfce4-terminal: upgrade 0.8.10 -> 1.0.0

2022-04-01 Thread Andreas Müller
Release notes for 1.0.0
===
Stable release including improvements introduced in versions 0.9.0,
0.9.1 and 0.9.2.
The Shortcuts Editor requires libxfce4ui 4.17.2 or greater.
Fixes
- Remove remaining libxfce4ui 4.16 version guards

Release notes for 0.9.2
===
0.9.2
==
DEPENDENCIES UPDATED:
- VTE: 0.51.3
- Xfce-libs: 4.16.0
General Improvements:
- Use XfceTitledDialog for `Find` (Issue #168)
- Include '\r' in unsafe-paste checks
- Update tab accelerators at runtime
- Consume events that activate accelerator callbacks (Issues #159 #153)
Shortcuts editor (depends on libxfce4ui 4.17):
- Center on the active terminal window.
- Change handling of goto-tab accelerators so they can be changed through the
  editor.
Regressions fixed:
- Menubar changes size when the window is maximized (Issue #156)
- Context Menu: Revert changes in order and contents introduced by the
transition to XfceGtkActionEntries
- Add "Show Window Borders" entry in View menu (it was missing in the last 2
  dev releases)
- Revert view menu order (Zoom entries below checkboxes)
- Fix the visibility flag of the scrollbar (Issue #161, could lead to broken
  themes)
Other:
- Replace GTimeVal with gint64
- Fix build warnings
- Update Copyright
Translation Updates:

Release notes for 0.9.1
===
This is a development release.

New features:
- Use GtkScrolledWindow for TerminalScreen and add an overlay-scrolling
preference (Issue #149)
- Support the new Shortcuts editor widget (requires libxfce4ui 4.17.2 or
greater)
- New preference: Select right click action
Enhancements:
- Improved `scrolling-on-output` behaviour.
- Unsafe Paste Dialog temporary override (Issue #106)
Fixes:
- Fix regression: File Menu missing `Close Window` entry
- Fix regression: Disable Help shortcut does not work
- Fix regression: go-to accelerators not working on startup
- Fix regression: Revert accelerator paths to maintain backwards compatibility
- Use the latest .glade file structure
Documentation:
- Change incorrect reference to ${XDG_CONFIG_DIRS} in man page (Issue #47)
- Change outdated documentation links
- Translation Updates

Release notes for 0.9.0
===
This is a development release.
- Replace the deprecated GtkActionEntries with XfceGtkActionEntries (Issue #79)
- Opening a dialog from a drop-down window closes the window (Issue #136)
- Add `Fill` background image style (MR !23).
- Improved options parsing (for both short and long forms)
- Add a menu entry to send signals to the foreground process (Issue #59)
- Fix `keep window open` preference being applied on restart.
- Rework "--tab" and "--window" behavior (Issue #13)
- Ignore unused modifiers for scroll wheel zooming
- Add alternative shortcuts for zooming (Issue #126)
- Expand scrolled window and make dialog size 70% of parent (!17)
- Support libxfce4ui XfceTitledDialog new API
Unsafe Paste Dialog:
- Update unsafe paste dialog text (Issue #73)
- Fix paste button focus
- Replace subtitle by infobar for Unsafe paste dialog
- Fix the `unsafe paste` dialog to actually paste
Cleanup:
- Update `.gitignore`, HACKING, AUTHORS, COPYRIGHTS
- Update --preferences, --tab and --window documentation
- Fix various typos
- Fix compilation warnings
- Remove unnecessary function call (!24)
Temporary changes (will be changed before the final release):
- Add a "Do not warn me again" checkbox for the "Unsafe Paste" dialog (Issue
  #129)
Translation Updates

Signed-off-by: Andreas Müller 
---
 .../{xfce4-terminal_0.8.10.bb => xfce4-terminal_1.0.0.bb} | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)
 rename meta-xfce/recipes-apps/xfce4-terminal/{xfce4-terminal_0.8.10.bb => 
xfce4-terminal_1.0.0.bb} (61%)

diff --git a/meta-xfce/recipes-apps/xfce4-terminal/xfce4-terminal_0.8.10.bb 
b/meta-xfce/recipes-apps/xfce4-terminal/xfce4-terminal_1.0.0.bb
similarity index 61%
rename from meta-xfce/recipes-apps/xfce4-terminal/xfce4-terminal_0.8.10.bb
rename to meta-xfce/recipes-apps/xfce4-terminal/xfce4-terminal_1.0.0.bb
index e9f2e4059..85b0812ed 100644
--- a/meta-xfce/recipes-apps/xfce4-terminal/xfce4-terminal_0.8.10.bb
+++ b/meta-xfce/recipes-apps/xfce4-terminal/xfce4-terminal_1.0.0.bb
@@ -5,9 +5,11 @@ DEPENDS = "glib-2.0 gtk+3 vte libxfce4ui gtk-doc-native"
 
 inherit xfce-app
 
-FILES:${PN} += "${datadir}/xfce4 \
-${datadir}/gnome-control-center"
+FILES:${PN} += " \
+${datadir}/xfce4 \
+${datadir}/gnome-control-center \
+"
 
-SRC_URI[sha256sum] = 
"7a3337c198e01262a0412384823185753ac8a0345be1d6776a7e9bbbcbf33dc7"
+SRC_URI[sha256sum] = 
"593b6a7bd9b18851e51854e075990109b7896a22713b5dd8b913b23f21db6576"
 
 RRECOMMENDS:${PN} += "vte-prompt"
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#96326): 
https://lists.openembedded.org/g/openembedded-devel/message/96326
Mute This Topic: https://lists.openembedded.org/mt/90190957/21656
Group Owner: openembedded-devel+ow...@lists.op

[oe] [PATCH 04/15] orage: upgrade 4.12.1 -> 4.16.0

2022-04-01 Thread Andreas Müller
* License checksum changed by polishing [1}
* Patch does not apply but took care for libical3 - see announcement below

[1] 
https://gitlab.xfce.org/apps/orage/-/commit/723fb89b3011db32a64986ea9ae560ae009f68fd

Release notes for 4.16.0

Note: GlobalTime and Orage panel plugin are being deprecated and
will be removed in a future release. Their features will be
integrated with or provided by existing Xfce components.
See https://gitlab.xfce.org/apps/orage/-/issues/3#note_43209

Finalize port to GTK 3, small fixes and cleanup for 4.16.0 (see MRs
for more details):
- Add new application icon (!18)
- Fix some memory leaks
- i18n: Use `xfce_textdomain()` to initialize translations
- Trace messages cleanup (!15)
- Update COPYING (Issue #10, !17)
- Use stdout and stderr correctly in main.c
- Build tz_convert only with bundled libical (!14)
- Switch to reverse-DNS naming for icon and desktop files (!13)
- D-Bus service cleanup (!12)
- Fix `orage_exec()` and its calls
- Update project files (!10)
- Fixed strptime parse issue on FreeBSD (#6, !11)
- Fix make distcheck warnning
- Fixed libpopt detection on FreeBSD (!9)
- Fix build warnings 3: Clang static analyzer (!6)
- Added 'git' to program version string and 'sed' check (!7)
- Fix build warnings 2: Compilation (!4)
- Fix build warnings 1: Autotools (!3)
- Add basic GitLab pipeline (!2)

Commits from merge request !1 (GTK 3 port), which also includes
4.15.x below:
- Reverted to c60567fe
- Fixed typos
- Added support for 'legacy' non RGBA GTK colours. Both RGBA and old colous
  are now supported.
- Replaced unused parameters '(void)' castings with GLib G_GNUC_UNUSED. Added
  GLib check to configure.
- Removed trailing whitespaces and corrected formatting
- Updated version numbers
- Aligned new appointment->alarm Sound and Procedure entry fields and removed
  unused code.
- Renamed 'OragePlugin *clock' to 'OragePlugin *plugin' or 'OragePlugin
  *orage_plugin'
- Fixed libical support, supported libical version is now >= 3.0.
- Added variable tmp only when HAVE_LIBICAL is not defined
- Dead code removal
- Removed outdated is_utc, libical uses UTC timezone. This patch allows to use
  libical 3.0
- Updated with 'Ical week start day' issue
- Fixed: "'Ical week start day' configuration parameter is ignored". Issue #5
- Changed version number to 4.15.2

- Translation Updates

Signed-off-by: Andreas Müller 
---
 ...etting-is_utc-member-of-icaltimetype.patch | 77 ---
 .../{orage_4.12.1.bb => orage_4.16.0.bb}  | 12 +--
 2 files changed, 6 insertions(+), 83 deletions(-)
 delete mode 100644 
meta-xfce/recipes-apps/orage/orage/0001-drop-setting-is_utc-member-of-icaltimetype.patch
 rename meta-xfce/recipes-apps/orage/{orage_4.12.1.bb => orage_4.16.0.bb} (57%)

diff --git 
a/meta-xfce/recipes-apps/orage/orage/0001-drop-setting-is_utc-member-of-icaltimetype.patch
 
b/meta-xfce/recipes-apps/orage/orage/0001-drop-setting-is_utc-member-of-icaltimetype.patch
deleted file mode 100644
index 517de5f92..0
--- 
a/meta-xfce/recipes-apps/orage/orage/0001-drop-setting-is_utc-member-of-icaltimetype.patch
+++ /dev/null
@@ -1,77 +0,0 @@
-From 5bdf11fe3638d279edcad911906f801751e024da Mon Sep 17 00:00:00 2001
-From: Khem Raj 
-Date: Tue, 23 Jul 2019 14:22:08 -0700
-Subject: [PATCH] drop setting is_utc member of icaltimetype
-
-This seems to be gone in libical3
-
-Upstream-Status: Pending
-
-Signed-off-by: Khem Raj 

- src/ical-code.c | 7 ---
- 1 file changed, 7 deletions(-)
-
-diff --git a/src/ical-code.c b/src/ical-code.c
-index d583140..d8e5543 100644
 a/src/ical-code.c
-+++ b/src/ical-code.c
-@@ -129,7 +129,6 @@ static struct icaltimetype ical_get_current_local_time()
- &&   (strcmp(g_par.local_timezone, "floating") != 0))
- ctime = icaltime_current_time_with_zone(local_icaltimezone);
- else { / * use floating time * /
--ctime.is_utc  = 0;
- ctime.is_date = 0;
- ctime.is_daylight = 0;
- ctime.zone= NULL;
-@@ -2579,7 +2578,6 @@ static struct icaltimetype 
count_first_alarm_time(xfical_period per
-  * when counting alarm time. */
- if (rel == ICAL_RELATED_START) {
- per.stime.is_date   = 0;
--per.stime.is_utc= 1;
- per.stime.is_daylight   = 0;
- per.stime.zone  = utc_icaltimezone;
- per.stime.hour  = 0;
-@@ -2588,7 +2586,6 @@ static struct icaltimetype 
count_first_alarm_time(xfical_period per
- }
- else {
- per.etime.is_date   = 0;
--per.etime.is_utc= 1;
- per.etime.is_daylight   = 0;
- per.etime.zone  = utc_icaltimezone;
- per.etime.hour  = 0;
-@@ -2613,7 +2610,6 @@ static struct icaltimetype count_next_alarm_time(struct 
icaltimetype start_time
- /* HACK: convert to UTC time so that we can use time arithmetic
-  * when counting alarm time. */
- start_time.is_date

[oe] [PATCH 05/15] orage: enable notify PACKAGECONFIG by default

2022-04-01 Thread Andreas Müller
Trying to eliminate libnotify does not make sense: XFCE images should contain
xfce4-notifyd which depend upon libnotify unconditionally

Signed-off-by: Andreas Müller 
---
 meta-xfce/recipes-apps/orage/orage_4.16.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-xfce/recipes-apps/orage/orage_4.16.0.bb 
b/meta-xfce/recipes-apps/orage/orage_4.16.0.bb
index f56050018..d10cdaac4 100644
--- a/meta-xfce/recipes-apps/orage/orage_4.16.0.bb
+++ b/meta-xfce/recipes-apps/orage/orage_4.16.0.bb
@@ -8,7 +8,7 @@ inherit xfce-app mime-xdg
 
 SRC_URI[sha256sum] = 
"26111a3b6a2007c82f1e0a1e0591b774a0b132f3a7f1cde53d9be661b2f11700"
 
-PACKAGECONFIG ??= ""
+PACKAGECONFIG ??= "notify"
 PACKAGECONFIG[notify] = "--enable-libnotify,--disable-libnotify,libnotify"
 
 PACKAGES =+ "xfce4-orageclock-plugin"
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#96328): 
https://lists.openembedded.org/g/openembedded-devel/message/96328
Mute This Topic: https://lists.openembedded.org/mt/90190959/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [PATCH 07/15] xarchiver: upgrade 0.5.4.14 -> 0.5.4.17

2022-04-01 Thread Andreas Müller
License checksum change was caused by polishing [1]

[1] 
https://github.com/ib/xarchiver/commit/e2c0306091d66afba9e032ae3f47bcb271c0763e

Signed-off-by: Andreas Müller 
---
 meta-xfce/recipes-apps/xarchiver/xarchiver_git.bb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta-xfce/recipes-apps/xarchiver/xarchiver_git.bb 
b/meta-xfce/recipes-apps/xarchiver/xarchiver_git.bb
index d8f0033b3..ea7e8005e 100644
--- a/meta-xfce/recipes-apps/xarchiver/xarchiver_git.bb
+++ b/meta-xfce/recipes-apps/xarchiver/xarchiver_git.bb
@@ -3,13 +3,13 @@ HOMEPAGE = "http://xarchiver.sourceforge.net";
 SECTION = "x11"
 
 LICENSE = "GPL-2.0-or-later"
-LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
+LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
 
 DEPENDS = "gtk+3 glib-2.0 xfce4-dev-tools-native intltool-native"
 
 SRC_URI = "git://github.com/ib/xarchiver.git;branch=master;protocol=https"
-SRCREV = "9ab958a4023b62b43972c55a3143ff0722bd88a6"
-PV = "0.5.4.14"
+SRCREV = "2f6c91e756678f0723305d8636e8e393c1eef32c"
+PV = "0.5.4.17"
 S = "${WORKDIR}/git"
 
 inherit gettext pkgconfig autotools gtk-icon-cache features_check mime-xdg
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#96330): 
https://lists.openembedded.org/g/openembedded-devel/message/96330
Mute This Topic: https://lists.openembedded.org/mt/90190961/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [PATCH 09/15] xfce4-cpugraph-plugin: upgrade 1.2.5 -> 1.2.6

2022-04-01 Thread Andreas Müller
Release notes for 1.2.6
===
- Fix translations not showing in the GUI
- Don't save some defaults to configuration files
- Fix visibility of the associated-command configuration
- Update configure.ac.in syntax
- Translation Updates

Signed-off-by: Andreas Müller 
---
 ...-cpugraph-plugin_1.2.5.bb => xfce4-cpugraph-plugin_1.2.6.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename 
meta-xfce/recipes-panel-plugins/cpugraph/{xfce4-cpugraph-plugin_1.2.5.bb => 
xfce4-cpugraph-plugin_1.2.6.bb} (76%)

diff --git 
a/meta-xfce/recipes-panel-plugins/cpugraph/xfce4-cpugraph-plugin_1.2.5.bb 
b/meta-xfce/recipes-panel-plugins/cpugraph/xfce4-cpugraph-plugin_1.2.6.bb
similarity index 76%
rename from 
meta-xfce/recipes-panel-plugins/cpugraph/xfce4-cpugraph-plugin_1.2.5.bb
rename to 
meta-xfce/recipes-panel-plugins/cpugraph/xfce4-cpugraph-plugin_1.2.6.bb
index 583eacb2b..a9ac08989 100644
--- a/meta-xfce/recipes-panel-plugins/cpugraph/xfce4-cpugraph-plugin_1.2.5.bb
+++ b/meta-xfce/recipes-panel-plugins/cpugraph/xfce4-cpugraph-plugin_1.2.6.bb
@@ -5,4 +5,4 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=415654f59d8fa70fe4eac2c3f86c8f5e"
 
 inherit xfce-panel-plugin
 
-SRC_URI[sha256sum] = 
"c2f6dbd7f83c79b63b83c98232c79d050e18640e82464b9ec8d3643a92c3a1b0"
+SRC_URI[sha256sum] = 
"773246f57c1824a85468d4119c17aeb07170ed1ebace8fa406c7fbcf5b47af99"
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#96332): 
https://lists.openembedded.org/g/openembedded-devel/message/96332
Mute This Topic: https://lists.openembedded.org/mt/90190963/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [PATCH 08/15] xfce4-cpufreq-plugin: upgrade 1.2.5 -> 1.2.7

2022-04-01 Thread Andreas Müller
Release notes for 1.2.7
===
- Use locale-independent floats in configuration files
- Fix translations not showing in the GUI
- Translation Updates

Release notes for 1.2.6
===
Besides the bug fixes and feature updates listed below, this release
migrates the source code from C to C++ in order to increase type-safety,
to use reference counting and containers for semi-automatic memory
management where possible, and to slightly improve source code
readability.

- Update README
- Prevent cur_freq sysfs reads from stalling plugin initialization
- Enable fractional update internals
- Prevent sysfs read latency from interfering with GUI updates
- Improve static type-safety of signal handlers
- Replace C pointers with reference-counted pointers
- Cleanup configuration files
- Bump libxfce4panel requirement from 4.12 to 4.14
- Update copyright year
- Bump required xdt-autogen version to 4.14.0
- Update configure.ac.in syntax
- Update and sort the list of authors
- Manually update %d to %zu in translations
- Translation Updates

Signed-off-by: Andreas Müller 
---
 ...e4-cpufreq-plugin_1.2.5.bb => xfce4-cpufreq-plugin_1.2.7.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-xfce/recipes-panel-plugins/cpufreq/{xfce4-cpufreq-plugin_1.2.5.bb 
=> xfce4-cpufreq-plugin_1.2.7.bb} (75%)

diff --git 
a/meta-xfce/recipes-panel-plugins/cpufreq/xfce4-cpufreq-plugin_1.2.5.bb 
b/meta-xfce/recipes-panel-plugins/cpufreq/xfce4-cpufreq-plugin_1.2.7.bb
similarity index 75%
rename from 
meta-xfce/recipes-panel-plugins/cpufreq/xfce4-cpufreq-plugin_1.2.5.bb
rename to meta-xfce/recipes-panel-plugins/cpufreq/xfce4-cpufreq-plugin_1.2.7.bb
index f3d78c11d..c98fe4a5c 100644
--- a/meta-xfce/recipes-panel-plugins/cpufreq/xfce4-cpufreq-plugin_1.2.5.bb
+++ b/meta-xfce/recipes-panel-plugins/cpufreq/xfce4-cpufreq-plugin_1.2.7.bb
@@ -5,4 +5,4 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=1f6f1c0be32491a0c8d2915607a28f36"
 
 inherit xfce-panel-plugin
 
-SRC_URI[sha256sum] = 
"f8bd728de2d33e7ab30c682716b1cac4776b9884ce48b03fd7c32c9b24b13498"
+SRC_URI[sha256sum] = 
"5ad4fb6150f51917b2a8af65926c6e4e83340827835782a14844c6b88dbcc58c"
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#96331): 
https://lists.openembedded.org/g/openembedded-devel/message/96331
Mute This Topic: https://lists.openembedded.org/mt/90190962/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [PATCH 06/15] ristretto: upgrade 0.12.1 -> 0.12.2

2022-04-01 Thread Andreas Müller
Release notes for 0.12.2

- New Features:
  - Thumbnailer: Add support for shared thumbnail repositories (#82)
  - Thumbnailer: Add thumbnail flavor support (#81)
- Performance Improvement:
  - Optimization: Use TreeModel IFace to walk the image list
  - Optimization: Add index and list link to RsttoImageListIter
  - Optimization: Switch to GQueue in RsttoImageList
- Code Refactoring:
  - Flatpak: Add lifecycle manager patch to Xfconf dependency
  - Flatpak: Add Tumbler dependency as a private service (!35)
  - Flatpak: Add pixbuf loaders
  - Refactoring: Cleanup and simplifications around thumbnail size
  - Redistribute thumbnail sizes uniformly
  - Disable debug checks in release mode
  - Cleanup: Miscellaneous
  - Cleanup: Remove unused APIs in RsttoImageList
- Bug Fixes:
  - Fix and complete file change monitoring
  - Thumbnailer: Rework queue management
  - Thumbnailer: Properly set the number of visible items
  - Take the device scale into account to limit rendering quality
  - Avoid multi-threading issue with X11 (#76)
- Translation Updates

Signed-off-by: Andreas Müller 
---
 .../ristretto/{ristretto_0.12.1.bb => ristretto_0.12.2.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-xfce/recipes-apps/ristretto/{ristretto_0.12.1.bb => 
ristretto_0.12.2.bb} (81%)

diff --git a/meta-xfce/recipes-apps/ristretto/ristretto_0.12.1.bb 
b/meta-xfce/recipes-apps/ristretto/ristretto_0.12.2.bb
similarity index 81%
rename from meta-xfce/recipes-apps/ristretto/ristretto_0.12.1.bb
rename to meta-xfce/recipes-apps/ristretto/ristretto_0.12.2.bb
index f2156a3e2..66836422e 100644
--- a/meta-xfce/recipes-apps/ristretto/ristretto_0.12.1.bb
+++ b/meta-xfce/recipes-apps/ristretto/ristretto_0.12.2.bb
@@ -10,6 +10,6 @@ inherit xfce-app mime-xdg
 
 RRECOMMENDS:${PN} += "tumbler"
 
-SRC_URI[sha256sum] = 
"13853f9ca18466a8e4788e92c7bde3388a93e8340283568f5dee1a9396ffd7ee"
+SRC_URI[sha256sum] = 
"0eee869922ec00a253dafa446c2aad2a2f98e07e1db7262e8337ce9ec2dad969"
 
 FILES:${PN} += "${datadir}/metainfo"
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#96329): 
https://lists.openembedded.org/g/openembedded-devel/message/96329
Mute This Topic: https://lists.openembedded.org/mt/90190960/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [PATCH 11/15] xfce4-notifyd: upgrade 0.6.2 -> 0.6.3

2022-04-01 Thread Andreas Müller
Release notes for 0.6.3
===
- Fix compilation warnings
- autoconf: Some updates
- Update `.gitignore`
- Remove GSourceFunc casts
- Fix missing-prototypes
- Bump required GLib version to 2.56
- Implement ISO 8601 time format to avoid post-2.56 GLib functions
- settings: Drop subtitle
- Fix multiple memory issues (!11)
- Translation Updates

Signed-off-by: Andreas Müller 
---
 .../{xfce4-notifyd_0.6.2.bb => xfce4-notifyd_0.6.3.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-xfce/recipes-apps/xfce4-notifyd/{xfce4-notifyd_0.6.2.bb => 
xfce4-notifyd_0.6.3.bb} (89%)

diff --git a/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.6.2.bb 
b/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.6.3.bb
similarity index 89%
rename from meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.6.2.bb
rename to meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.6.3.bb
index 2174d2af4..608660811 100644
--- a/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.6.2.bb
+++ b/meta-xfce/recipes-apps/xfce4-notifyd/xfce4-notifyd_0.6.3.bb
@@ -14,7 +14,7 @@ DEPENDS = " \
 
 inherit xfce-app
 
-SRC_URI[sha256sum] = 
"19ab84c6665c7819998f2269322d53f462c30963ce26042df23ae525e7d16545"
+SRC_URI[sha256sum] = 
"56a9f895aed460042f2abe09bb1a899e29b7c7d5a76ecac63dead3ced990859f"
 
 # Avoid trouble with other desktops e.g KDE which also ships dbus service named
 # org.freedesktop.Notifications
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#96334): 
https://lists.openembedded.org/g/openembedded-devel/message/96334
Mute This Topic: https://lists.openembedded.org/mt/90190965/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [PATCH 10/15] xfce4-diskperf-plugin: upgrade 2.6.3 -> 2.7.0

2022-04-01 Thread Andreas Müller
Release notes for 2.7.0
===
- Enable high-frequency tooltip updates
- Remove rounding to multiples of 5 MiB/s
- Change default maximum I/O bandwidth from 40 MiB/s to 1024 MiB/s
- Adjust tooltip spacing
- Update and sort the list of authors
- Bump required GTK+ version to 3.16
- Update README
- Reformat copyright notices
- Update configuration files
- Fix compilation warnings
- Code cleanups
- Translation Updates

Signed-off-by: Andreas Müller 
---
 ...-diskperf-plugin_2.6.3.bb => xfce4-diskperf-plugin_2.7.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename 
meta-xfce/recipes-panel-plugins/diskperf/{xfce4-diskperf-plugin_2.6.3.bb => 
xfce4-diskperf-plugin_2.7.0.bb} (81%)

diff --git 
a/meta-xfce/recipes-panel-plugins/diskperf/xfce4-diskperf-plugin_2.6.3.bb 
b/meta-xfce/recipes-panel-plugins/diskperf/xfce4-diskperf-plugin_2.7.0.bb
similarity index 81%
rename from 
meta-xfce/recipes-panel-plugins/diskperf/xfce4-diskperf-plugin_2.6.3.bb
rename to 
meta-xfce/recipes-panel-plugins/diskperf/xfce4-diskperf-plugin_2.7.0.bb
index 31eeefd6a..25a57f323 100644
--- a/meta-xfce/recipes-panel-plugins/diskperf/xfce4-diskperf-plugin_2.6.3.bb
+++ b/meta-xfce/recipes-panel-plugins/diskperf/xfce4-diskperf-plugin_2.7.0.bb
@@ -6,4 +6,4 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=d3e627798d6a60bece47aa8b3532e1f1"
 inherit xfce-panel-plugin
 
 SRC_URI = 
"http://archive.xfce.org/src/panel-plugins/${BPN}/${@'${PV}'[0:3]}/${BPN}-${PV}.tar.bz2"
-SRC_URI[sha256sum] = 
"73b1ea2deb2403287337e8521d21345fb2f88445f9030732fa28f1bfa5d51c59"
+SRC_URI[sha256sum] = 
"5909a65341a6af4d7ff3c7bb87aeac91c763f69b43ae9dc4a10668ac226fecc9"
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#96333): 
https://lists.openembedded.org/g/openembedded-devel/message/96333
Mute This Topic: https://lists.openembedded.org/mt/90190964/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [PATCH 13/15] xfce4-sensors-plugin: upgrade 1.4.2 -> 1.4.3

2022-04-01 Thread Andreas Müller
Release notes for 1.4.3
===
- Fix translations not showing in the GUI
- Use locale-independent floats in configuration files
- Translation Updates

Signed-off-by: Andreas Müller 
---
 ...e4-sensors-plugin_1.4.2.bb => xfce4-sensors-plugin_1.4.3.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-xfce/recipes-panel-plugins/sensors/{xfce4-sensors-plugin_1.4.2.bb 
=> xfce4-sensors-plugin_1.4.3.bb} (91%)

diff --git 
a/meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.4.2.bb 
b/meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.4.3.bb
similarity index 91%
rename from 
meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.4.2.bb
rename to meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.4.3.bb
index 68f3f6429..3086aa5b5 100644
--- a/meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.4.2.bb
+++ b/meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.4.3.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=b94789bed9aec03b9656a9cc5398c706"
 
 inherit xfce-panel-plugin
 
-SRC_URI[sha256sum] = 
"da90f12e6ae995bcd1c81be35479a7a9d32308c65ecd64e568ba8c9592d39fcb"
+SRC_URI[sha256sum] = 
"171c0235f70c65f0ffee587e960d9da79b284855df22130239eac26272ec06c9"
 SRC_URI += 
"file://0001-Do-not-check-for-sys-class-power_supply-we-are-cross.patch"
 
 EXTRA_OECONF = " \
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#96336): 
https://lists.openembedded.org/g/openembedded-devel/message/96336
Mute This Topic: https://lists.openembedded.org/mt/90190968/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [PATCH 12/15] xfce4-screenshooter: upgrade 1.9.9 -> 1.9.10

2022-04-01 Thread Andreas Müller
Release notes for 1.9.10

- Use symbolic icons
- Bump Xfce dependencies to 4.14
- _NET_FRAME_EXTENTS support
- Add back button to take new screenshot (!29)
- Fix Imgur upload via CLI (!26)
- Set up ScreenshotData after commandline parsing
- Fix compile warning (#62)
- Update to description and addition of donate and translate links
- Replace link to bugzilla with gitlab (!25)
- Translation Updates

Signed-off-by: Andreas Müller 
---
 ...ce4-screenshooter_1.9.9.bb => xfce4-screenshooter_1.9.10.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename 
meta-xfce/recipes-apps/xfce4-screenshooter/{xfce4-screenshooter_1.9.9.bb => 
xfce4-screenshooter_1.9.10.bb} (86%)

diff --git 
a/meta-xfce/recipes-apps/xfce4-screenshooter/xfce4-screenshooter_1.9.9.bb 
b/meta-xfce/recipes-apps/xfce4-screenshooter/xfce4-screenshooter_1.9.10.bb
similarity index 86%
rename from 
meta-xfce/recipes-apps/xfce4-screenshooter/xfce4-screenshooter_1.9.9.bb
rename to 
meta-xfce/recipes-apps/xfce4-screenshooter/xfce4-screenshooter_1.9.10.bb
index 78e084817..16e26ed6c 100644
--- a/meta-xfce/recipes-apps/xfce4-screenshooter/xfce4-screenshooter_1.9.9.bb
+++ b/meta-xfce/recipes-apps/xfce4-screenshooter/xfce4-screenshooter_1.9.10.bb
@@ -7,7 +7,7 @@ DEPENDS = "xfce4-panel libxfce4util libxfce4ui gdk-pixbuf gtk+3 
glib-2.0 libsoup
 
 inherit xfce-app
 
-SRC_URI[sha256sum] = 
"33c8aeb53fbdb82dbd7d40bca77a8affbb4116ba0993cd59474b554558e5daa4"
+SRC_URI[sha256sum] = 
"04b4178527f5b98cfe76ae427e95581067edf262a530639d332f6db9a68292d7"
 
 do_compile:prepend() {
 mkdir -p lib
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#96335): 
https://lists.openembedded.org/g/openembedded-devel/message/96335
Mute This Topic: https://lists.openembedded.org/mt/90190966/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [PATCH 14/15] Allow several components notification

2022-04-01 Thread Andreas Müller
Never understood why we disappoint users by creating packages that behave
differently from what they are used to in non-embedded distributions.

Particularly when not saving build time: xfce4-notifyd which is a center
component of XFCE and should be part of any useful image depends upon libnotify
unconditionally.

Signed-off-by: Andreas Müller 
---
 .../recipes-panel-plugins/places/xfce4-places-plugin_1.8.1.bb   | 2 +-
 .../pulseaudio/xfce4-pulseaudio-plugin_0.4.3.bb | 2 +-
 .../recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.4.3.bb | 1 +
 meta-xfce/recipes-xfce/thunar-volman/thunar-volman_4.16.0.bb| 2 +-
 meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.16.2.bb  | 1 +
 meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.16.0.bb| 2 +-
 6 files changed, 6 insertions(+), 4 deletions(-)

diff --git 
a/meta-xfce/recipes-panel-plugins/places/xfce4-places-plugin_1.8.1.bb 
b/meta-xfce/recipes-panel-plugins/places/xfce4-places-plugin_1.8.1.bb
index e2075a6d3..e8e133035 100644
--- a/meta-xfce/recipes-panel-plugins/places/xfce4-places-plugin_1.8.1.bb
+++ b/meta-xfce/recipes-panel-plugins/places/xfce4-places-plugin_1.8.1.bb
@@ -9,5 +9,5 @@ inherit xfce-panel-plugin
 SRC_URI[md5sum] = "bde92cbd08f129d517524784e5060816"
 SRC_URI[sha256sum] = 
"f211219f03c9260f624370e18c79e4176c9d35a8247158e77e5d811327610ab2"
 
-PACKAGECONFIG ??= ""
+PACKAGECONFIG ??= "notify"
 PACKAGECONFIG[notify] = 
"--enable-notifications,--disable-notifications,libnotify"
diff --git 
a/meta-xfce/recipes-panel-plugins/pulseaudio/xfce4-pulseaudio-plugin_0.4.3.bb 
b/meta-xfce/recipes-panel-plugins/pulseaudio/xfce4-pulseaudio-plugin_0.4.3.bb
index b2d61a1d2..5168efe1f 100644
--- 
a/meta-xfce/recipes-panel-plugins/pulseaudio/xfce4-pulseaudio-plugin_0.4.3.bb
+++ 
b/meta-xfce/recipes-panel-plugins/pulseaudio/xfce4-pulseaudio-plugin_0.4.3.bb
@@ -11,7 +11,7 @@ DEPENDS += "dbus-glib pulseaudio"
 SRC_URI[md5sum] = "3d86032acb9364d47e0a144350c63e1a"
 SRC_URI[sha256sum] = 
"5a518237e2137341d8ca6584938950525e20c28a0177e30ecaea3ba8e7a2615b"
 
-PACKAGECONFIG ??= ""
+PACKAGECONFIG ??= "libnotify"
 PACKAGECONFIG[libnotify] = "--enable-libnotify,--disable-libnotify,libnotify"
 
 RRECOMMENDS:${PN} = "pavucontrol"
diff --git 
a/meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.4.3.bb 
b/meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.4.3.bb
index 3086aa5b5..13933b6cd 100644
--- a/meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.4.3.bb
+++ b/meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.4.3.bb
@@ -17,6 +17,7 @@ do_configure:prepend() {
 sed -i 's:LIBSENSORS_CFLAGS=.*:LIBSENSORS_CFLAGS=-I${STAGING_INCDIR}:g' 
${S}/configure.ac
 }
 
+PACKAGECONFIG ??= "libnotify"
 PACKAGECONFIG[libsensors] = "--enable-libsensors,--disable-libsensors, 
lmsensors"
 PACKAGECONFIG[hddtemp]= "--enable-hddtemp,--disable-hddtemp, hddtemp"
 PACKAGECONFIG[netcat] = "--enable-netcat,--disable-netcat, netcat"
diff --git a/meta-xfce/recipes-xfce/thunar-volman/thunar-volman_4.16.0.bb 
b/meta-xfce/recipes-xfce/thunar-volman/thunar-volman_4.16.0.bb
index e529bc80c..4b72d3a79 100644
--- a/meta-xfce/recipes-xfce/thunar-volman/thunar-volman_4.16.0.bb
+++ b/meta-xfce/recipes-xfce/thunar-volman/thunar-volman_4.16.0.bb
@@ -10,7 +10,7 @@ REQUIRED_DISTRO_FEATURES = "x11"
 
 SRC_URI[sha256sum] = 
"d2c0e719b242b7fd3db70bc6678a2df1abf2cfaa899b775a1591a5efa08a547d"
 
-PACKAGECONFIG ??= ""
+PACKAGECONFIG ??= "notify"
 PACKAGECONFIG[notify] = 
"--enable-notifications,--disable-notifications,libnotify"
 
 RDEPENDS:${PN} = "eject"
diff --git a/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.16.2.bb 
b/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.16.2.bb
index 83b624f12..aa4265f7b 100644
--- a/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.16.2.bb
+++ b/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.16.2.bb
@@ -14,6 +14,7 @@ SRC_URI[sha256sum] = 
"4dd7cb420860535e687f673c0b5c0274e0d2fb67181281d4b85be9197d
 EXTRA_OECONF += "--enable-maintainer-mode --disable-debug"
 
 PACKAGECONFIG ??= " \
+notify \
 ${@bb.utils.contains('DISTRO_FEATURES','alsa','sound-setter', 
bb.utils.contains('DISTRO_FEATURES','pulseaudio','sound-setter','',d),d)} \
 "
 PACKAGECONFIG[notify] = "--enable-libnotify,--disable-libnotify,libnotify"
diff --git a/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.16.0.bb 
b/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.16.0.bb
index b0dc8e176..4a1ece8be 100644
--- a/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.16.0.bb
+++ b/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.16.0.bb
@@ -10,7 +10,7 @@ REQUIRED_DISTRO_FEATURES = "x11"
 
 SRC_URI[sha256sum] = 
"934ba5affecff21e62d9fac1dd50c50cd94b3a807fefa5f5bff59f3d6f155bae"
 
-PACKAGECONFIG ??= ""
+PACKAGECONFIG ??= "notify"
 PACKAGECONFIG[notify] = 
"--enable-notifications,--disable-notifications,libnotify"
 
 FILES:${PN} += "${datadir}/backgrounds"
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to 

[oe] [PATCH 15/15] Add me back to maintainers list

2022-04-01 Thread Andreas Müller
Created this layer a decade ago and love it still :)

Signed-off-by: Andreas Müller 
---
 meta-xfce/README | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-xfce/README b/meta-xfce/README
index 1e9acc471..3d6158628 100644
--- a/meta-xfce/README
+++ b/meta-xfce/README
@@ -19,3 +19,4 @@ When sending single patches, please using something like:
 git send-email -M -1 --to openembedded-devel@lists.openembedded.org 
--subject-prefix='meta-xfce][PATCH'
 
 Layer maintainer: Kai Kang 
+Layer maintainer: Andreas Müller 
-- 
2.34.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#96338): 
https://lists.openembedded.org/g/openembedded-devel/message/96338
Mute This Topic: https://lists.openembedded.org/mt/90190971/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [PATCH 15/15] Add me back to maintainers list

2022-04-01 Thread Peter Kjellerstedt
> -Original Message-
> From: openembedded-devel@lists.openembedded.org  de...@lists.openembedded.org> On Behalf Of Andreas Müller
> Sent: den 2 april 2022 00:37
> To: openembedded-devel@lists.openembedded.org
> Subject: [oe] [PATCH 15/15] Add me back to maintainers list

May I suggest changing the subject to:

meta-xfce: Add Andreas Müller back to maintainers list

as it is hard to tell who "me" is otherwise when, e.g., running 
`git log --oneline`. ;)

> 
> Created this layer a decade ago and love it still :)
> 
> Signed-off-by: Andreas Müller 
> ---
>  meta-xfce/README | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/meta-xfce/README b/meta-xfce/README
> index 1e9acc471..3d6158628 100644
> --- a/meta-xfce/README
> +++ b/meta-xfce/README
> @@ -19,3 +19,4 @@ When sending single patches, please using something like:
>  git send-email -M -1 --to openembedded-devel@lists.openembedded.org 
> --subject-prefix='meta-xfce][PATCH'
> 
>  Layer maintainer: Kai Kang 
> +Layer maintainer: Andreas Müller 
> --
> 2.34.1

//Peter


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#96339): 
https://lists.openembedded.org/g/openembedded-devel/message/96339
Mute This Topic: https://lists.openembedded.org/mt/90190971/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [PATCH 05/15] orage: enable notify PACKAGECONFIG by default

2022-04-01 Thread Khem Raj



On 4/1/22 3:36 PM, Andreas Müller wrote:

Trying to eliminate libnotify does not make sense: XFCE images should contain
xfce4-notifyd which depend upon libnotify unconditionally

Signed-off-by: Andreas Müller 
---
  meta-xfce/recipes-apps/orage/orage_4.16.0.bb | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-xfce/recipes-apps/orage/orage_4.16.0.bb 
b/meta-xfce/recipes-apps/orage/orage_4.16.0.bb
index f56050018..d10cdaac4 100644
--- a/meta-xfce/recipes-apps/orage/orage_4.16.0.bb
+++ b/meta-xfce/recipes-apps/orage/orage_4.16.0.bb
@@ -8,7 +8,7 @@ inherit xfce-app mime-xdg
  
  SRC_URI[sha256sum] = "26111a3b6a2007c82f1e0a1e0591b774a0b132f3a7f1cde53d9be661b2f11700"
  
-PACKAGECONFIG ??= ""

+PACKAGECONFIG ??= "notify"


If it is must have then does it make sense to have it as a packageconfig ?


  PACKAGECONFIG[notify] = "--enable-libnotify,--disable-libnotify,libnotify"
  
  PACKAGES =+ "xfce4-orageclock-plugin"







-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#96340): 
https://lists.openembedded.org/g/openembedded-devel/message/96340
Mute This Topic: https://lists.openembedded.org/mt/90190959/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [oe] [PATCH 15/15] Add me back to maintainers list

2022-04-01 Thread Khem Raj



On 4/1/22 5:07 PM, Peter Kjellerstedt wrote:

-Original Message-
From: openembedded-devel@lists.openembedded.org  On Behalf Of Andreas Müller
Sent: den 2 april 2022 00:37
To: openembedded-devel@lists.openembedded.org
Subject: [oe] [PATCH 15/15] Add me back to maintainers list


May I suggest changing the subject to:

meta-xfce: Add Andreas Müller back to maintainers list

as it is hard to tell who "me" is otherwise when, e.g., running
`git log --oneline`. ;)


right, have taken care of this while staging.





Created this layer a decade ago and love it still :)

Signed-off-by: Andreas Müller 
---
  meta-xfce/README | 1 +
  1 file changed, 1 insertion(+)

diff --git a/meta-xfce/README b/meta-xfce/README
index 1e9acc471..3d6158628 100644
--- a/meta-xfce/README
+++ b/meta-xfce/README
@@ -19,3 +19,4 @@ When sending single patches, please using something like:
  git send-email -M -1 --to openembedded-devel@lists.openembedded.org 
--subject-prefix='meta-xfce][PATCH'

  Layer maintainer: Kai Kang 
+Layer maintainer: Andreas Müller 
--
2.34.1


//Peter






-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#96341): 
https://lists.openembedded.org/g/openembedded-devel/message/96341
Mute This Topic: https://lists.openembedded.org/mt/90190971/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [meta-oe][PATCH] wxwidgets: Fix checking for PACKAGECONFIG and DISTRO_FEATURES

2022-04-01 Thread Robert Yang
The PACKAGECONFIG depends on DISTRO_FEATURES, not DISTRO_FEATURES depends on
PACKAGECONFIG. And the REQUIRED_DISTRO_FEATURES is not needed since it can work
with gtk or x11.

Fixed when x11 is not in DISTRO_FEATURES:
$ bitbake wxwidgets
ERROR: Nothing PROVIDES 'wxwidgets'
wxwidgets was skipped: missing required distro feature 'x11' (not in 
DISTRO_FEATURES)

Signed-off-by: Robert Yang 
---
 meta-oe/recipes-extended/wxwidgets/wxwidgets_3.1.5.bb | 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/meta-oe/recipes-extended/wxwidgets/wxwidgets_3.1.5.bb 
b/meta-oe/recipes-extended/wxwidgets/wxwidgets_3.1.5.bb
index f9349b02a..b10742eac 100644
--- a/meta-oe/recipes-extended/wxwidgets/wxwidgets_3.1.5.bb
+++ b/meta-oe/recipes-extended/wxwidgets/wxwidgets_3.1.5.bb
@@ -10,10 +10,7 @@ LICENSE = "WXwindows"
 LIC_FILES_CHKSUM = 
"file://docs/licence.txt;md5=981f50a934828620b08f44d75db557c6"
 
 inherit ${@bb.utils.contains('PACKAGECONFIG', 'qt', 'cmake_qt5', 'cmake', d)}
-inherit features_check lib_package binconfig pkgconfig
-
-# All toolkit-configs except 'no_gui' require x11 explicitly (see 
toolkit.cmake)
-REQUIRED_DISTRO_FEATURES = "${@bb.utils.contains('PACKAGECONFIG', 'no_gui', 
'', 'x11', d)}"
+inherit lib_package binconfig pkgconfig
 
 DEPENDS += " \
 jpeg \
@@ -46,7 +43,11 @@ EXTRA_OECMAKE:append:libc-musl = " \
 -DHAVE_LOCALE_T=OFF \
 "
 
-PACKAGECONFIG ?= "gtk ${@bb.utils.filter('DISTRO_FEATURES', 'opengl', d)}"
+# All toolkit-configs except 'no_gui' require x11 explicitly (see 
toolkit.cmake)
+PACKAGECONFIG ?= "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'gtk', 
'no_gui', d)} \
+${@bb.utils.filter('DISTRO_FEATURES', 'opengl', d)} \
+"
+
 PACKAGECONFIG:remove:class-native = "opengl"
 
 # Note on toolkit-PACKAGECONFIGs: select exactly one of 'no_gui' / 'gtk' / 'qt'
-- 
2.31.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#96342): 
https://lists.openembedded.org/g/openembedded-devel/message/96342
Mute This Topic: https://lists.openembedded.org/mt/90194835/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe][meta-networking][PATCH] blueman: fix python site-packages installation issue

2022-04-01 Thread Chen Qi
The blueman is relying on host python to determine the target
python site-packages directory which is not correct. Add a new
option to fix this issue.

Signed-off-by: Chen Qi 
---
 ...01-meson-add-pythoninstalldir-option.patch | 49 +++
 .../blueman/blueman_2.2.4.bb  |  3 +-
 2 files changed, 51 insertions(+), 1 deletion(-)
 create mode 100644 
meta-networking/recipes-connectivity/blueman/blueman/0001-meson-add-pythoninstalldir-option.patch

diff --git 
a/meta-networking/recipes-connectivity/blueman/blueman/0001-meson-add-pythoninstalldir-option.patch
 
b/meta-networking/recipes-connectivity/blueman/blueman/0001-meson-add-pythoninstalldir-option.patch
new file mode 100644
index 0..a52821915
--- /dev/null
+++ 
b/meta-networking/recipes-connectivity/blueman/blueman/0001-meson-add-pythoninstalldir-option.patch
@@ -0,0 +1,49 @@
+From 37f24a9bd62f0a8f3e37eaddd33f2f0c9d3aaa0a Mon Sep 17 00:00:00 2001
+From: Chen Qi 
+Date: Fri, 1 Apr 2022 23:12:17 -0700
+Subject: [PATCH] meson: add pythoninstalldir option
+
+In case of cross build, using host python to determine the python
+site-packages directory for target is not feasible, add a new option
+pythoninstalldir to fix the issue.
+
+Upstream-Status: Submitted 
[https://github.com/blueman-project/blueman/pull/1699]
+
+Signed-off-by: Chen Qi 
+---
+ meson.build   | 7 ++-
+ meson_options.txt | 1 +
+ 2 files changed, 7 insertions(+), 1 deletion(-)
+
+diff --git a/meson.build b/meson.build
+index bc990cd..a37aacd 100644
+--- a/meson.build
 b/meson.build
+@@ -26,7 +26,12 @@ pkgdatadir = join_paths([prefix, get_option('datadir'), 
package_name])
+ bindir = join_paths([prefix, get_option('bindir')])
+ libexecdir = join_paths([prefix, get_option('libexecdir')])
+ schemadir = join_paths([datadir, 'glib-2.0', 'schemas'])
+-pythondir = join_paths([prefix, python.sysconfig_path('purelib')])
++pythoninstalldir = get_option('pythoninstalldir')
++if pythoninstalldir != ''
++pythondir = join_paths([prefix, pythoninstalldir])
++else
++pythondir = join_paths([prefix, python.sysconfig_path('purelib')])
++endif
+ 
+ if get_option('policykit')
+ have_polkit = 'True'
+diff --git a/meson_options.txt b/meson_options.txt
+index b3e939f..96acbbc 100644
+--- a/meson_options.txt
 b/meson_options.txt
+@@ -5,5 +5,6 @@ option('pulseaudio', type: 'boolean', value: true, 
description: 'Enable PulseAud
+ option('appindicator', type: 'boolean', value: true, description: 'Enable 
Libappindicator support')
+ option('systemdsystemunitdir', type: 'string', description: 'Path to systemd 
system unit dir relative to ${prefix}')
+ option('systemduserunitdir', type: 'string', description: 'Path to systemd 
user unit dir relative to ${prefix}')
++option('pythoninstalldir', type: 'string', description: 'Path to python 
site-packages dir relative to ${prefix}')
+ option('sendto-plugins', type: 'array', choices: ['Caja', 'Nemo', 
'Nautilus'], value: ['Caja', 'Nemo', 'Nautilus'], description: 'Install sendto 
plugins for various filemanagers')
+ option('thunar-sendto', type: 'boolean', value: true, description: 'Install 
Thunar sendto plugin')
+-- 
+2.33.0
+
diff --git a/meta-networking/recipes-connectivity/blueman/blueman_2.2.4.bb 
b/meta-networking/recipes-connectivity/blueman/blueman_2.2.4.bb
index ea06ee67f..d5aeceeb4 100644
--- a/meta-networking/recipes-connectivity/blueman/blueman_2.2.4.bb
+++ b/meta-networking/recipes-connectivity/blueman/blueman_2.2.4.bb
@@ -10,10 +10,11 @@ SRC_URI = " \
 
https://github.com/blueman-project/blueman/releases/download/${PV}/blueman-${PV}.tar.xz
 \
 file://0001-Search-for-cython3.patch \
 file://0002-fix-fail-to-enable-bluetooth.patch \
+file://0001-meson-add-pythoninstalldir-option.patch \
 "
 SRC_URI[sha256sum] = 
"55d639feeda0b43b18a659e65985213a54b47dcb1348f3b4effb5238db242602"
 
-EXTRA_OEMESON = "-Druntime_deps_check=false -Dappindicator=false"
+EXTRA_OEMESON = "-Druntime_deps_check=false -Dappindicator=false 
-Dpythoninstalldir=${@noprefix('PYTHON_SITEPACKAGES_DIR', d)}"
 
 SYSTEMD_SERVICE:${PN} = "${BPN}-mechanism.service"
 SYSTEMD_AUTO_ENABLE:${PN} = "disable"
-- 
2.33.0


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#96343): 
https://lists.openembedded.org/g/openembedded-devel/message/96343
Mute This Topic: https://lists.openembedded.org/mt/90196648/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[oe] [meta-oe][PATCH] wxwidgets: git -> gitsm to fix build when no x11

2022-04-01 Thread Robert Yang
Fixed when x11 is not in DISTRO_FEATURES:
$ bitbake wxwidgets
CMake Error at build/cmake/functions.cmake:542 (add_library):
  Cannot find source file:
/path/to/core2-64-wrs-linux/wxwidgets/3.1.5-r0/git/src/expat/expat/lib/xmlparse.c

Signed-off-by: Robert Yang 
---
 meta-oe/recipes-extended/wxwidgets/wxwidgets_3.1.5.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-extended/wxwidgets/wxwidgets_3.1.5.bb 
b/meta-oe/recipes-extended/wxwidgets/wxwidgets_3.1.5.bb
index b10742eac..e82143040 100644
--- a/meta-oe/recipes-extended/wxwidgets/wxwidgets_3.1.5.bb
+++ b/meta-oe/recipes-extended/wxwidgets/wxwidgets_3.1.5.bb
@@ -19,7 +19,7 @@ DEPENDS += " \
 "
 
 SRC_URI = " \
-git://github.com/wxWidgets/wxWidgets.git;branch=master;protocol=https \
+gitsm://github.com/wxWidgets/wxWidgets.git;branch=master;protocol=https \
 file://0001-wx-config.in-Disable-cross-magic-it-does-not-work-fo.patch \
 file://fix-libdir-for-multilib.patch \
 file://respect-DESTDIR-when-create-link.patch \
-- 
2.31.1


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#96344): 
https://lists.openembedded.org/g/openembedded-devel/message/96344
Mute This Topic: https://lists.openembedded.org/mt/90196921/21656
Group Owner: openembedded-devel+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-