All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0
@ 2021-01-06 15:16 Andreas Müller
  2021-01-06 15:16 ` [PATCH 02/28] libxfce4util: " Andreas Müller
                   ` (26 more replies)
  0 siblings, 27 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:16 UTC (permalink / raw)
  To: openembedded-devel

Release notes for 4.16.0
========================
- Bump glib to 2.50 based on xfce4.16 roadmap
- Do not process @LINGUAS@ at xdt-autogen stage
- Fail xfce-build container generation if there is any error
- helpers: Prefer xfce-build over xfce-test (Fixes #38)
- helpers: Add new helper xfce-open-gitlab
- helpers: Add helper to locally run xfce-build
- helpers: Add xfce-build 'pull' argument
- xfce-build: Add Thunar to container (Fixes #40)
- Disable CFLAGS override when building CI container
- use strict CFLAGS to catch common mistakes in ci pipeline
- Add xvfb on xfce-build

Release notes for 4.15.1
========================
[Please note that this is a development release.]

Various improvements to the helpers introduced in 4.15.0,
cleanup of xdt-autogen code (thanks to Gaël Bonithon), various fixes for
our CI.

- get-translations: Fix line wrapping
- xdt-autogen: Various small improvements
- xdt-autogen: Properly handle whitespaces in filenames
- xdt-autogen: Use sed instead of tr to replace strings
- Updates README.md
- xfce-build: Add libclutter-1.0-dev for xfdashboard build
- Update .gitignore
- helpers: Use blank line for tags message
- helpers: Reuse release notes from NEWS for tag message
- helpers: Simplify xfce-update-news
- helpers: Do not strip NEWS blank line at EOF
- helpers: Install xfce-do-release
- xfce-build: Add depend for mousepad (Fixes #37)
- helpers: Add do-release helper and Readme
- xfce-build: Install python3 version of distutils-extra
- helpers: Make get-translations executable
- get-translations: Remove last comma
- get-translations: Correctly get locale from commit messages
- xfce-build: Replace build-dep with package names

Release notes for 4.15.0
========================
[Please note that this is a development release.]

- New macro XDT_VERSION_INIT(SEMVER[, TAG])

This macro takes care of setting up the version numbering.
It will define the following macros based on SEMVER and TAG:

   - xdt_version
   - xdt_version_major
   - xdt_version_minor
   - xdt_version_micro
   - xdt_version_tag
   - xdt_version_build
   - xdt_debug_default

If TAG isn't specified, the xdt_version_tag and xdt_version_git
will be empty and xdt_debug_default will be set to "minimum",
otherwise the xdt_version_build will contain a git hash and
xdt_debug_default will be set to "yes"

Example usage:

  XDT_VERSION_INIT([4.15.3],[git])
  AC_INIT([xfce4-someproject], [xdt_version()])
  ...
  XDT_FEATURE_DEBUG([xdt_debug_default])

- XDT_I18N macro will now automatically find the linguas if none are
specified during the autoconf run.

- Install m4 macros in default search dir. This makes autoconf find the
macros by default.

By setting version via XDT_VERSION_INIT and using XDT_I18N without
arguments,
this is no longer necessary to use a separate configure.ac.in and a
plain configure.ac can be used !
A big thank to Natanael Copa (ncopa) for his work on this part !

- xfce4-dev-tools now also handle the CI (docker container,
.gitlab-ci.yml templates files etc) on our new gitlab instance. A merge
request or a push to master to any of our projects automatically trigger
a build. This will help us to catch errors quicker and have better
quality. Thanks to Jason Yavorska and Simon Steinbeiss.

- New helpers are also available (xfce-get-release-notes,
xfce-get-translations, xfce-update-news) to help our maintainers to do
releases ! Thanks Simon again.

- Use datarootdir instead of datadir
- xdt-autogen: explicitly set search path for m4 macros
- Install the xfce-helpers
- Add two new helpers to help releasers
- Install m4 macros into default $datadir/aclocal
- Update README for new gitlab urls
- xdt-autogen: Improve and simplify linguas detection
- Let XDT_I18N automatically find the po/*.po as default
- Let configure generate the xdt-autogen script
- Implement XDT_VERSION_INIT
- Add manpage and tests to xdt-csource
- Add xfce4-dev-tools build in addition to container build
- Check BEFORE_SHA along with changes to .po files
- gitlabci: Ensure to run autogen in distcheck stage
- Switch to "foreign" mode for automake
- Add CI templates notes
- Update README with explanation of Dockerfile
- Fix whitespace error
- Add helper script to get all translation-updates
- Integrate xfce-build container build/creation

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 ...0001-Run-native-xdt-csource-on-tests.patch | 33 +++++++++++++++++++
 ...ls_4.14.0.bb => xfce4-dev-tools_4.16.0.bb} |  6 ++--
 2 files changed, 37 insertions(+), 2 deletions(-)
 create mode 100644 meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools/0001-Run-native-xdt-csource-on-tests.patch
 rename meta-xfce/recipes-xfce/xfce4-dev-tools/{xfce4-dev-tools_4.14.0.bb => xfce4-dev-tools_4.16.0.bb} (71%)

diff --git a/meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools/0001-Run-native-xdt-csource-on-tests.patch b/meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools/0001-Run-native-xdt-csource-on-tests.patch
new file mode 100644
index 000000000..74b1679ab
--- /dev/null
+++ b/meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools/0001-Run-native-xdt-csource-on-tests.patch
@@ -0,0 +1,33 @@
+From b2fcd5c09ee6b4ad03f93ee5e1dd32f2f062cf07 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
+Date: Sun, 3 Jan 2021 15:36:07 +0100
+Subject: [PATCH] Run native xdt-csource on tests
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Tests cannot be opted out so let them pass.
+
+Upstream-Status: Inappropriate [OE specific]
+
+Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
+---
+ tests/Makefile.am | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/tests/Makefile.am b/tests/Makefile.am
+index fa0832c..7c46bbf 100644
+--- a/tests/Makefile.am
++++ b/tests/Makefile.am
+@@ -26,7 +26,7 @@ DISTCLEANFILES = test-xdt-csource-data.c
+ BUILT_SOURCES = test-xdt-csource-data.c
+ 
+ test-xdt-csource-data.c: Makefile $(srcdir)/data/data.bin $(srcdir)/data/data.txt
+-	$(top_builddir)/xdt-csource/xdt-csource --extern --build-list data_bin $(srcdir)/data/data.bin data_txt $(srcdir)/data/data.txt > test-xdt-csource-data.c
++	xdt-csource --extern --build-list data_bin $(srcdir)/data/data.bin data_txt $(srcdir)/data/data.txt > test-xdt-csource-data.c
+ 
+ clean-local:
+ 	rm -f *.core core core.*
+-- 
+2.26.2
+
diff --git a/meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools_4.14.0.bb b/meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools_4.16.0.bb
similarity index 71%
rename from meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools_4.14.0.bb
rename to meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools_4.16.0.bb
index 0b1196619..143a0a5e7 100644
--- a/meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools_4.14.0.bb
+++ b/meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools_4.16.0.bb
@@ -3,15 +3,17 @@ HOMEPAGE = "http://www.xfce.org"
 SECTION = "x11/libs"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=9ac2e7cff1ddaf48b6eab6028f23ef88"
+
 DEPENDS = "glib-2.0"
+DEPENDS_append_class-target = " ${BPN}-native"
 
 inherit autotools pkgconfig
 
 BBCLASSEXTEND = "native"
 
 SRC_URI = "http://archive.xfce.org/src/xfce/${BPN}/${@'${PV}'[0:4]}/${BPN}-${PV}.tar.bz2"
-SRC_URI[md5sum] = "5f8fc8af73819c08d9e4c26a3ac457e7"
-SRC_URI[sha256sum] = "2c9eb8e0fe23e47dc31411a93b683fd1b7a49140e9163f0aab9e94a3d8a0b5fd"
+SRC_URI_append_class-target = " file://0001-Run-native-xdt-csource-on-tests.patch"
+SRC_URI[sha256sum] = "f50b3070e66f3ebdf331744dd1ec5e1af5de333965d491e15ce05545e8eb4f04"
 
 do_install_append() {
     install -d ${D}${datadir}/aclocal
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 02/28] libxfce4util: upgrade 4.14.0 -> 4.16.0
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
@ 2021-01-06 15:16 ` Andreas Müller
  2021-01-06 15:16 ` [PATCH 03/28] xfconf: upgrade 4.14.3 " Andreas Müller
                   ` (25 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:16 UTC (permalink / raw)
  To: openembedded-devel

Release notes for 4.16.0
========================
- Bump xfce_version_string to 4.16
- Properly handle URI schemes other than "file"

Release notes for 4.15.6
========================
[Please note that this is a development release.]
- Update configure.ac.in syntax
- Namespace of the gir needs capital first letter
- Bump GLib (and gio, gthread, etc) minimum to 2.50.0
- Remove typedef already defined by G_DECLARE_FINAL_TYPE macro
  (Fixes #4)

Release notes for 4.15.5
========================
[Please note that this is a development release.]
This is an emergency release to account for the lack of version bump to
4.16pre2 in 4.15.4.

- Bump Xfce version to 4.16pre2
- Add README.md to EXTRA_DIST

Release notes for 4.15.4
========================
This is a development release of libxfce4util aiming the upcoming
release of Xfce 4.16.

- Create README.md
- Translation Updates:
  Albanian, Armenian, Hebrew, Slovak, Uyghur

Release notes for 4.15.3
========================
[Please note that this is a development release.]

- Version bump in preparation of 4.16pre1

Release notes for 4.15.2
========================
[Please note that this is a development release.]

- Complete the field codes expansion

Release notes for 4.15.1
========================
[Please note that this is a development release.]

- Add field codes expansion and related utilities (code moved from
  garcon)
- docs: Show the "Miscellaneous Utilities" section
- Add basic GitLab pipeline
- Translation Updates:
  Albanian, Armenian (Armenia), Asturian, Belarusian, Hindi, Italian,
  Spanish, Uzbek

Release notes for 4.15.0
========================
- Bump the Xfce version to 4.15
- Translation Updates:
  Albanian, Galician, Spanish

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../{libxfce4util_4.14.0.bb => libxfce4util_4.16.0.bb}         | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-xfce/recipes-xfce/libxfce4util/{libxfce4util_4.14.0.bb => libxfce4util_4.16.0.bb} (64%)

diff --git a/meta-xfce/recipes-xfce/libxfce4util/libxfce4util_4.14.0.bb b/meta-xfce/recipes-xfce/libxfce4util/libxfce4util_4.16.0.bb
similarity index 64%
rename from meta-xfce/recipes-xfce/libxfce4util/libxfce4util_4.14.0.bb
rename to meta-xfce/recipes-xfce/libxfce4util/libxfce4util_4.16.0.bb
index 1bb5007fd..1a0b7183e 100644
--- a/meta-xfce/recipes-xfce/libxfce4util/libxfce4util_4.14.0.bb
+++ b/meta-xfce/recipes-xfce/libxfce4util/libxfce4util_4.16.0.bb
@@ -6,5 +6,4 @@ DEPENDS = "intltool-native xfce4-dev-tools-native glib-2.0"
 
 inherit xfce gtk-doc gobject-introspection
 
-SRC_URI[md5sum] = "46f44e36acc3abf1a5ba814c22a773cb"
-SRC_URI[sha256sum] = "32ad79b7992ec3fd863e8ff2f03eebda8740363ef9d7d910a35963ac1c1a6324"
+SRC_URI[sha256sum] = "60598d745d1fc81ff5ad3cecc3a8d1b85990dd22023e7743f55abd87d8b55b83"
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 03/28] xfconf: upgrade 4.14.3 -> 4.16.0
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
  2021-01-06 15:16 ` [PATCH 02/28] libxfce4util: " Andreas Müller
@ 2021-01-06 15:16 ` Andreas Müller
  2021-01-06 15:16 ` [PATCH 04/28] libxfce4ui: upgrade 4.14.1 " Andreas Müller
                   ` (24 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:16 UTC (permalink / raw)
  To: openembedded-devel

Release notes for 4.16.0
========================
- Don't use shebang for bash completion file
- Remove GLIB_CHECK_VERSION IFDEFs which are obsolete after glib bump
- bump glib (and gio, gthread, etc) minimum to 2.50.0
- remove last traces of xfconf-perl
- Fix make distcheck and enable it on gitlab CI
- Add README.md to EXTRA_DIST

Release notes for 4.15.1
========================
[Please note that this is a development release.]

- Fix stray double-quote in bash-completion PKG_CONFIG invocation
- Disable parallelism on all tests
- Adds new README.md and updates AM_INIT_AUTOMAKE
- xfconf-cache: Fix access to freed data (#16)
- Translation Updates: oc, he, hu, hy_AM, lt, sk, sq, ug, tr.

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../xfconf/{xfconf_4.14.3.bb => xfconf_4.16.0.bb}            | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
 rename meta-xfce/recipes-xfce/xfconf/{xfconf_4.14.3.bb => xfconf_4.16.0.bb} (77%)

diff --git a/meta-xfce/recipes-xfce/xfconf/xfconf_4.14.3.bb b/meta-xfce/recipes-xfce/xfconf/xfconf_4.16.0.bb
similarity index 77%
rename from meta-xfce/recipes-xfce/xfconf/xfconf_4.14.3.bb
rename to meta-xfce/recipes-xfce/xfconf/xfconf_4.16.0.bb
index 792f8b160..9b341bb27 100644
--- a/meta-xfce/recipes-xfce/xfconf/xfconf_4.14.3.bb
+++ b/meta-xfce/recipes-xfce/xfconf/xfconf_4.16.0.bb
@@ -4,12 +4,11 @@ LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
 DEPENDS = "libxfce4util perl intltool-native xfce4-dev-tools-native"
 
-inherit xfce gtk-doc gobject-introspection
+inherit xfce gtk-doc gobject-introspection bash-completion
 
 EXTRA_OECONF += "PERL=${STAGING_DIR_TARGET}/usr/bin/perl"
 
-SRC_URI[md5sum] = "25c32ed08a43e81f7900c03601dffc02"
-SRC_URI[sha256sum] = "589052a0efc6151c5fb5f438da463502a4fd91848cae7b9376d417be4c5a0c02"
+SRC_URI[sha256sum] = "652a119007c67d9ba6c0bc7a740c923d33f32d03dc76dfc7ba682584e72a5425"
 
 FILES_${PN} += "${libdir}/xfce4/xfconf/xfconfd \
                 ${libdir}/gio/modules/libxfconfgsettingsbackend.so \
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 04/28] libxfce4ui: upgrade 4.14.1 -> 4.16.0
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
  2021-01-06 15:16 ` [PATCH 02/28] libxfce4util: " Andreas Müller
  2021-01-06 15:16 ` [PATCH 03/28] xfconf: upgrade 4.14.3 " Andreas Müller
@ 2021-01-06 15:16 ` Andreas Müller
  2021-01-08 19:53   ` [oe] " Khem Raj
  2021-01-06 15:16 ` [PATCH 05/28] exo: upgrade 0.12.11 " Andreas Müller
                   ` (23 subsequent siblings)
  26 siblings, 1 reply; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:16 UTC (permalink / raw)
  To: openembedded-devel

GTK2 libs are gone so extra GRK2/GTK3 packages can go

Release notes for 4.16.0
========================
- about: Harmonize capitalisation
- Update credits for Xfce 4.16
- Translation Updates:
  Basque, Bulgarian, Catalan, Chinese (Taiwan), Dutch, Galician,
  Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese
  (Brazil), Serbian

Release notes for 4.15.7
========================
[Please note that this is a development release.]
- libxfce4ui now needs libxfce4util >= 4.15.6
- Update configure.ac.in syntax
- Namespace of the gir needs capital first letter
- Remove hardcoded translators list
- Bump libepoxy version to 1.2
- Translation Updates:
  Portuguese (Brazil), Slovenian, Swedish

Release notes for 4.15.6
========================
[Please note that this is a development release.]
- Introduce xfce_spawn and xfce_spawn_command_line
  in favor and instead of xfce_spawn_no_child
- Bump GLib (and gio, gthread, etc) minimum to 2.50.0
- about: Support multiple GPUs and print GPU memory size
- about: Drop window subtitle
- Always perform sanity check
- Avoid checking for epoxy if libgtop is disabled
- XfceTitledDialog: Fix erroneous check (Fixes #30)
- No startup notification in Wayland to prevent crash (Issue #17)
- Translation Updates:
  Chinese (China), Chinese (Taiwan), Estonian, French, German, Hebrew,
  Indonesian, Italian, Japanese, Lithuanian, Norwegian Bokmål,
  Portuguese, Portuguese (Brazil), Russian, Serbian, Spanish, Swedish,
  Turkish

Release notes for 4.15.5
========================
[Please note that this is a development release.]
- Add new API xfce_spawn_no_child (!8):
  Launch processes re-parenting them to init vs. as children
- about: Fix icon names
- about: Display userspace bitness if it differs from OS kernel bitness
- about: Print GPU name in system info
- about: Use more understandable arch labels (Issue #27)
- Improve xfce_icon_name API
- No startup notification in wayland to prevent crash (Issue #17)
- Add missing docstring
- Fix typos
- Add README.md to EXTRA_DIST
- Translation Updates:
  Catalan, Chinese (China), Danish, Galician, German, Italian,
  Lithuanian, Turkish

Release notes for 4.15.4
========================
This is a development release of libxfce4ui aiming the upcoming release
of Xfce 4.16.

- Avoid redundant key re-grabbing
- Adds new README.md and updates AM_INIT_AUTOMAKE
- Silence compiler warnings (Fixes #25)
- AC_CONFIG_MACRO_DIR → AC_CONFIG_MACRO_DIRS
- Add default shortcuts for tiling (Fixes #4)
- Avoid shortening the keycodes GArray while walking it.
- about: Revamp About Xfce tab
- about: More icon name fixes
- Add more logo icons and new about icon
- Update deprecated icon names
- keyboard-shortcuts: Improve UI for setting shortcuts
- shortcut-dialog: Add label to clear button
- shortcut-dialog: Port to new XfceTitledDialog API
- shortcut-dialog: Only grab keyboard
- Always return GTK_RESPONSE_OK for accepted shortcut keys (fixes #20)
- Translation Updates:
  Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque,
  Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese
  (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch,
  Eastern Armenian, English (Australia), English (United Kingdom),
  Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew,
  Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese,
  Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål,
  Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese,
  Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian,
  Spanish, Swedish, Telugu, Thai, Turkish, Ukrainian, Uyghur, Welsh

Release notes for 4.15.3
========================
[Please note that this is a development release.]

- Update bug URLs to point to gitlab.xfce
- xfce-about: Hide empty email address tags (Fixes #12)
- Remove translator email address as per request (Fixes #11)
- Add missing translator "Hugo Carvalho" to xfce4-about (issue #18)
- Replace deprecated 'gdk_keyboard_ungrab' function (Fixes #15)
- shortcuts-grabber: Correctly ungrab keys on updating shortcuts (Fixes
  #16)
- Add basic GitLab pipeline
- Allow more granular control over menu item accelerators.
  - No automatic accelerator activation formenu items
  - Added 'gtk_menu_item_set_accel_label'
  - Added 'xfce_gtk_accel_group_connect_action_entries'
- renamed 'xfce_gtk_accel_group_append' to
  'xfce_gtk_accel_map_add_entries' and modified internals accordingly.
  No automatic add to an accel_group any more, since this may lead to
  double-activation in some cases.
- Add "xfce_gtk_accel_group_disconnect_action_entries" to be able to
  revert "xfce_gtk_accel_group_connect_action_entries"
- Add title to xfce_dialog_confirm_close_tabs
- Add new methods to libxfce4ui.symbols. Followup of
  231e57daccb5946379f413ed440629c32025f6f3
- Translation Updates:
  Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque,
  Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese
  (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch,
  Eastern Armenian, English (Australia), English (United Kingdom),
  Estonian, Finnish, French, Galician, German, Greek, Hebrew,
  Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese,
  Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål,
  Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese,
  Portuguese (Brazil), Romanian, Russian, Serbian, Slovak,
  Slovenian, Spanish, Swedish, Telugu, Thai, Turkish,
  Uighur, Ukrainian, Welsh

Release notes for 4.15.2
========================
[Please note that this is a development release.]

- Introduced 'XfceGtkActionEntry' as replacement for the deprecated
  'GtkAction', 'GtkActionEntry' in order to keep simple menu creation.
  This includes various support methods, like:
  'xfce_gtk_translate_action_entries' to to translate a list of
     XfceGtkActionEntrys
  'xfce_gtk_accel_group_append' to register the provided
     accelerators of the entries
  'xfce_gtk_get_action_entry_by_id' to find a single
     XfceGtkActionEntry, e.g. by using a enumeration
  'xfce_gtk_***_new_from_action_entry' to create the specific
     menu- or tool-items from an XfceGtkActionEntry
- Add a widget for filename input (Bug #16542)
- Enabled doc generation for XfceGtkActionEntry and related
  methods
- Enabled doc generation for new widget 'xfce-filename-input'
- Switch Ctrl+Alt+Del to xfce4-session-logout (Bug #11979)
- Add more default keyboard shortcuts (Bug #16470)
- shortcuts: Replace xfrun4 by xfce4-appfinder
- shortcuts: Also map Homepage to browser
- shortcuts: Remove calculator shortcut
- Update gitignore
- Translation Updates:
  Albanian, Basque, Belarusian, Chinese (China), Chinese (Taiwan),
  Croatian, Danish, Dutch, French, Galician, German, Hebrew, Hungarian,
  Kazakh, Malay, Norwegian Bokmål, Portuguese, Portuguese (Brazil),
  Russian, Serbian, Slovenian, Swedish, Ukrainian

Release notes for 4.15.1
========================
This release introduces the following features:
- Switch XfceTitledDialog to headerbar/CSD layout
- Use GtkMessageDialog as base class for Xfce Dialogs
- Add two new functions to search for app icons
- Improve Tests and Docs

Full changelog:
- Switch XfceTitledDialog to headerbar layout
- XfceTitledDialog: Keep buttons in the action area
- XfceTitledDialog: Also repack xfce_titled_dialog_new
- XfceTitledDialog: Make sure windows can be dragged
- XfceTitledDialog: Add _create_action_area, _add_button
  and _add_action_widget
- Introduce xfce_titled_dialog_set_default_response
- Mark xfce_titled_dialog_new_with_buttons as deprecated
- Add two new functions to search for app icons
- xfce-about: Fix Makefile
- shortcut-dialog: Show dialog content (Bug #16338)
- xfce-dialogs: Use GtkMessageDialog as base class
- xfce-dialogs: Improve layout of confirm_close_tabs
- xfce-dialogs: Improve alignment and layout of dialogs
- xfce-dialogs: Add right margin back to labels
- xfce-dialogs: Drop default window titles
- docs: Add xfce_dialog_confirm_close_tabs
- tests: Add xfce_dialog_confirm_close_tabs
- tests: Improve UI
- tests: Add icons to dialog buttons
- tests: Simplify code by using XfceTitledDialog
- tests: Re-order buttons
- tests: Fix typo in test-ui.c (Bug #16253)
- Rename test-ui-gtk3 to test-ui
- Improve docstrings
- Fix typos
- Drop gladeui Gtk2 from distcheck options
- Drop unused declaration
- Fix compiler warnings
- Remove trailing whitespace
- Always provides needed files for vala binding in dist tarball
- Add recents functions to libxfce4ui.symbols
- Drop xfce-header from pot files
- Update docstrings
- Fix license text box too small (Bug #16259)
- .gitignore: ignore all .o files
- Make autogen output friendlier
- Translation Updates:
  Albanian, Bulgarian, Catalan, Chinese (China), Croatian, Danish,
  Dutch, French, Galician, German, Hungarian, Italian, Japanese,
  Lithuanian, Norwegian Bokmål, Polish, Portuguese, Portuguese
  (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Swedish,
  Turkish, Ukrainian

Release notes for 4.15.0
========================
- Drop support for Gtk2
- Make glibtop an optional dependency ("About System" tab)
- about: Add system info tab
- about: Hide system tab conditionally
- dialogs: Use symbolic window-close icon
- Fix Window not visible when grabbing keyboard (Bug #16054)
- Bump Gtk3 to 3.22 (Bug #15781)
- Do not use gdk_screen_get_monitor_at_point (Bug #15781)
- Replace gtk_show_uri (Bug #15781)
- Replace gdk_display_get_screen (Bug #15781)
- Replace gdk_keymap_get_default (Bug #15781)
- Replace deprecated device functions (Bug #15781)
- Replace gdk_error_trap_* and gdk_flush (Bug #15781)
- Ignore what is hard to replace (Bug #15781)
- Add a dialog to confirm closure of multiple tabs (bug #15873)
- Translation Updates:
  Bulgarian, Chinese (China), Chinese (Taiwan), Croatian, Czech,
  Danish, Dutch, English (United Kingdom), Finnish, French,
  Galician, German, Hungarian, Interlingue, Italian, Japanese,
  Korean, Norwegian Bokmål, Norwegian Nynorsk, Polish, Portuguese,
  Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian,
  Spanish, Turkish

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 ...ivate-xfce4-keyboard-shortcuts.xml-fix.patch |  2 +-
 ...ibxfce4ui_4.14.1.bb => libxfce4ui_4.16.0.bb} | 17 ++++-------------
 2 files changed, 5 insertions(+), 14 deletions(-)
 rename meta-xfce/recipes-xfce/libxfce4ui/{libxfce4ui_4.14.1.bb => libxfce4ui_4.16.0.bb} (50%)

diff --git a/meta-xfce/recipes-xfce/libxfce4ui/files/0001-libxfce4kbd-private-xfce4-keyboard-shortcuts.xml-fix.patch b/meta-xfce/recipes-xfce/libxfce4ui/files/0001-libxfce4kbd-private-xfce4-keyboard-shortcuts.xml-fix.patch
index 6d107b1b6..616142761 100644
--- a/meta-xfce/recipes-xfce/libxfce4ui/files/0001-libxfce4kbd-private-xfce4-keyboard-shortcuts.xml-fix.patch
+++ b/meta-xfce/recipes-xfce/libxfce4ui/files/0001-libxfce4kbd-private-xfce4-keyboard-shortcuts.xml-fix.patch
@@ -19,7 +19,7 @@ index 723a10d..e6502f3 100644
 --- a/libxfce4kbd-private/xfce4-keyboard-shortcuts.xml
 +++ b/libxfce4kbd-private/xfce4-keyboard-shortcuts.xml
 @@ -75,4 +75,8 @@
-       <property name="&lt;Primary&gt;F12" type="string" value="workspace_12_key"/>
+       <property name="<Super>KP_Next" type="string" value="tile_down_right_key"/>
      </property>
    </property>
 +  <property name="providers" type="array">
diff --git a/meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.14.1.bb b/meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.16.0.bb
similarity index 50%
rename from meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.14.1.bb
rename to meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.16.0.bb
index 348b685be..7a269ad66 100644
--- a/meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.14.1.bb
+++ b/meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.16.0.bb
@@ -2,17 +2,15 @@ SUMMARY = "Xfce4 Widget library and X Window System interaction"
 SECTION = "x11/libs"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=252890d9eee26aab7b432e8b8a616475"
-DEPENDS = "intltool-native perl-native gtk+ gtk+3 libice libsm libxfce4util xfce4-dev-tools xfconf virtual/libx11"
+DEPENDS = "intltool-native perl-native gtk+3 libice libsm libxfce4util xfce4-dev-tools xfconf virtual/libx11"
 
 inherit xfce gtk-doc gobject-introspection features_check
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
-SRC_URI += " \
-    file://0001-libxfce4kbd-private-xfce4-keyboard-shortcuts.xml-fix.patch \
-"
-SRC_URI[md5sum] = "50eae4bab5eeced186bce16fb5f802ac"
-SRC_URI[sha256sum] = "c449075eaeae4d1138d22eeed3d2ad7032b87fb8878eada9b770325bed87f2da"
+# TODO: Check if this can go
+SRC_URI += "file://0001-libxfce4kbd-private-xfce4-keyboard-shortcuts.xml-fix.patch"
+SRC_URI[sha256sum] = "8b06c9e94f4be88a9d87c47592411b6cbc32073e7af9cbd64c7b2924ec90ceaa"
 
 EXTRA_OECONF += "--with-vendor-info=${DISTRO}"
 
@@ -20,15 +18,8 @@ PACKAGECONFIG ??= ""
 PACKAGECONFIG[gladeui2] = "--enable-gladeui2,--disable-gladeui2,glade"
 PACKAGECONFIG[startup-notification] = "--enable-startup-notification,--disable-startup-notification,startup-notification"
 
-PACKAGES =+ "${PN}-gtk2 ${PN}-gtk3"
-FILES_${PN}-gtk2 += "${libdir}/libxfce4ui-1.so.* ${libdir}/libxfce4kbd-private-2.so.*"
-FILES_${PN}-gtk3 += "${libdir}/libxfce4ui-2.so.* ${libdir}/libxfce4kbd-private-3.so.*"
-
 PACKAGES += "${PN}-glade"
 FILES_${PN}-glade = " \
     ${libdir}/glade \
     ${datadir}/glade \
 "
-
-RDEPENDS_${PN}-gtk2 = "${PN}"
-RDEPENDS_${PN}-gtk3 = "${PN}"
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 05/28] exo: upgrade 0.12.11 -> 4.16.0
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (2 preceding siblings ...)
  2021-01-06 15:16 ` [PATCH 04/28] libxfce4ui: upgrade 4.14.1 " Andreas Müller
@ 2021-01-06 15:16 ` Andreas Müller
  2021-01-06 15:16 ` [PATCH 06/28] garcon: upgrade 0.7.0 -> 0.8.0 Andreas Müller
                   ` (22 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:16 UTC (permalink / raw)
  To: openembedded-devel

* exo-csource was removed. It is now xdt-csource shipped by xfce4-dev-tools
  => native build extension can go
* gtk2 support is gone

Release notes for 4.16.0
========================
- Focus must not be required in single click mode (Issue #190)
- Remove GLIB_CHECK_VERSION IFDEFs which are obsolete after glib bump
- Adjust padding only for vertical item orientation (Issue #48)
- bump glib (and gio, gthread, etc) to 2.50.0
- Fix GCC warning (false negative)
- Translation Updates:
  Basque, Estonian, Norwegian Bokmål, Portuguese (Brazil), Russian,
  Slovenian, Turkish, Vietnamese

Release notes for 4.15.2
========================
[Please note that this is a development release.]

- icon-chooser-dialog: Allow removing selected icon (Fixes #2)
- desktop-item-edit: Fix sensitivity of save button (Fixes #28)
- Rework exo_icon_view_scroll_event for overshoot effect (Fixes #25)
- Allow resizing the xfce4-settings window smaller (Fixes #19)
- Drop exo-csource from exo
- Fix build on OpenBSD (!2)
- Fix race condition in make install (Fixes #29)
- Remove unused perl module requirement
- Replace bugzilla occurences with gitlab (Fixes #30)
- Translation Updates:
  Albanian, Chinese (China), Chinese (Hong Kong), Danish, Eastern
  Armenian, French, German, Hebrew, Japanese, Kazakh, Korean,
  Lithuanian, Portuguese, Portuguese (Brazil), Russian, Swedish,
  Turkish

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../exo/{exo_0.12.11.bb => exo_4.16.0.bb}     | 19 +------------------
 1 file changed, 1 insertion(+), 18 deletions(-)
 rename meta-xfce/recipes-xfce/exo/{exo_0.12.11.bb => exo_4.16.0.bb} (54%)

diff --git a/meta-xfce/recipes-xfce/exo/exo_0.12.11.bb b/meta-xfce/recipes-xfce/exo/exo_4.16.0.bb
similarity index 54%
rename from meta-xfce/recipes-xfce/exo/exo_0.12.11.bb
rename to meta-xfce/recipes-xfce/exo/exo_4.16.0.bb
index 4a5a7720e..5b91b8b7e 100644
--- a/meta-xfce/recipes-xfce/exo/exo_0.12.11.bb
+++ b/meta-xfce/recipes-xfce/exo/exo_4.16.0.bb
@@ -3,12 +3,10 @@ SECTION = "x11"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
 DEPENDS = "gtk+3 libxfce4ui virtual/libx11 liburi-perl-native cairo"
-DEPENDS_class-native = "glib-2.0-native xfce4-dev-tools-native intltool-native"
 
 inherit xfce perlnative gtk-doc features_check mime-xdg
 
 REQUIRED_DISTRO_FEATURES = "x11"
-REQUIRED_DISTRO_FEATURES_class-native = ""
 
 # SRC_URI must follow inherited one
 SRC_URI += " \
@@ -16,18 +14,7 @@ SRC_URI += " \
     file://configure.patch \
 "
 
-SRC_URI_append_class-native = " \
-    file://reduce-build-to-exo-csource-only.patch \
-"
-
-SRC_URI[md5sum] = "efeb039d64b3257e39a1a38e75eb19b1"
-SRC_URI[sha256sum] = "ec892519c08a67f3e0a1f0f8d43446e26871183e5aa6be7f82e214f388d1e5b6"
-
-PACKAGECONFIG ??= ""
-PACKAGECONFIG_class-target ??= "gtk"
-PACKAGECONFIG[gtk] = "--enable-gtk2,--disable-gtk2,gtk+"
-
-PACKAGES =+ "exo-csource"
+SRC_URI[sha256sum] = "1975b00eed9a8aa1f899eab2efaea593731c19138b83fdff2f13bdca5275bacc"
 
 # Note: python bindings did not work in oe-dev and are about to be moved to
 # pyxfce see http://comments.gmane.org/gmane.comp.desktop.xfce.devel.version4/19560
@@ -35,7 +22,3 @@ FILES_${PN} += " \
     ${datadir}/xfce4/ \
     ${libdir}/xfce4/exo* \
 "
-
-FILES_exo-csource += "${bindir}/exo-csource"
-
-BBCLASSEXTEND = "native"
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 06/28] garcon: upgrade 0.7.0 -> 0.8.0
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (3 preceding siblings ...)
  2021-01-06 15:16 ` [PATCH 05/28] exo: upgrade 0.12.11 " Andreas Müller
@ 2021-01-06 15:16 ` Andreas Müller
  2021-01-06 15:16 ` [PATCH 07/28] xfwm4: upgrade 4.14.5 -> 4.16.0 Andreas Müller
                   ` (21 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:16 UTC (permalink / raw)
  To: openembedded-devel

Release notes for 0.8.0
=======================
- fix GarconMenuItem file documentation
- Remove GSourceFunc casts
- Remove GLIB_CHECK_VERSION IFDEFs which are obsolete after glib bump

Release notes for 0.7.3
=======================
[Please note that this is a development release.]

- garcon now needs libxfce4ui/4util 4.15.6+
- Use the symbolic close icon in the error dialog
- Don't launch apps as children
- bump glib (and gio, gthread, etc) minimum to 2.50.0
- relax automake requirement to 1.15
- Add new icon needed for xfce4-about-dialog.
- Translation Updates: Slovenian

Release notes for 0.7.2
=======================
[Please note that this is a development release.]
- Update README.md
- Translation Updates:
  Armenian, Armenian (Armenia), Hebrew, Lithuanian, Occitan
  (post 1500), Uyghur

Release notes for 0.7.1
=======================
[Please note that this is a development release.]

- Drop support for Gtk2
- Drop Gtk3 ifdefs
- Switch to xfce_gtk_image_menu_item
- Add support for GObject Introspection (Fixes #4)
- Improve GObject introspection annotations (Fixes #8)
- Fix missing transfer annotation
- Field codes expansion API update
- Transfer some code to libxfce4util
- Fix default merge rules in xfce-applications.menu (Bug #15504)
- Rename exo-helpers to the new xfce4-xx ones
- Do not add INSTALL in dist tarball
- Fix a memory leak
- Switch to README.md and foreign automake mode
- README: Use table for debug arguments
- Add basic GitLab pipeline
- Translation Updates:
  Albanian, Asturian, Chinese (Hong Kong), Danish, Dutch, Eastern
  Armenian, Estonian, Greek, Hebrew, Indonesian, Interlingue, Norwegian
  Nynorsk, Polish, Portuguese, Uzbek, Uzbek (Latin)

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../garcon/{garcon_0.7.0.bb => garcon_0.8.0.bb}          | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)
 rename meta-xfce/recipes-xfce/garcon/{garcon_0.7.0.bb => garcon_0.8.0.bb} (64%)

diff --git a/meta-xfce/recipes-xfce/garcon/garcon_0.7.0.bb b/meta-xfce/recipes-xfce/garcon/garcon_0.8.0.bb
similarity index 64%
rename from meta-xfce/recipes-xfce/garcon/garcon_0.7.0.bb
rename to meta-xfce/recipes-xfce/garcon/garcon_0.8.0.bb
index c4b858fd7..bbaa6fd6f 100644
--- a/meta-xfce/recipes-xfce/garcon/garcon_0.7.0.bb
+++ b/meta-xfce/recipes-xfce/garcon/garcon_0.8.0.bb
@@ -4,14 +4,17 @@ LICENSE = "LGPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=04a01abcbdabffae1ca26335a293276b"
 DEPENDS = "xfce4-dev-tools-native libxfce4ui intltool-native"
 
-inherit xfce gtk-doc features_check
+inherit xfce gtk-doc gobject-introspection features_check
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
 SRC_URI += "file://0001-xfce-applications.menu-don-t-bloat-settings-menu-by-.patch"
-SRC_URI[md5sum] = "2964c7a7e5d4aac58b4afef9b8602914"
-SRC_URI[sha256sum] = "82c3b61b508011642b09e6fb01b1d3f22c4e4de0fc54a9244327d0ddb66b2423"
+SRC_URI[sha256sum] = "4811d89ee5bc48dbdeffd69fc3eec6c112bbf01fde98a9e848335b374a4aa1bb"
 
 EXTRA_OECONF = "--disable-gtk-doc"
 
+do_compile_prepend() {
+    export GIR_EXTRA_LIBS_PATH="${B}/garcon/.libs"
+}
+
 FILES_${PN} += "${datadir}/desktop-directories"
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 07/28] xfwm4: upgrade 4.14.5 -> 4.16.0
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (4 preceding siblings ...)
  2021-01-06 15:16 ` [PATCH 06/28] garcon: upgrade 0.7.0 -> 0.8.0 Andreas Müller
@ 2021-01-06 15:16 ` Andreas Müller
  2021-01-06 18:55   ` [oe] " Khem Raj
  2021-01-06 15:16 ` [PATCH 08/28] xfce4-settings: upgrade 4.14.3 " Andreas Müller
                   ` (20 subsequent siblings)
  26 siblings, 1 reply; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:16 UTC (permalink / raw)
  To: openembedded-devel

Compositor patch does not apply anymore and testing x86-64 excceeds my
resources. Looked into Fedora sources: They build xfwm4 un-patched either.

Release notes for 4.16.0
========================
- common: Avoid zero refresh rate for monitor
- hints: Protect against XError from XGetTransientFor()
- netwm: Allow above/below only for regular windows
- netwm: Mark splashscreen as transient for groups
- client: Complete client state even on different workspaces
- build: Increase GTK+ requirement to 3.22
- Add `cycle_minimized` option
- compositor: Release overlay window last
- compositor: Free GLX data when really using GLX
- compositor: Remove useless trace message
- compositor: Release current GLX context on teardown
- display: Remove custom XError handler
- compositor: Check for XError when adding windows
- compositor: Trap XErrors when disabling compositor
- main: Enable compositor by default
- compositor: Remove automatic redirect support
- main: Add short command line options
- main: Add debug command line option
- pixmap: Use a safer strncpy()
- settings: Fix compiler warning
- Remove useless autotools macros and Makefile targets
- Use --enable-debug=yes when compiling from git
- Revert "compositor: Do not damage on opaque region update"
- themes: Use smaller, lighter shadows
- compositor: Check if compositor is enabled
- compositor: Avoid XError when disabling compositor
- compositor: Warn for missing epoxy GL function
- netwm: Do not raise window if activate is set to none
- Remove GSourceFunc casts
- compositor: Fix build with older epoxy versions
- settings: Add 'Always on top' to the double click action
- Settings: Remove default alphabetical sorting of keyboard shortcuts
  Closes: #451 (Disable initial sorting of keyboard shortcuts)
- compositor: Handle XFixes XError
- compositor: Add support for GL_ARB_sync
- compositor: Return early if a Present swap is pending
- debug: Fix build in debug mode
- compositor: Fix compilation issue with Xpresent
- compositor: Log fence and GLX swap time in debug mode
- compositor: Move fence sync to redraw_glx
- compositor: Move fence triggered to its own function
- compositor: Set swap control if possible
- compositor: Adjust to the actual number of buffers
- compositor: Use a GLX drawable per buffer
- client: Allow transients for group to be minimized
- settings: Add a UI option for desktop zooming
- themes: Remove title shadow
- themes: Adjust shadows size/opacity
- client: Make above/below consistent
- compositor: Limit damage region to the screen
- compositor: Optimize repaint without vblank
- compositor: Only accumulate damage with multiple buffers
- compositor: Copy entire content for GLX buffers
- xsync: Handle XError
- compositor: Ignore opaque region for shaded windows
- compositor: Clip opaque region against window shape
- client: Protect against XError in XKillClient()
- compositor: Do not damage on opaque region update
- compositor: Opaque region applies to client window
- compositor: Reuse client size
- client: Toggle tiling on key shortcut
- client: Small cleanup
- Add README.md to EXTRA_DIST
- client: Keep tiled size of windows
- compositor: No need to update compositor window on configure
- compositor: Limit opaque region clipping to window extents
- compositor: Damage on opaque region update only if visible
- client: Send synthetic configure on force redraw
- Post release tag bump
- Translation Updates:
  Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Belarusian
  (Tarask), Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong
  Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern
  Armenian, English (Australia), English (Canada), English (United
  Kingdom), Estonian, Finnish, French, Galician, Georgian, German,
  Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue,
  Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay,
  Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Persian
  (Iran), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian,
  Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish,
  Ukrainian, Urdu, Urdu (Pakistan), Uyghur

Release notes for 4.15.3
========================
[Please note that this is a development release.]

- Quick release after 4.15.2 to fix a regression with opaque
  regions leaving trails of unpainted areas on resize.

Release notes for 4.15.2
========================
[Please note this is a preview release of a development version]

- Add support for opaque regions in the compositor
- Make cursor zoom optional (xfce/xfwm4#439)
- Remove the deprecated options "--daemon" (Pablo Mazzini)
- Disable Xi2 support by default
- Add column sorting in settings
- Optimize window matching in the compositor with a hash table
  (Michael Banack)
- Add more XErrors traps
- I18n: Updated translations: ar, ast, be, be@tarask, bg, bn, ca,
  cs, da, de, el, en_AU, en_CA, en_GB, es, et, eu, fa_IR, fi, fr,
  gl, he, hr, hu, hy_AM, hye, id, ie, is, it, ja, ka, kk, ko, lt,
  lv, ms, nb, nl, nn, oc, pl, pt, pt_BR, ro, ru, sk, sl, sq, sr,
  sv, th, tr, ug, uk, ur, ur_PK,
  vi, zh_CN, zh_HK, zh_TW
  New translations: be@tarask, fa_IR, hye, ka

Release notes for 4.15.1
========================
[Please note that this is a development release.]

- Fix an error leak in compositor (xfce/xfwm4#351)
- Fix compositor selection atom misuse
- Prefer zero initialized memory allocation functions
- Use g_slice allocator for compositor windows

Release notes for 4.15.0
========================
[Please note that this is a development release.]

- First 4.15.x development release
- Show tabwin only on primary monitor if set
- All fixes and i18n as found in 4.14.4

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 ...r-Revert-to-GLX-as-default-vblank-me.patch | 92 -------------------
 .../{xfwm4_4.14.5.bb => xfwm4_4.16.0.bb}      |  5 +-
 2 files changed, 2 insertions(+), 95 deletions(-)
 delete mode 100644 meta-xfce/recipes-xfce/xfwm4/files/0001-Revert-compositor-Revert-to-GLX-as-default-vblank-me.patch
 rename meta-xfce/recipes-xfce/xfwm4/{xfwm4_4.14.5.bb => xfwm4_4.16.0.bb} (82%)

diff --git a/meta-xfce/recipes-xfce/xfwm4/files/0001-Revert-compositor-Revert-to-GLX-as-default-vblank-me.patch b/meta-xfce/recipes-xfce/xfwm4/files/0001-Revert-compositor-Revert-to-GLX-as-default-vblank-me.patch
deleted file mode 100644
index 04fd623e8..000000000
--- a/meta-xfce/recipes-xfce/xfwm4/files/0001-Revert-compositor-Revert-to-GLX-as-default-vblank-me.patch
+++ /dev/null
@@ -1,92 +0,0 @@
-From acdceb0b28d86199b8c2233880fa8a04cb24d4d4 Mon Sep 17 00:00:00 2001
-From: Kai Kang <kai.kang@windriver.com>
-Date: Wed, 24 Jul 2019 09:48:04 +0800
-Subject: [PATCH] Revert "compositor: Revert to GLX as default vblank method
- (again)"
-
-This reverts commit e07574d6e7a2dbaa08c3ba4765c6306073d9493e.
-
-It sets the default vblank method (auto) to GLX from 4.13.2. But it
-fails to start xfwm4 on intel-x86-64 boards with error:
-
-| xfwm4: ../mesa-19.1.1/src/mesa/drivers/dri/i965/intel_mipmap_tree.c:1293:
-| intel_miptree_match_image: Assertion `image->TexObject->Target == mt->target' failed.
-| Aborted
-
-There is also a RHEL defect:
-https://bugzilla.redhat.com/show_bug.cgi?id=1678334
-
-Revert the commit to fix the issue.
-
-Upstream-Status: Inappropriate [workaround]
-
-Signed-off-by: Kai Kang <kai.kang@windriver.com>
----
- src/compositor.c | 41 +++++++++++++++++++----------------------
- 1 file changed, 19 insertions(+), 22 deletions(-)
-
-diff --git a/src/compositor.c b/src/compositor.c
-index 25615282..daced607 100644
---- a/src/compositor.c
-+++ b/src/compositor.c
-@@ -4483,13 +4483,28 @@ compositorManageScreen (ScreenInfo *screen_info)
-     XClearArea (display_info->dpy, screen_info->output, 0, 0, 0, 0, TRUE);
-     TRACE ("manual compositing enabled");
- 
-+#ifdef HAVE_PRESENT_EXTENSION
-+    screen_info->use_present = display_info->have_present &&
-+                               (screen_info->vblank_mode == VBLANK_AUTO ||
-+                                screen_info->vblank_mode == VBLANK_XPRESENT);
-+    if (screen_info->use_present)
-+    {
-+        screen_info->present_pending = FALSE;
-+        XPresentSelectInput (display_info->dpy,
-+                             screen_info->output,
-+                             PresentCompleteNotifyMask);
-+    }
-+#else /* HAVE_PRESENT_EXTENSION */
-+    screen_info->use_present = FALSE;
-+#endif /* HAVE_PRESENT_EXTENSION */
-+
- #ifdef HAVE_EPOXY
--    screen_info->use_glx = (screen_info->vblank_mode == VBLANK_AUTO ||
--                            screen_info->vblank_mode == VBLANK_GLX);
-+    screen_info->use_glx = !screen_info->use_present &&
- #ifdef HAVE_XSYNC
--    screen_info->use_glx &= display_info->have_xsync;
-+                            display_info->have_xsync &&
- #endif /* HAVE_XSYNC */
--
-+                            (screen_info->vblank_mode == VBLANK_AUTO ||
-+                             screen_info->vblank_mode == VBLANK_GLX);
-     if (screen_info->use_glx)
-     {
-         screen_info->glx_context = None;
-@@ -4503,24 +4518,6 @@ compositorManageScreen (ScreenInfo *screen_info)
-     screen_info->use_glx = FALSE;
- #endif /* HAVE_EPOXY */
- 
--#ifdef HAVE_PRESENT_EXTENSION
--    screen_info->use_present = display_info->have_present &&
--#ifdef HAVE_EPOXY
--                               !screen_info->use_glx &&
--#endif /* HAVE_EPOXY */
--                               (screen_info->vblank_mode == VBLANK_AUTO ||
--                                screen_info->vblank_mode == VBLANK_XPRESENT);
--    if (screen_info->use_present)
--    {
--        screen_info->present_pending = FALSE;
--        XPresentSelectInput (display_info->dpy,
--                             screen_info->output,
--                             PresentCompleteNotifyMask);
--    }
--#else /* HAVE_PRESENT_EXTENSION */
--    screen_info->use_present = FALSE;
--#endif /* HAVE_PRESENT_EXTENSION */
--
-     if (screen_info->use_present)
-     {
-         g_info ("Compositor using XPresent for vsync");
--- 
-2.20.1
-
diff --git a/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.14.5.bb b/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.16.0.bb
similarity index 82%
rename from meta-xfce/recipes-xfce/xfwm4/xfwm4_4.14.5.bb
rename to meta-xfce/recipes-xfce/xfwm4/xfwm4_4.16.0.bb
index f8febe804..3f64365f0 100644
--- a/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.14.5.bb
+++ b/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.16.0.bb
@@ -2,14 +2,13 @@ DESCRIPTION = "Xfce4 Window Manager"
 SECTION = "x11/wm"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=d791728a073bc009b4ffaf00b7599855"
-DEPENDS = "virtual/libx11 libxfce4ui libwnck3 libxinerama exo-native"
+DEPENDS = "virtual/libx11 libxfce4ui libwnck3 libxinerama"
 
 inherit xfce update-alternatives features_check
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
-SRC_URI += "file://0001-Revert-compositor-Revert-to-GLX-as-default-vblank-me.patch"
-SRC_URI[sha256sum] = "d7a7c63fa42ec6d7cb3caab130d6f496be5bd7689b775d20e8786b7f3e282930"
+SRC_URI[sha256sum] = "1e22eae1bbb66cebfd1753b0a5606e76ecbf6b09ce4cdfd732d093c936f1feb3"
 
 PACKAGECONFIG ?= " \
     ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'epoxy', '', d)} \
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 08/28] xfce4-settings: upgrade 4.14.3 -> 4.16.0
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (5 preceding siblings ...)
  2021-01-06 15:16 ` [PATCH 07/28] xfwm4: upgrade 4.14.5 -> 4.16.0 Andreas Müller
@ 2021-01-06 15:16 ` Andreas Müller
  2021-01-06 15:16 ` [PATCH 09/28] xfce4-panel: upgrade 4.14.4 " Andreas Müller
                   ` (19 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:16 UTC (permalink / raw)
  To: openembedded-devel

Release notes for 4.16.0
========================
- Drop subtitles from settings dialogs (Fixes #239)
- display: Fix icon name in settings dialog
- settings-manager: Fix visibility of filterbar
- settings-manager: Correctly show/hide the filterbar
- settings-manager: Switch to GtkSearchEntry
- settings-manager: Put filter in separate bar (Fixes #226)
- appearance: Add 'Add' button to install themes (Fixes #193)
- color: Tweak colors  of icon
- mime: Accept Thunar's old id name (Fixes #247)
- settings-editor: Enable tooltips and ellipsizing for `Value` column
- settings-editor: Fix scrollbar for channels
- settings-editor: Point to correct docs URL (#245)
- bump glib (and gio, gthread, etc) minimum to 2.50.0
- Remove GSourceFunc casts
- Indentation fixes
- Translation Updates:
  Basque, Bulgarian, Estonian, French, German, Hebrew, Indonesian,
  Italian, Japanese, Norwegian Bokmål, Norwegian Nynorsk, Portuguese,
  Portuguese (Brazil), Russian, Serbian, Slovenian, Swedish, Turkish,
  Ukrainian

Release notes for 4.15.3
========================
[Please note that this is a development release.]
- Disable UPower support by default
- Add 24px and 32px icons
- xfsettingsd: avoid default double fork
- mime: Add 'Open with...' button
- mime: Add new generic launcher icons
- color: Adjust padding of dialog
- color: Add labels to toolbar
- keyboard: Make 'system defaults' a GtkSwitch
- keyboard: Adjust width of shortcut column (Fixes #223)
- keyboard: Update dialog UI
- keyboard: Make all table columns sortable
- keyboard: Improve inline toolbar alignment
- display: Center minimal dialog on monitor where cursor is
- settings-editor: Add labels to toolbar items
- Update README file
- Translation Updates:
  Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Belarusian
  (Tarask), Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong
  Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern
  Armenian, English (Australia), English (Canada), English (United
  Kingdom), Estonian, Finnish, French, Galician, German, Greek, Hebrew,
  Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese,
  Kazakh, Korean, Lithuanian, Malay, Norwegian Bokmål, Norwegian
  Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese
  (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish,
  Swedish, Thai, Turkish, Ukrainian, Uyghur

Release notes for 4.15.2
========================
[Please note that this is a development release.]

- appearance: Fix width of DPI spinbutton (Bug #16125)
- appearence: Sync theme, icon, font names to gsettings
- appearance: Fix list refresh on DnD (Fixes #213)
- appearance: Drop toolbar style setting (Bug #16665)
- display: Initial fractional scaling support (Fixes #162)
- display: Custom scale changes are display changes
- display: Improve layout in settings dialog
- display: Resize display widget according to scale
- display: Move scaling presets to glade
- display: Set minimum scale to 0.1
- display: Improve state machine for scaling option
- xfsettingsd: Correctly get current xrandr scale
- mime-settings: Rename dialog and icon to 'Default Applications'
- mime-settings: Fix window icon name
- mime-settings: Fix double free
- mime-helpers: Fix Nautilus icon name
- mime-helpers: Rename Thunar to thunar
- Rename Thunar to thunar in make and potfiles
- Expand desktop entry field codes
- keyboard-settings: Support libxfce4ui XfceTitledDialog new API
- keyboard: Show shortcuts with keycap class
- settings-manager: Ensure searchbox has initial focus (Bug #16890)
- settings-manager: Simplify redrawing of search results (Fixes #141)
- settings-manager: Hide filter entry in plugged dialogs
- Convert xfce4-compose-mail to Python
- Add dependency to Python3
- Use just binary name (instead of full path) as argument
- Don't crash when upowerd isnt present (bug #60)
- Always install shiny new icons
- Drop libxfce4ui 4.15.1 ifdefs
- Fix xfconf-related memory leaks
- Update .gitignore
- Fix typo
- Translation Updates:
  Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese
  (Taiwan), Croatian, Danish, Dutch, English (Canada), Estonian,
  Finnish, French, German, Hebrew, Hungarian, Indonesian,
  Italian, Japanese, Kazakh, Korean, Lithuanian, Norwegian Bokmål,
  Serbian, Swedish, Turkish

Release notes for 4.15.0
========================
[Please note that this is a development release.]
- xsettings: Use CSD for GtkDialogs by default
- settings-manager: Fix XfceTitledDialog layout with CSD
- settings-manager: Drop setting the old header style
- display: Show ratio next to display resolution
- display: Mark preferred mode with an asterisk
- display: Add init function for aspect ratios
- display: Right-align the display ratio
- display: Fixed warning and removed ratio
- display: Improve look of ratio
- display: Fix icon name for primary indicator
- display: Initialize crtc->scalex/y (Bug #15971)
- settings-editor: Add consistent inline-toolbar
- appearance: Only show themes that support Gtk3 (Bug #15849)
- color: Fix crash in add-profiles dialog (Bug #15876)
- color: Conditionally hide info button in add-profile dialog
- color: Add tooltip to profile info buttons
- display: Fix profile matching in xfsettingsd
- display: Assure correct gchar** (Bug #15816)
- keyboard: Improve layout of add-command dialog
- keyboard: Add mnemonics to add-command dialog (Bug #10495)
- Switch to symbolic window-close icon
- Bump libxfce4ui dependency to 4.15.1
- Improve string for session managers
- Ensure the newly labeled 'Xfce Settings Daemon' is translated
- Do not show translation info on --help output
- Translation Updates:
  Albanian, Arabic, Basque, Belarusian, Bulgarian, Catalan,
  Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish,
  Dutch, English (United Kingdom), Finnish, French, Galician,
  German, Greek, Hebrew, Hungarian, Indonesian, Interlingue,
  Italian, Japanese, Korean, Lithuanian, Malay, Norwegian Bokmål,
  Polish, Portuguese, Portuguese (Brazil), Russian, Serbian,
  Slovak, Slovenian, Spanish, Swedish, Thai, Turkish

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 ...e4-settings_4.14.3.bb => xfce4-settings_4.16.0.bb} | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)
 rename meta-xfce/recipes-xfce/xfce4-settings/{xfce4-settings_4.14.3.bb => xfce4-settings_4.16.0.bb} (75%)

diff --git a/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.14.3.bb b/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.16.0.bb
similarity index 75%
rename from meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.14.3.bb
rename to meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.16.0.bb
index 08c612aa7..47de8c571 100644
--- a/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.14.3.bb
+++ b/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_4.16.0.bb
@@ -2,17 +2,14 @@ SUMMARY = "Xfce4 settings"
 SECTION = "x11/wm"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
-DEPENDS = "exo exo-native garcon libxi virtual/libx11 xrandr libxcursor libxklavier upower"
+DEPENDS = "exo garcon libxi virtual/libx11 xrandr libxcursor libxklavier upower"
 
-inherit xfce features_check
+inherit xfce features_check mime-xdg
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
-SRC_URI += " \
-    file://0001-xsettings.xml-Set-default-themes.patch \
-"
-SRC_URI[md5sum] = "fe8f7d4221be1467b85c8539344c3f07"
-SRC_URI[sha256sum] = "cab1a4d5351f9871533700523570f86f92bbe6e4055f44e5df950eb4b4f48bb3"
+SRC_URI += "file://0001-xsettings.xml-Set-default-themes.patch"
+SRC_URI[sha256sum] = "67a1404fc754c675c6431e22a8fe0e5d79644fdfadbfe25a4523d68e1442ddc2"
 
 EXTRA_OECONF += "--enable-maintainer-mode --disable-debug"
 
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 09/28] xfce4-panel: upgrade 4.14.4 -> 4.16.0
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (6 preceding siblings ...)
  2021-01-06 15:16 ` [PATCH 08/28] xfce4-settings: upgrade 4.14.3 " Andreas Müller
@ 2021-01-06 15:16 ` Andreas Müller
  2021-01-06 15:16 ` [PATCH 10/28] xfce4-session: upgrade 4.14.2 " Andreas Müller
                   ` (18 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:16 UTC (permalink / raw)
  To: openembedded-devel

Release notes for 4.16.0
========================
- panel: Fix intellihide with CSD (Fixes #368)
- tasklist: Fix wireframe for CSD windows (Fixes #338)
- tasklist: Auto-adjust icon size (Closes #90)
- Revert "tasklist: Auto-adjust icon size (Closes #90)"
- Fix GSourceFunc removal
- Remove GSourceFunc casts
- Remove GLIB_CHECK_VERSION IFDEFs which are obsolete after glib bump

Release notes for 4.15.6
========================
[Please note that this is a development release.]
- settings: Use spinbuttons for size and nrows
- settings: Update item listview toolbar
- Make dbusmenu-gtk3-0.4 optional, disables StatusNotifier integration
- gobject introspection wants a capital letter for the gir file
- Use new xfce_spawn API
- Bump GLib (and gio, gthread, etc) minimum to 2.50.0
- Update .gitignore
- Add README.md to EXTRA_DIST
- Fix compiler warnings
- Fix memory leaks
- Drop generated code from repo
- Revert "launcher: Appear "checked" on click (Fixes #256)"
- Translation Updates:
  Chinese (China), Estonian, Norwegian Nynorsk, Russian, Serbian,
  Slovak, Slovenian, Turkish, Vietnamese

Release notes for 4.15.5
========================
[Please note that this is a development release.]

- actions: Switch to new session icons (Fixes #332)
- add-items: Drop not-so-helpful dialog subtitle
- add-items: Bump default dialog size (Fixes #258)
- launcher: Appear "checked" on click (Fixes #256)
- tasklist: Limit blinking notification
- intellihide: Check if cursor is over the panel (Fixes #311)
- launcher: Set plugin icon as fallback (Fixes #329)
- Add new README.md
- Fixed icon for about dialog and added more icons for better scaling
- Unref datetime objects
- Translation Updates:
  Albanian, Amharic, Arabic, Armenian (Armenia), Basque, Belarusian,
  Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong),
  Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian,
  English (Australia), English (United Kingdom), Estonian, Finnish,
  French, Galician, Georgian, German, Greek, Hebrew, Hungarian,
  Icelandic, Indonesian, Interlingue, Italian, Japanese, Kazakh,
  Korean, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk,
  Occitan (post 1500), Panjabi (Punjabi), Polish, Portuguese,
  Portuguese (Brazil), Romanian, Russian, Serbian, Sinhala, Slovak,
  Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian, Uyghur,
  Vietnamese

Release notes for 4.15.4
========================
[Please note that this is a development release.]

- New plugin: statustray (supports statusnotifier and systray)
- plugins: Add new rDNS icons for all plugins
- Use shared field codes expansion
- tasklist: Add "Launch New Instance" item to menu (Fixes #158)
- Translation Updates:
  Albanian, Chinese (China), Chinese (Taiwan), Croatian, Estonian,
  French, Hebrew, Japanese, Kazakh, Korean, Lithuanian, Norwegian
  Bokmål, Polish, Portuguese, Portuguese (Brazil), Serbian, Swedish,
  Turkish

Release notes for 4.15.3
========================
[Please note that this is a development release.]

- Add new app icon and rDNS icon name
- Fix background of 48px app icons (Bug #16873)
- dark-mode: Make property unique across panels
- tasklist: Allow keyboard navigation within groups (Fixes #270)
- applicationsmenu: Correctly block autohiding (Fixes #287)
- action buttons: Fix combobox signal
- action buttons: Drop 'inverted buttons' setting (#223)
- action buttons: Add button title options (Bug #8980)
- action buttons: Fix separator width (Bug #15558)
- launcher: Fix launcher menu button state (Fixes #264)
- launcher: Fix crash with actions menu (Bug #16823)
- launcher: Fix in default panel configuration
- Improve docs for xfce_panel_plugin_position_widget (Bug #9438)
- Add Gio to libxfce4panel gir includes
- Add basic GitLab pipeline
- Fix whitespace error
- Fix panel build with vala 0.48 (Bug #16426)
- Fix build
- Update gitignore (Fixes #295)
- Drop references to Gtk2 and 4.6 panel plugins
- Translation Updates:
  Albanian, Amharic, Arabic, Armenian (Armenia), Belarusian, Bengali,
  Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese
  (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English
  (Australia), English (United Kingdom), Estonian, Finnish, French,
  Galician, Georgian, German, Greek, Hebrew, Hungarian, Icelandic,
  Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean,
  Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk,
  Occitan (post 1500), Panjabi (Punjabi), Polish, Portuguese,
  Portuguese (Brazil), Romanian, Russian, Sinhala, Slovak,
  Slovenian, Spanish, Swedish, Thai, Turkish,
  Uighur, Ukrainian, Vietnamese

Release notes for 4.15.2
========================
[Please note that this is a development release.]

- panel: Improve autohide animation
- panel: Add "popdown-speed" property to adjust autohide animation
- panel: Fix autohide state machine
- panel: Fix cancellation of autohide animation
- panel: Immediately show panel in intellihide
- panel: Don't tamper with leave_opacity value (Bug #16296)
- launcher: Show desktop actions in context menu
- plugin: Show custom menu items below plugin name
- tasklist: Hide brackets for min windows by default
- tasklist: Fix crash middle-click-closing grouped windows (Bug #16410)
- systray: Basic support for symbolic icons
- systray: Silence deprecation warnings
- systray: Remove superfluous warning
- Improve wording in "Remove plugin" dialog (Bug #9000)
- settings: Add keywords for discoverability (Bug #10694)
- Fix GTimeVal deprecation (Bug #16643)
- Fix memory leak in panel plugin wrapper (Bug #16640)
- Update docstring
- Update libxfce4panel symbols
- Make var names more consistent
- Fix cast
- Fix typo
- Fix indentation
- Translation Updates:
  Albanian, Basque, Belarusian, Bulgarian, Catalan, Chinese (China),
  Chinese (Taiwan), Croatian, Danish, Dutch, Finnish, French, Galician,
  Georgian, German, Hebrew, Hungarian, Italian, Japanese, Kazakh,
  Lithuanian, Malay, Norwegian Bokmål, Polish, Portuguese, Portuguese
  (Brazil), Russian, Serbian, Slovenian, Spanish, Turkish, Ukrainian

Release notes for 4.15.1
========================
[Please note that this is a development release.]

- Enable dark-mode by default
- tic-tac-toe: Fix XfceTitledDialog with CSD
- add-item dialog: Fix XfceTitledDialog with CSD
- systray: Improve app icon lookup
- directorymenu: Add create folder/document menuitems (Bug #15639)
- directorymenu: Add option to hide folder/terminal menuitems (Bug
- plugins: Fix enter/leave opacity w/o compositing (Bug #14577)
- clock: Drop leading zeros for days in default layout
- clock: Add back hour:min to format presets (Bug #16035)
- panel: Make sure "span monitors" is conditionally sensitive
- tasklist: Fix drag&drop in deskbar mode (Bug #16298)
- Fix autohide with bg color or image (Bug #16064)
- Improve the marching ants animation
- Remove extra underscore (Bug #16266)
- Use an empty placeholder icon for launcher (Bug #15819)
- Always provide files for vala binding in dist tarball
- Replace GtkStock icon
- Use symbolic window-close button image
- Fix doc typos
- Fix indentation
- Translation Updates:
  Albanian, Basque, Bulgarian, Catalan, Chinese (China), Chinese
  (Taiwan), Croatian, Czech, Danish, Dutch, English
  (United Kingdom), Finnish, French, Galician, Georgian, German,
  Greek, Hungarian, Interlingue, Italian, Japanese, Lithuanian,
  Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil),
  Russian, Serbian, Slovak, Slovenian, Spanish, Swedish, Turkish

Release notes for 4.15.0
========================
- Drop support for Gtk2 and 4.6 plugins
 - Drop Gtk2/4.6-only references from the docs
 - Don't show or try to load Gtk2 plugins anymore
 - Add dark mode preference
 - autohide: Add sliding out animation
 - Draw panel border based on position and length
 - appmenu: Listen to icon theme changes (Bug #15861)
 - appmenu: Use panel's icon size
 - clock: Validate timezone entry (Bug #16036)
 - prefs: Plug memory leaks (Bug #16016)
 - docs: Fix build by dropping unused refs (Bug #16031)
 - pager: Fix scrolling in pager-buttons (Bug #15614)
 - pager: Face-lift of settings dialog
 - pager: Only show scroll-option with buttons
 - pager: Add option to show workspace number
 - systray: Drop "Show frame" option (Bug #14186)
 - tasklist: Resize when windows get removed (Bug #14394)
 - systray: Fix icons without compositing (Bug #14577)
 - windowlist: Make layout consistent with xfdesktop
 - windowlist: Replace deprecated gtk_widget_modify_font
 - launcher: Fix visual state of arrow-button (Bug #15818)
 - launcher: Avoid excessive left padding on popup menu (Bug #15819)
 - Fix typos and improve code formatting
 - Translation Updates:
   Albanian, Arabic, Armenian (Armenia), Belarusian, Bulgarian, Chinese
   (China), Chinese (Taiwan), Croatian, Danish, Dutch, French,
   Galician, German, Greek, Hebrew, Hungarian, Indonesian, Italian,
   Japanese, Lithuanian, Malay, Norwegian Bokmål, Polish, Portuguese,
   Portuguese (Brazil), Russian, Serbian, Slovak, Spanish, Swedish,
   Thai, Turkish

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../{xfce4-panel_4.14.4.bb => xfce4-panel_4.16.0.bb}           | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-xfce/recipes-xfce/xfce4-panel/{xfce4-panel_4.14.4.bb => xfce4-panel_4.16.0.bb} (90%)

diff --git a/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.14.4.bb b/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.16.0.bb
similarity index 90%
rename from meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.14.4.bb
rename to meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.16.0.bb
index 73cb82a15..0b210ffcc 100644
--- a/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.14.4.bb
+++ b/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.16.0.bb
@@ -8,8 +8,7 @@ inherit xfce gtk-doc gobject-introspection features_check remove-libtool mime-xd
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
-SRC_URI[md5sum] = "76efdbf7fb461f3058919c1309da67ca"
-SRC_URI[sha256sum] = "8e5ea79412ba84cfada897ff309cbe2cd4aca16b9bd4f93df060229528576fd5"
+SRC_URI[sha256sum] = "5e979aeeb37d306d72858b1bc67448222ea7a68de01409055b846cd31f3cc53d"
 SRC_URI += " \
     file://0001-windowmenu-do-not-display-desktop-icon-when-no-windo.patch \
     file://0002-use-lxdm-to-replace-dm-tool.patch \
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 10/28] xfce4-session: upgrade 4.14.2 -> 4.16.0
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (7 preceding siblings ...)
  2021-01-06 15:16 ` [PATCH 09/28] xfce4-panel: upgrade 4.14.4 " Andreas Müller
@ 2021-01-06 15:16 ` Andreas Müller
  2021-01-06 15:17 ` [PATCH 11/28] xfdesktop: " Andreas Müller
                   ` (17 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:16 UTC (permalink / raw)
  To: openembedded-devel

Release notes for 4.16.0
========================
- settings: Accept all types of GIcon
- settings: Adjust inline toolbar
- Fix compilation with -Wmissing-prototypes
- Don't warn when there are no saved sessions
- bump glib (and gio, gthread, etc) minimum to 2.50.0
- Remove GSourceFunc casts
- Update .gitignore
- Add README.md to EXTRA_DIST
- Translation Updates:
  Basque, Chinese (China), Czech, Danish, Estonian, French, Galician,
  Hebrew, Hindi, Indonesian, Italian, Lithuanian, Norwegian Bokmål,
  Portuguese, Portuguese (Brazil), Russian, Serbian, Slovenian,
  Turkish, Vietnamese

Release notes for 4.15.1
========================
[Please note that this is a development release.]
- Fix potential crash in suspend and shutdown (Fixes #65)
- Avoid potential format-string vulns (Issue #65)
- settings: Tweak 'Current Session' tab
- settings: Make 'App Autostart' columns sortable
- settings: Fix 'Current session' column width (!10)
- Add lock icon, 24px and 32px icons
- Add more guards around GErrors
- Update copyright year
- Fix ifdef
- Add README.md
- Translation Updates:
  Armenian (Armenia), Basque, Belarusian (Tarask), Chinese (China),
  Czech, Danish, Eastern Armenian, Estonian, French, Hebrew, Hungarian,
  Indonesian, Norwegian Bokmål, Portuguese (Brazil), Russian, Slovak,
  Slovenian, Swedish, Turkish, Uyghur

Release notes for 4.15.0
========================
[Please note that this is a development release.]

- Use new icon in settings dialog (Bug #16885)
- Add new application icon and rDNS icon name
- logout-dialog: Add new icons
- logout-dialog: Bump icon size to 48px
- Switch to symbolic window-close icons
- Drop GDM compatibility code to avoid invalid session locale
- Segfault when suspending without pm-suspend installed (Bug #16632)
- Expand field codes
- Add a GnuPG 2.1+ mode
- Fix session crash at logout (Bug #16105)
- Free the intermediate "cmd" variable in xfsm_startup_init()
- Re-add xfsm_startup_shutdown() call to xfce4-session main()
- Remove sys/sysctl.h on linux platform
- Move from exo-csource to xdt-csource (Bug #16717)
- Try xfce screensaver before cinnamon (Bug #16223)
- Add support for xfce4-screensaver (Bug #16522)
- Silence runtime warning (Bug #15731)
- settings: Don't warn when there are no saved sessions (Fixes #62)
- settings: Add sort-on-click to columns in "Current Session" tab (!3)
- settings: Add keywords for discoverability (Bug #10694)
- settings: Add tooltips to image-buttons
- settings: Better app icon lookup
- settings: Be more precise in infobar wording
- settings: Drop inline-toolbar button labels
- settings: Move autostart info to docs.xfce
- settings: Don't make 'saved sessions' tab reorderable
- settings: Sort saved sessions by most recently used (Bug #15338)
- Add basic GitLab pipeline
- Drop unused var
- Bump copyright years
- Only clean generated sources when in maintainer mode
- Do not show translation info on --help output
- Translation Updates:
  Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Belarusian
  (Tarask), Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong
  Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern
  Armenian, English (Australia), English (Canada), English (United
  Kingdom), Estonian, Finnish, French, Galician, German, Greek, Hebrew,
  Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese,
  Kazakh, Korean, Lithuanian, Malay, Norwegian Bokmål, Norwegian
  Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese
  (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian,
  Spanish, Swedish, Thai, Turkish, Uighur, Ukrainian, Vietnamese

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../{xfce4-session_4.14.2.bb => xfce4-session_4.16.0.bb}   | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)
 rename meta-xfce/recipes-xfce/xfce4-session/{xfce4-session_4.14.2.bb => xfce4-session_4.16.0.bb} (80%)

diff --git a/meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.14.2.bb b/meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.16.0.bb
similarity index 80%
rename from meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.14.2.bb
rename to meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.16.0.bb
index f497b7666..36b5bc2d0 100644
--- a/meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.14.2.bb
+++ b/meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.16.0.bb
@@ -12,11 +12,8 @@ REQUIRED_DISTRO_FEATURES = "x11"
 PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'polkit', d)}"
 PACKAGECONFIG[polkit] = "--enable-polkit, --disable-polkit, polkit"
 
-SRC_URI += " \
-    file://0001-configure.in-hard-code-path-to-iceauth.patch \
-"
-SRC_URI[md5sum] = "5ad23062fd08ef5f5ad9b4389c7b54c6"
-SRC_URI[sha256sum] = "fbe3a4a60c91589a2024ce12b2d2667625a8fedcbc90ef031831f56319f597af"
+SRC_URI += "file://0001-configure.in-hard-code-path-to-iceauth.patch"
+SRC_URI[sha256sum] = "22f273f212481d71e0b5618c62710cd85f69aea74f5ea5c0093f7918b07d17b7"
 
 ALTERNATIVE_${PN} = "x-session-manager"
 ALTERNATIVE_TARGET[x-session-manager] = "${bindir}/xfce4-session"
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 11/28] xfdesktop: upgrade 4.14.2 -> 4.16.0
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (8 preceding siblings ...)
  2021-01-06 15:16 ` [PATCH 10/28] xfce4-session: upgrade 4.14.2 " Andreas Müller
@ 2021-01-06 15:17 ` Andreas Müller
  2021-01-06 15:17 ` [PATCH 12/28] xfce4-power-manager: upgrade 1.6.6 " Andreas Müller
                   ` (16 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:17 UTC (permalink / raw)
  To: openembedded-devel

Release notes for 4.16.0
========================
- Set new wallpaper as default
- Add wallpaper for 4.16
- settings: Drop subtitle
- Drop autogenerated xfce-backdrop-settings.desktop.in from git
- Remove GLIB_CHECK_VERSION IFDEFs which are obsolete after glib bump
- bump glib (and gio, gthread, etc) minimum to 2.50.0
- Remove GSourceFunc casts
- Avoid warning, pointer target in assignment differ in signedness
- Translation Updates:
  Chinese (China), Danish, Greek, Norwegian Nynorsk, Slovenian

Release notes for 4.15.1
========================
This is a development release of Xfdesktop aiming the upcoming release
of Xfce 4.16.

- Add keywords to .desktop files in xfdesktop
- Add 24px and 32px icons
- Remove extra separator from context menu
- Move 'Open in New Window' of root window context menu (#59)
- Remove "Properties..." entry from desktop context menu (#59)
- Translation Updates:
  Albanian, Amharic, Arabic, Armenian (Armenia), Basque, Belarusian,
  Belarusian (Tarask), Bulgarian, Catalan, Chinese (China), Chinese
  (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch,
  Eastern Armenian, English (Australia), English (Canada), English
  (United Kingdom), Estonian, Finnish, French, Galician, Georgian,
  German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue,
  Italian, Japanese, Kazakh, Korean, Lithuanian, Malay, Norwegian
  Bokmål, Norwegian Nynorsk, Occitan (post 1500), Persian (Iran),
  Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian,
  Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukrainian,
  Uyghur, Uzbek

Release notes for 4.15.0
========================
This is a development release of Xfdesktop aiming the upcoming release
of Xfce 4.16.

- Pull in new fallback icon from Adwaita
- Add new app icon and switch to rDNS icon name
- Avoid redundant calls to backdrop_changed_cb (Bug #16773)
- Move from exo-csource to xdt-csource (Bug #16717)
- Increase minimum desktop icon size to 16 (Bug #16667)
- Correct spelling of file system (Bug #16543)
- Increase desktop icon increments to 2 (Bug #16668)
- Unselect all items after single click activation
- Fix memory leak when reconnecting DP monitor (Bug #16314)
- Fix regression caused by (Bug #16342)
- Fix transparent background color (Bug #16380)
- Add Shift+Ctrl+N keybinding for Create Folder (Bug #15660)
- Ignore modifier key events in type-ahead find (Bug #11149)
- Added type-ahead find for Desktop icons (Bug #11149)
- Do not insert hyphens at intra-word line breaks (Bug #16339)
- Replace deprecated G_FILE_MONITOR_EVENT_MOVED (Bug #16342)
- Translation Updates: Albanian, Amharic, Arabic, Armenian (Armenia),
  Basque, Belarusian, Belarusian (Tarask), Bulgarian, Catalan, Chinese
  (China), Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish,
  Dutch, English (Australia), English (Canada), English (United Kingdom),
  Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew,
  Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese,
  Kazakh, Korean, Lithuanian, Malay, Norwegian Bokmål, Norwegian Nynorsk,
  Occitan (post 1500), Persian (Iran), Polish, Portuguese, Portuguese
  (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian, Spanish,
  Swedish, Thai, Turkish, Uighur, Ukrainian, Uzbek

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../xfdesktop/{xfdesktop_4.14.2.bb => xfdesktop_4.16.0.bb}     | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-xfce/recipes-xfce/xfdesktop/{xfdesktop_4.14.2.bb => xfdesktop_4.16.0.bb} (74%)

diff --git a/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.14.2.bb b/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.16.0.bb
similarity index 74%
rename from meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.14.2.bb
rename to meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.16.0.bb
index a512a62ff..e8b2b72b6 100644
--- a/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.14.2.bb
+++ b/meta-xfce/recipes-xfce/xfdesktop/xfdesktop_4.16.0.bb
@@ -8,8 +8,7 @@ inherit xfce features_check
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
-SRC_URI[md5sum] = "5db09df39b0808f25bd3a3128f8c9e77"
-SRC_URI[sha256sum] = "a30534461fea907f969f608a11c84be0b1aaad687c591c32cd56a9d274ea3e74"
+SRC_URI[sha256sum] = "934ba5affecff21e62d9fac1dd50c50cd94b3a807fefa5f5bff59f3d6f155bae"
 
 PACKAGECONFIG ??= ""
 PACKAGECONFIG[notify] = "--enable-notifications,--disable-notifications,libnotify"
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 12/28] xfce4-power-manager: upgrade 1.6.6 -> 4.16.0
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (9 preceding siblings ...)
  2021-01-06 15:17 ` [PATCH 11/28] xfdesktop: " Andreas Müller
@ 2021-01-06 15:17 ` Andreas Müller
  2021-01-06 15:17 ` [PATCH 13/28] tumbler: upgrade 0.3.1 " Andreas Müller
                   ` (15 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:17 UTC (permalink / raw)
  To: openembedded-devel

Release notes for 4.16.0
========================
- bump glib (and gio, gthread, etc) minimum to 2.50.0
- panel-plugin: Prefer ac-adapter-symbolic (Fixes #103)
- Add new icons in size 24x24 and 32x32
- Translation Updates:
  Albanian, Basque, Catalan, Danish, Estonian, French, Galician,
  Hebrew, Indonesian, Norwegian Bokmål, Portuguese, Portuguese
  (Brazil), Russian, Serbian, Slovenian, Swedish, Turkish

Release notes for 1.7.1
=======================
[Please note that this is a development release.]
- Add new app icon and switch to rDNS icon name
- Use more accurate status icons (Fixes #95)
- Also use symbolic icons in battery notifications
- Reorder screensavers so Xfce comes first (Fixes #101)
- settings: Adjust title and show min/max buttons
- settings: Allow critical battery level up to 70% (Fixes #67)
- settings: Add keywords for discoverability (Bug #10694)
- settings: Fix GtkSwitch signal handlers (Issue #99)
- xfpm: avoid default double fork
- Respect the notification daemon's timeouts (Fixes #57)
- Fix Laptop lid settings (Bug #15300)
- Fix spelling mistake (Bug #16698)
- Only update blank time when appropriate
- Bug #16717: Move from exo-csource to xdt-csource
- Guard against NULL pointer dereference
- More blank time debug code
- Indentation fixes
- Cleanup code
- Move default icon names into one place
- Silence compiler warnings
- Add README.md
- Add basic GitLab pipeline
- Translation Updates:
  Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Bulgarian,
  Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan),
  Croatian, Czech, Danish, Dutch, Eastern Armenian, English
  (Australia), English (Canada), English (United Kingdom), Estonian,
  Finnish, French, Galician, German, Greek, Hebrew, Hungarian,
  Icelandic, Indonesian, Interlingue, Italian, Japanese, Kannada,
  Kazakh, Korean, Lithuanian, Malay, Norwegian Bokmål, Norwegian
  Nynorsk, Occitan (post 1500), Polish, Portuguese, Portuguese
  (Brazil), Romanian, Russian, Serbian, Sinhala, Slovak, Slovenian,
  Spanish, Swedish, Telugu, Thai, Turkish, Ukrainian, Uyghur,
  Vietnamese

Release notes for 1.7.0
=======================
[Please note that this is a development release.]

- Fix inhibiting xfce4-screensaver (Bug #16364)
- Fix indentation (makes git blame harder, but code more readable)
- settings: Unclutter system and display tabs
- settings: Move % sign out of spinbutton (Bug #15994)
- Switch to symbolic window-close icons
- Dismiss critical notification when connecting to AC
- Make brightness steps configurable (Bug #12062)
- Allow compilation with panel 4.15
- panel-plugin: Properly show 'About' menu item
- panel-plugin: Add (optional) Presentation mode indicator (Bug #15773)
- panel-plugin: Toggle presentation mode on middle click
- panel-plugin: Add warning color to presentation mode indicator
- panel-plugin: Use GtkSwitch for Presentation mode
- panel-plugin: Replace deprecated call
- systray: Ensure presentation mode can be toggled (Bug #16337)
- Translation Updates:
  Albanian, Arabic, Belarusian, Catalan, Chinese (China), Chinese
  (Taiwan), Croatian, Czech, Danish, Dutch, Finnish, French, Galician,
  German, Greek, Hebrew, Italian, Japanese, Kazakh, Korean, Lithuanian,
  Malay, Norwegian Bokmål, Portuguese, Portuguese (Brazil), Russian,
  Serbian, Slovak, Slovenian, Spanish, Turkish

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 ...e4-power-manager_1.6.6.bb => xfce4-power-manager_4.16.0.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-xfce/recipes-xfce/xfce4-power-manager/{xfce4-power-manager_1.6.6.bb => xfce4-power-manager_4.16.0.bb} (89%)

diff --git a/meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_1.6.6.bb b/meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_4.16.0.bb
similarity index 89%
rename from meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_1.6.6.bb
rename to meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_4.16.0.bb
index 608990ad4..7a778bdfc 100644
--- a/meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_1.6.6.bb
+++ b/meta-xfce/recipes-xfce/xfce4-power-manager/xfce4-power-manager_4.16.0.bb
@@ -11,8 +11,7 @@ REQUIRED_DISTRO_FEATURES = "x11"
 
 DEPENDS += "libnotify libxrandr virtual/libx11 libxext xfce4-panel upower libxscrnsaver"
 
-SRC_URI[md5sum] = "19873fc8a6de5e37ed57036a0002a5ce"
-SRC_URI[sha256sum] = "1b7bf0d3e8af69b10f7b6a518451e01fc7888e0d9d360bc33f6c89179bb6080b"
+SRC_URI[sha256sum] = "eb9c587c01b502fa45a32e7fc2aba98fa6d8391475133883654f77e562c43bf3"
 
 EXTRA_OECONF = " \
     --enable-network-manager \
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 13/28] tumbler: upgrade 0.3.1 -> 4.16.0
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (10 preceding siblings ...)
  2021-01-06 15:17 ` [PATCH 12/28] xfce4-power-manager: upgrade 1.6.6 " Andreas Müller
@ 2021-01-06 15:17 ` Andreas Müller
  2021-01-06 15:17 ` [PATCH 14/28] thunar-volman: upgrade 0.9.5 " Andreas Müller
                   ` (14 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:17 UTC (permalink / raw)
  To: openembedded-devel

Release notes for 4.16.0
========================
- Remove GLIB_CHECK_VERSION IFDEFs which are obsolete after glib bump
- bump glib (and gio, gthread, etc) minimum to 2.50.0
- Adjust bug report URL
- Translation Updates:
  Estonian, Turkish

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../tumbler/{tumbler_0.3.1.bb => tumbler_4.16.0.bb}             | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-xfce/recipes-xfce/tumbler/{tumbler_0.3.1.bb => tumbler_4.16.0.bb} (92%)

diff --git a/meta-xfce/recipes-xfce/tumbler/tumbler_0.3.1.bb b/meta-xfce/recipes-xfce/tumbler/tumbler_4.16.0.bb
similarity index 92%
rename from meta-xfce/recipes-xfce/tumbler/tumbler_0.3.1.bb
rename to meta-xfce/recipes-xfce/tumbler/tumbler_4.16.0.bb
index c9f2ddc8b..fcc39fd7d 100644
--- a/meta-xfce/recipes-xfce/tumbler/tumbler_0.3.1.bb
+++ b/meta-xfce/recipes-xfce/tumbler/tumbler_4.16.0.bb
@@ -6,7 +6,7 @@ DEPENDS = "freetype gdk-pixbuf poppler curl xfce4-dev-tools-native libxml2 libgs
 
 inherit xfce gtk-doc
 
-SRC_URI[sha256sum] = "e4a30f3c0656b5b29fcd4a2450293f20f283a95b7fb0754a947c55427784c454"
+SRC_URI[sha256sum] = "9b0b7fed0c64041733d490b1b307297984629d0dd85369749617a8766850af66"
 
 INSANE_SKIP_${PN} = "dev-so"
 
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 14/28] thunar-volman: upgrade 0.9.5 -> 4.16.0
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (11 preceding siblings ...)
  2021-01-06 15:17 ` [PATCH 13/28] tumbler: upgrade 0.3.1 " Andreas Müller
@ 2021-01-06 15:17 ` Andreas Müller
  2021-01-06 15:17 ` [PATCH 15/28] thunar: upgrade 1.8.15 " Andreas Müller
                   ` (13 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:17 UTC (permalink / raw)
  To: openembedded-devel

Release notes for 4.16.0
========================
- Remove GLIB_CHECK_VERSION IFDEFs which are obsolete after glib bump
- bump glib (and gio, gthread, etc) minimum to 2.50.0
- Add README.md to EXTRA_DIST
- Translation Updates:
  Turkish, Vietnamese

Release notes for 4.15.1
========================
This is a development release of Thunar-volman aiming the upcoming
release of Xfce 4.16.

- Fix typo in README
- Adds new README.md updates AM_INIT_AUTOMAKE
- Translation Updates:
  Albanian, Amharic, Arabic, Armenian (Armenia), Basque, Belarusian,
  Bulgarian, Catalan, Chinese (China), Chinese (Hong Kong), Chinese
  (Taiwan), Croatian, Czech, Danish, Dutch, Eastern Armenian, English
  (Australia), English (United Kingdom), Estonian, Finnish, French,
  Galician, German, Greek, Hebrew, Hungarian, Icelandic, Indonesian,
  Interlingue, Italian, Japanese, Kazakh, Korean, Latvian, Malay,
  Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish,
  Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian, Slovak,
  Slovenian, Spanish, Swedish, Telugu, Thai, Turkish, Ukrainian, Urdu,
  Urdu (Pakistan), Uyghur, Vietnamese

Release notes for 4.15.0
========================
[Please note that this is a development release.]

- Use icons from icon theme in the dialog (!3)
- Add new app icon and switch to rDNS
- Remove PDA tab (!1)
- Avoid critical error when closing preferences dialog
- Support libxfce4ui XfceTitledDialog new API
- Translation Updates:
  Albanian, Belarusian, Bulgarian, Chinese (China), Chinese (Taiwan),
  Croatian, Danish, Dutch, Eastern Armenian, English (United Kingdom),
  Estonian, Galician, Greek, Hebrew, Hungarian, Indonesian,
  Interlingue, Italian, Japanese, Lithuanian, Portuguese, Russian,
  Slovenian, Spanish

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../{thunar-volman_0.9.5.bb => thunar-volman_4.16.0.bb}        | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-xfce/recipes-xfce/thunar-volman/{thunar-volman_0.9.5.bb => thunar-volman_4.16.0.bb} (74%)

diff --git a/meta-xfce/recipes-xfce/thunar-volman/thunar-volman_0.9.5.bb b/meta-xfce/recipes-xfce/thunar-volman/thunar-volman_4.16.0.bb
similarity index 74%
rename from meta-xfce/recipes-xfce/thunar-volman/thunar-volman_0.9.5.bb
rename to meta-xfce/recipes-xfce/thunar-volman/thunar-volman_4.16.0.bb
index d499e22ea..138796e6c 100644
--- a/meta-xfce/recipes-xfce/thunar-volman/thunar-volman_0.9.5.bb
+++ b/meta-xfce/recipes-xfce/thunar-volman/thunar-volman_4.16.0.bb
@@ -8,8 +8,7 @@ inherit xfce features_check
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
-SRC_URI[md5sum] = "f9ef39ed4bbff05eb74058dfff24dd84"
-SRC_URI[sha256sum] = "7ea7c6693334f2248cf399586af8974dfb7db9aad685ee31ac100e62e19a1837"
+SRC_URI[sha256sum] = "d2c0e719b242b7fd3db70bc6678a2df1abf2cfaa899b775a1591a5efa08a547d"
 
 PACKAGECONFIG ??= ""
 PACKAGECONFIG[notify] = "--enable-notifications,--disable-notifications,libnotify"
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 15/28] thunar: upgrade 1.8.15 -> 4.16.0
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (12 preceding siblings ...)
  2021-01-06 15:17 ` [PATCH 14/28] thunar-volman: upgrade 0.9.5 " Andreas Müller
@ 2021-01-06 15:17 ` Andreas Müller
  2021-01-06 15:17 ` [PATCH 16/28] xfce4-appfinder: upgrade 4.14.0 " Andreas Müller
                   ` (12 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:17 UTC (permalink / raw)
  To: openembedded-devel

Release notes for 4.16.0
========================
- Fix action of Back/Forward mouse gesture when using RTL (Issue #90)
- Prevent crash on mouse gesture action (Issue #443)
- Avoid crashes when closing thunar with ctrl+w (#336)
- Ignore double-click events from back/forward mouse button
  (Issue #371)
- Remove GLIB_CHECK_VERSION IFDEFs which are obsolete after glib bump
- bump minimum required exo version to 4.15.3
- Wrap box around spinner to prevent flickering (Issue #440)
- Use g_drive_is_removable over g_drive_is_media_removable
- bump glib (and gio, gthread, etc) to 2.50.0
- Do not duplicate app_info when added via custom command (Issue #309)
- Escape all whitespace characters in custom command path
- Remove hidden quotes for "Open with"->"custom command" (Issue #425)
- Ignore unknown XML elements in UCA.xml
- Regression: Fix broken bulk renamer context menu (Issue #436)
- Revert of b12247c2 and proper fix for Issue #423
- Remove duplicated code in renamer and prevent possible leak
- Prevent possible crash of thunar_launcher_poke (Issue #436)
- Fix combo box entry order (Issue #435)
- Remove TODO file
- Change focus when clicking an emblem entry (Issue #315)
- Bump GLib minimum version to 2.44
- Prevent Gtk-CRITICAL when terminating session (Issue #430)
- Missing thunarx support on the shortcut view (Issue #423)
- Translation Updates:
  Basque, Chinese (China), Czech, Danish, Estonian, Korean, Norwegian
  Nynorsk, Turkish, Vietnamese

Release notes for 4.15.0
========================
This is a development release of Thunar aiming the upcoming release of
Xfce 4.16.

- Fix unavailable rubber banding in detailed view (Issue #326)
- Context menu entries in Thunar flutter while downloading (Issue #276)
- Improve cusor handling after file deletion in thunar (Issue #69)
- Fix regression: Trying to open a .desktop file from the context menu
  leads to the execution of the file (Issue #325)
- Use numbering on label "open new window/tab" only for multiple
  windows/tabs
  (MR #15)
- Remove "Sort by" and "View as" from menu item labels (Issue #247)
- Add new app icon and switch to rDNS icon name (MR #11)
- Replace deprecated GtkActionEntry with XfceGtkActionEntry (Issue #293)
- Menus are now updated when selection changes not only when opened
  (Issue #293)
- Merge all file-context-menus into one (Issue #198)
- Ghost file ocasionally remains when dropping file into directory
  (Fixes #312)
- Use XfceFilenameInput to validate long filenames (Bug #13720)
- Support for variables like $HOME in address bar (Bug #12165)
- Fix eject button click detection when using RTL languages (Bug #11387)
- Remove upper case from group names in shortcuts view
- Option to rename a file when existing copy conflicts (Bug #16686)
- Remove suffix "- FileManager" from window title
- Move from exo-csource to xdt-csource (Bug #16717)
- Pause button on copy/move (Bug #16685)
- Allow drag-and-drop of multiple files in icon view (Bug #2487)
- Add keywords to .desktop files to thunar (Bug #16618)
- Reduce vertical space in Templates info popup
- Hide android phone from network group (Bug #11584)
- Reduce size of Templates info popup
- Do not add "cant-write" emblem to files in the Trash
- Hide Browse Network entry in shortcuts view if not supported
- Move 'network' to the bottom of tree view (Bug #16516)
- Add examples to "Select by Pattern" dialog (Bug #16587)
- Improve tooltips in shortcuts view (Bug #16566)
- Rename "Disconnect" context menu entry in side pane (Bug #16558)
- Make path entry matching case-insensitive (Bug #12747)
- Add new bookmarks to bottom of list in shortcuts view (Bug #16526)
- Move places above devices in shortcuts view (Bug #11586)
- Add desktop actions for home, computer and trash (Bug #16497)
- Option to use static icon instead of folder icon (Bug #16501)
- Remove top level desktop entry from tree view (Bug #16474)
- Easy access to computer:/// (Bug #16472)
- Use libxfce4ui close-multiple-tab dialog (Bug #16254)
- Replace deprecated G_FILE_MONITOR_EVENT_MOVED (Bug #16328)
- Use symbolic icon for eject (Bug #16281)
- Prevent ghost files after "move" on remote locations (Bug #15704)
- Add a confirmation dialog when closing a window with multiple open
  tabs.
- Improve explanation string for "invert selection" action (Bug #15625)
- Improve layout of Permissions tab (Bug #15557)
- Remove superfluous shell script "ThunarBulkRename" (Bug #15373)
- Make labels in permissions chooser wrap
- Add a small delay when dismissing notifications (Bug #14552)
- File / Folder size text in statusbar sometimes is ambiguous (Bug
  #14203)
- Add missing parameter to ThunarBrowserPokeDeviceFunc function
- Add property to enable/disable frames on thumbnails (Bug #14433)
- Improved spacing between widgets in Properties and Preferences
  dialogs
- Fixed numerous compiler warnings
- Fixed numerous warning and critical messages
- Translation Updates:
  Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Asturian,
  Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China),
  Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish,
  Dutch, Eastern Armenian, English (Australia), English (United Kingdom),
  Esperanto, Estonian, Finnish, French, Galician, German, Greek,
  Hebrew, Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese,
  Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål,
  Norwegian Nynorsk, Occitan (post 1500), Panjabi (Punjabi), Persian
  (Iran), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian,
  Serbian, Slovak, Slovenian, Spanish, Swedish, Telugu, Thai, Turkish,
  Uighur, Ukrainian, Urdu, Urdu (Pakistan), Vietnamese

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../recipes-xfce/thunar/{thunar_1.8.15.bb => thunar_4.16.0.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-xfce/recipes-xfce/thunar/{thunar_1.8.15.bb => thunar_4.16.0.bb} (84%)

diff --git a/meta-xfce/recipes-xfce/thunar/thunar_1.8.15.bb b/meta-xfce/recipes-xfce/thunar/thunar_4.16.0.bb
similarity index 84%
rename from meta-xfce/recipes-xfce/thunar/thunar_1.8.15.bb
rename to meta-xfce/recipes-xfce/thunar/thunar_4.16.0.bb
index b1f1c967a..ae05f867f 100644
--- a/meta-xfce/recipes-xfce/thunar/thunar_1.8.15.bb
+++ b/meta-xfce/recipes-xfce/thunar/thunar_4.16.0.bb
@@ -8,8 +8,7 @@ inherit xfce gobject-introspection features_check mime-xdg
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
-SRC_URI[md5sum] = "303010f4959fa23f7c13c0ccd9b8527e"
-SRC_URI[sha256sum] = "7624560cf21f13869804947042610aab22075146b711593f11ceb9e494277c93"
+SRC_URI[sha256sum] = "6277c448116a91ebfa564972645d8d79ef69864992a02bb164b7b13f98fdfd9b"
 
 PACKAGECONFIG ??= ""
 PACKAGECONFIG[pcre] = "--enable-pcre,--disable-pcre,libpcre"
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 16/28] xfce4-appfinder: upgrade 4.14.0 -> 4.16.0
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (13 preceding siblings ...)
  2021-01-06 15:17 ` [PATCH 15/28] thunar: upgrade 1.8.15 " Andreas Müller
@ 2021-01-06 15:17 ` Andreas Müller
  2021-01-06 15:17 ` [PATCH 17/28] xfce4-terminal: 0.8.9.2 -> 0.8.10 Andreas Müller
                   ` (11 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:17 UTC (permalink / raw)
  To: openembedded-devel

Release notes for 4.16.0
========================
- Launch applications reparenting them to init
- Bump gtk minimum version to 3.22.0
- bump glib (and gio, gthread, etc) minimum to 2.50.0
- Translation Updates:
  Albanian, Amharic, Arabic, Armenian (Armenia), Basque, Bulgarian,
  Catalan, Chinese (China), Chinese (Hong Kong), Chinese (Taiwan),
  Croatian, Danish, Dutch, Eastern Armenian, English (Australia),
  English (Canada), English (United Kingdom), Estonian, Finnish,
  French, Galician, German, Greek, Hebrew, Hungarian, Icelandic,
  Interlingue, Italian, Japanese, Kazakh, Korean, Lithuanian, Malay,
  Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Polish,
  Portuguese, Portuguese (Brazil), Romanian, Russian, Serbian,
  Slovenian, Spanish, Swedish, Telugu, Turkish, Ukrainian, Uyghur,
  Vietnamese

Release notes for 4.15.2
========================
Please note that this is a development release.

- Add small delay before reloading menu tree (!6)
- Clear entry's error icon and tooltip
- Update copyright year
- GitLab is the new bugtracker
- Remove unnecessary code for unsupported glib versions
- Remove padding from context menu
- Fix memory leaks when sorting items
- Update README.md
- Apply light blue to 16px icon
- Improved and simplified icons for better scaling
- Add back git tag
- Remove extra spaces in configure.ac.in so xfce-do-release works as
  expected
- Translation Updates:
  Belarusian, Czech, Hindi, Indonesian, Slovak, Swedish, Thai

Release notes for 4.15.1
========================
[Please note that this is a development release.]

- Drop close button
- Add new app icon and switch to rDNS
- Limit popup completion width to be same as entry
- Switch to a few symbolic icons
- Add keywords to .desktop files to xfce4-appfinder
- Translation Updates:
  Albanian, Bulgarian, Chinese (China), Chinese (Hong Kong), Danish,
  Eastern Armenian, English (Canada), Estonian, Finnish, French,
  Galician, German, Hebrew, Hungarian, Italian, Japanese, Kazakh,
  Korean, Lithuanian, Norwegian Bokmål, Portuguese,
  Portuguese (Brazil), Russian, Spanish, Turkish

Release notes for 4.15.0
========================
First development release targeting Xfce 4.16.

- Record last commands only once (Bug #15767)
- Sort by frecency (Bug #9265)
- Switch to README.md and foreign automake mode
- Move from exo-csource to xdt-csource (Bug #16717)
- Make Preferences button always visible (Bug #16489)
- Fix gtk version checking
- Hidden option to disable entry completion (Bug #15827)
- Use casefolded string when searching for apps not commands (Bug
  #15893)
- Translation Updates:
  Albanian, Amharic, Arabic, Basque, Belarusian, Chinese (China),
  Chinese
  (Hong Kong), Chinese (Taiwan), Croatian, Danish, English (Australia),
  English (United Kingdom), Estonian, French, Galician, Greek, Hebrew,
  Hungarian, Icelandic, Indonesian, Interlingue, Italian, Korean,
  Norwegian Nynorsk, Occitan (post 1500), Romanian, Russian, Slovak,
  Slovenian, Spanish, Swedish, Telugu, Uighur, Vietnamese

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../{xfce4-appfinder_4.14.0.bb => xfce4-appfinder_4.16.0.bb}   | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-xfce/recipes-xfce/xfce4-appfinder/{xfce4-appfinder_4.14.0.bb => xfce4-appfinder_4.16.0.bb} (69%)

diff --git a/meta-xfce/recipes-xfce/xfce4-appfinder/xfce4-appfinder_4.14.0.bb b/meta-xfce/recipes-xfce/xfce4-appfinder/xfce4-appfinder_4.16.0.bb
similarity index 69%
rename from meta-xfce/recipes-xfce/xfce4-appfinder/xfce4-appfinder_4.14.0.bb
rename to meta-xfce/recipes-xfce/xfce4-appfinder/xfce4-appfinder_4.16.0.bb
index e4f35b0fc..39198306b 100644
--- a/meta-xfce/recipes-xfce/xfce4-appfinder/xfce4-appfinder_4.14.0.bb
+++ b/meta-xfce/recipes-xfce/xfce4-appfinder/xfce4-appfinder_4.16.0.bb
@@ -8,7 +8,6 @@ inherit xfce features_check
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
-SRC_URI[md5sum] = "03b226a2ee20f95243e74d1868e94e0e"
-SRC_URI[sha256sum] = "7ec175d4954fceb2e76cbfbca76ac4a4f53fe799d097a14117e7de68e88a4d98"
+SRC_URI[sha256sum] = "37b92aaaeeec8220ed23163cf89321168d3b49e0c48b4c10f12dc4a21fdf0954"
 
 FILES_${PN} += "${datadir}/metainfo"
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 17/28] xfce4-terminal: 0.8.9.2 -> 0.8.10
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (14 preceding siblings ...)
  2021-01-06 15:17 ` [PATCH 16/28] xfce4-appfinder: upgrade 4.14.0 " Andreas Müller
@ 2021-01-06 15:17 ` Andreas Müller
  2021-01-06 15:17 ` [PATCH 18/28] xfce4-screensaver: upgrade 0.1.10 -> 4.16.0 Andreas Müller
                   ` (10 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:17 UTC (permalink / raw)
  To: openembedded-devel

Release notes for 0.8.10
========================
- Bump libvte, gtk and xfce minimal versions (4.14)
- Stop using G_SPAWN_CHILD_INHERITS_STDIN spawn flag
- Updates README.md.
- Added new stock icons
- Limit font picker to fixed-size fonts
- Add gtk-doc as a dependency
- Do not require connection to generate manpage
- Bug #16875: Do not add ui.h file in datadir
- Simplify terminal manpage generation
- Switch preferences ui file to xdt-csource
- Switch to README.md and foreign automake mode
- Do not override clipboard contents
- Unsafe paste: Support bracketed paste mode
- Do not select text in Search dialog
- Add basic GitLab pipeline
- Translation Updates:
  Albanian, Armenian (Armenia), Basque, Bulgarian, Chinese (China),
  Chinese (Taiwan), Danish, Dutch, Eastern Armenian, Estonian, French,
  Greek, Hebrew, Hungarian, Indonesian, Interlingue, Italian, Japanese,
  Lithuanian, Norwegian Bokmål, Occitan (post 1500), Polish,
  Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian,
  Spanish, Swedish, Turkish, Ukrainian, Uyghur

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../{xfce4-terminal_0.8.9.2.bb => xfce4-terminal_0.8.10.bb}    | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-xfce/recipes-apps/xfce4-terminal/{xfce4-terminal_0.8.9.2.bb => xfce4-terminal_0.8.10.bb} (70%)

diff --git a/meta-xfce/recipes-apps/xfce4-terminal/xfce4-terminal_0.8.9.2.bb b/meta-xfce/recipes-apps/xfce4-terminal/xfce4-terminal_0.8.10.bb
similarity index 70%
rename from meta-xfce/recipes-apps/xfce4-terminal/xfce4-terminal_0.8.9.2.bb
rename to meta-xfce/recipes-apps/xfce4-terminal/xfce4-terminal_0.8.10.bb
index ba0f12771..783d38652 100644
--- a/meta-xfce/recipes-apps/xfce4-terminal/xfce4-terminal_0.8.9.2.bb
+++ b/meta-xfce/recipes-apps/xfce4-terminal/xfce4-terminal_0.8.10.bb
@@ -8,7 +8,6 @@ inherit xfce-app
 FILES_${PN} += "${datadir}/xfce4 \
                 ${datadir}/gnome-control-center"
 
-SRC_URI[md5sum] = "d0308313def5d7cc51070a6db1cf24dc"
-SRC_URI[sha256sum] = "9ba23bf86d350ef8a95d2dfb50bbd1bbb2144d82985a779ec28caf47faaeeeeb"
+SRC_URI[sha256sum] = "7a3337c198e01262a0412384823185753ac8a0345be1d6776a7e9bbbcbf33dc7"
 
 RRECOMMENDS_${PN} += "vte-prompt"
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 18/28] xfce4-screensaver: upgrade 0.1.10 -> 4.16.0
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (15 preceding siblings ...)
  2021-01-06 15:17 ` [PATCH 17/28] xfce4-terminal: 0.8.9.2 -> 0.8.10 Andreas Müller
@ 2021-01-06 15:17 ` Andreas Müller
  2021-01-06 15:17 ` [PATCH 19/28] xfce4-taskmanager: remove exo-native from DEPENDS Andreas Müller
                   ` (9 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:17 UTC (permalink / raw)
  To: openembedded-devel

fix-pam-config.patch was applied upstream

Release notes for 4.16.0
========================
This release version has been bumped from 0.x to 4.16.0 to align with
the new Libxfce4util and Xfconf GIR requirements.

- xfce4-screensaver-configure: Use GIRepository of libxfce4util and
xfconf (#11)
- Change type of seconds to guint in add_lock_timer
- Check dbus system_connection in add_sleep_inhibit
- Cleanup GSourceFunc usage
- Convert date_time_update to a timer function
- Fix format specifiers in lock_timer
- Fix issues connected to dbus (#66)
- Fix pam_strerror usage
- Pass constants to XSetScreenSaver
- Plug memleak in get_x11_idle_info
- Remove obsolete check for scrnsaver.h from configure.ac
- Translation Updates:
  Czech, Japanese, Portuguese, Turkish

Release notes for 0.1.11
========================
[Please note that this is a development release.]

Configuration Update:
This release updates the DPMS settings used for the Blank screensaver.
Timeouts are now stored in seconds instead of minutes, with the default
DPMS sleep now 5 seconds after the screensaver goes active. Xfconf:
/xfce4-screensaver/screensavers/xfce-blank/dpms-sleep-after

Theme Update:
This release uses a new icon name, org.xfce.ScreenSaver, instead of the
generic preferences-desktop-screensaver.

NEWS:
- Builds: Move from exo-csource to xdt-csource (Bugzilla #16717)
- CI: Add basic GitLab pipeline
- distcheck: Add missing gs-auth-pam.c
- DPMS: Change sleep settings to seconds, default after 5 seconds (#27)
- Fix: Catch gs_listener_dbus_init failures
- Fix: remove unused flag --no-daemon
- Icons: New icons and rDNS icon name, org.xfce.ScreenSaver
- Internal: Change timers from milliseconds to seconds
- README.md: Note setuid requirement after install with shadow/bsdauth
(#9)
- xfce4-screensaver.common-auth: replace @include with standard systax
(#6)

Translation Updates:
Albanian, Armenian (Armenia), Basque, Bulgarian, Catalan, Chinese
(China), Chinese (Taiwan), Czech, Danish, Dutch, Eastern Armenian,
English (Australia), Estonian, French, German, Hebrew, Hungarian,
Icelandic, Italian, Japanese, Korean, Lithuanian, Malay, Norwegian
Bokmål, Polish, Portuguese, Portuguese (Brazil), Russian, Serbian,
Slovak, Slovenian, Spanish, Swedish, Thai, Turkish

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../xfce4-screensaver/fix-pam-config.patch         | 14 --------------
 ...saver_0.1.10.bb => xfce4-screensaver_4.16.0.bb} |  9 +++------
 2 files changed, 3 insertions(+), 20 deletions(-)
 delete mode 100644 meta-xfce/recipes-apps/xfce4-screensaver/xfce4-screensaver/fix-pam-config.patch
 rename meta-xfce/recipes-apps/xfce4-screensaver/{xfce4-screensaver_0.1.10.bb => xfce4-screensaver_4.16.0.bb} (77%)

diff --git a/meta-xfce/recipes-apps/xfce4-screensaver/xfce4-screensaver/fix-pam-config.patch b/meta-xfce/recipes-apps/xfce4-screensaver/xfce4-screensaver/fix-pam-config.patch
deleted file mode 100644
index 94cad23f8..000000000
--- a/meta-xfce/recipes-apps/xfce4-screensaver/xfce4-screensaver/fix-pam-config.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-'@include' is not a standard sysntax and not supported by oe.
-
-Upstream-Status: Submitted [https://bugzilla.xfce.org/show_bug.cgi?id=15626]
-
-Signed-off-by: Kai Kang <kai.kang@windriver.com>
----
-diff --git a/data/xfce4-screensaver.common-auth b/data/xfce4-screensaver.common-auth
-index a9fd9ce..3bfea70 100644
---- a/data/xfce4-screensaver.common-auth
-+++ b/data/xfce4-screensaver.common-auth
-@@ -1,2 +1,2 @@
--@include common-auth
-+auth include common-auth
- auth optional pam_gnome_keyring.so
diff --git a/meta-xfce/recipes-apps/xfce4-screensaver/xfce4-screensaver_0.1.10.bb b/meta-xfce/recipes-apps/xfce4-screensaver/xfce4-screensaver_4.16.0.bb
similarity index 77%
rename from meta-xfce/recipes-apps/xfce4-screensaver/xfce4-screensaver_0.1.10.bb
rename to meta-xfce/recipes-apps/xfce4-screensaver/xfce4-screensaver_4.16.0.bb
index 62f0640f0..d4ea43ce1 100644
--- a/meta-xfce/recipes-apps/xfce4-screensaver/xfce4-screensaver_0.1.10.bb
+++ b/meta-xfce/recipes-apps/xfce4-screensaver/xfce4-screensaver_4.16.0.bb
@@ -12,16 +12,13 @@ DEPENDS = "dbus-glib garcon gtk+3 libxklavier libxscrnsaver virtual/libx11 xfcon
 
 inherit xfce-app
 
-SRC_URI_append = " \
-    file://fix-cross-compile.patch \
-    file://fix-pam-config.patch \
-"
-SRC_URI[md5sum] = "1f093cde5af09e9fd9be017774e032ef"
-SRC_URI[sha256sum] = "586f1c78dd6745a20e9ce9f12d0117189d597ba7ad0c8ffcfcd25c9bb05f1d57"
+SRC_URI_append = " file://fix-cross-compile.patch"
+SRC_URI[sha256sum] = "6d4d143e3e62db679ce83ce7da97903390773ee0a8ceb05ff4c3dac36616268d"
 
 do_install_append() {
     install -D -m 0644 ${S}/data/xfce4-screensaver.common-auth ${D}${sysconfdir}/pam.d/xfce4-screensaver
 }
 
 FILES_${PN} += "${datadir}/dbus-1 ${datadir}/desktop-directories"
+
 RDEPENDS_${PN} += "python3-core"
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 19/28] xfce4-taskmanager: remove exo-native from DEPENDS
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (16 preceding siblings ...)
  2021-01-06 15:17 ` [PATCH 18/28] xfce4-screensaver: upgrade 0.1.10 -> 4.16.0 Andreas Müller
@ 2021-01-06 15:17 ` Andreas Müller
  2021-01-06 15:17 ` [PATCH 20/28] xfce4-closebutton-plugin: upgrade 0.1.0+ -> 4.16.0 Andreas Müller
                   ` (8 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:17 UTC (permalink / raw)
  To: openembedded-devel

With xfce 4.16 exo-native is gone

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../recipes-apps/xfce4-taskmanager/xfce4-taskmanager_1.4.0.bb   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-xfce/recipes-apps/xfce4-taskmanager/xfce4-taskmanager_1.4.0.bb b/meta-xfce/recipes-apps/xfce4-taskmanager/xfce4-taskmanager_1.4.0.bb
index 1f84c2b01..d41ee894a 100644
--- a/meta-xfce/recipes-apps/xfce4-taskmanager/xfce4-taskmanager_1.4.0.bb
+++ b/meta-xfce/recipes-apps/xfce4-taskmanager/xfce4-taskmanager_1.4.0.bb
@@ -4,6 +4,6 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
 
 inherit xfce-app
 
-DEPENDS += "gtk+3 cairo libwnck libxmu xfce4-dev-tools-native exo-native"
+DEPENDS += "gtk+3 cairo libwnck libxmu xfce4-dev-tools-native"
 
 SRC_URI[sha256sum] = "655684ddfc15fc09071f78f9fce5439d20bbd2d80ecfc5ba0a08fb38313e7d43"
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 20/28] xfce4-closebutton-plugin: upgrade 0.1.0+ -> 4.16.0
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (17 preceding siblings ...)
  2021-01-06 15:17 ` [PATCH 19/28] xfce4-taskmanager: remove exo-native from DEPENDS Andreas Müller
@ 2021-01-06 15:17 ` Andreas Müller
  2021-01-06 15:17 ` [PATCH 21/28] xfce4-sensors-plugin: upgrade 1.3.92 -> 1.3.95 Andreas Müller
                   ` (7 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:17 UTC (permalink / raw)
  To: openembedded-devel

Minor adjustments for xfce 4.16 / follow release scheme

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../closebutton/xfce4-closebutton-plugin_git.bb           | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta-xfce/recipes-panel-plugins/closebutton/xfce4-closebutton-plugin_git.bb b/meta-xfce/recipes-panel-plugins/closebutton/xfce4-closebutton-plugin_git.bb
index 8dfb2e626..1cb489f7e 100644
--- a/meta-xfce/recipes-panel-plugins/closebutton/xfce4-closebutton-plugin_git.bb
+++ b/meta-xfce/recipes-panel-plugins/closebutton/xfce4-closebutton-plugin_git.bb
@@ -5,12 +5,12 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b6952d9a47fc2ad0f315510e1290455f"
 
 inherit xfce-panel-plugin xfce-git gtk-icon-cache perlnative
 
-DEPENDS += "exo-native libwnck3 xfconf"
+DEPENDS += "xfce4-dev-tools-native libwnck3 xfconf"
 
-PV = "0.1.0+gitr${SRCPV}"
+PV = "4.16.0"
 
-SRC_URI = "git://github.com/schnitzeltony/xfce4-closebutton-plugin.git;branch=master"
-SRCREV = "6ed5c3ee1ba7103ca854c5e81fb2c1220b913a40"
+SRC_URI = "git://github.com/schnitzeltony/xfce4-closebutton-plugin.git"
+SRCREV = "538f9acfc5d5019f5cde734d056bcc0c95da9b4c"
 S = "${WORKDIR}/git"
 
 EXTRA_OECONF += "--enable-maintainer-mode"
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 21/28] xfce4-sensors-plugin: upgrade 1.3.92 -> 1.3.95
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (18 preceding siblings ...)
  2021-01-06 15:17 ` [PATCH 20/28] xfce4-closebutton-plugin: upgrade 0.1.0+ -> 4.16.0 Andreas Müller
@ 2021-01-06 15:17 ` Andreas Müller
  2021-01-06 15:17 ` [PATCH 22/28] xfce4-genmon-plugin: upgrade 4.0.2 -> 4.1.0 Andreas Müller
                   ` (6 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:17 UTC (permalink / raw)
  To: openembedded-devel

First version compatible to xfce 4.16

Release notes for 1.3.95
========================
Updated translations;
code cleanups (thanks to all contributors and Xfce dev team);
compatibility to Xfce 4.16.

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 ...ple-definition-errors-under-GCC-10.0.patch | 118 ------------------
 ...3.92.bb => xfce4-sensors-plugin_1.3.95.bb} |   7 +-
 2 files changed, 2 insertions(+), 123 deletions(-)
 delete mode 100644 meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin/0001-Fix-multiple-definition-errors-under-GCC-10.0.patch
 rename meta-xfce/recipes-panel-plugins/sensors/{xfce4-sensors-plugin_1.3.92.bb => xfce4-sensors-plugin_1.3.95.bb} (77%)

diff --git a/meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin/0001-Fix-multiple-definition-errors-under-GCC-10.0.patch b/meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin/0001-Fix-multiple-definition-errors-under-GCC-10.0.patch
deleted file mode 100644
index 30cb487c8..000000000
--- a/meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin/0001-Fix-multiple-definition-errors-under-GCC-10.0.patch
+++ /dev/null
@@ -1,118 +0,0 @@
-From 6c6de7c07290248a3c72a50c7790885ee4bc13a2 Mon Sep 17 00:00:00 2001
-From: Robin Lee <cheeselee@fedoraproject.org>
-Date: Mon, 24 Feb 2020 17:52:39 +0800
-Subject: [PATCH] Fix multiple definition errors under GCC 10.0
-
-Fixes #16436, RHBZ#1800268
-
-Upstream-Status: Pending
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- include/sensors-interface-common.h | 22 ++++++++++++++--------
- lib/sensors-interface-common.c     |  1 +
- 2 files changed, 15 insertions(+), 8 deletions(-)
-
-diff --git a/include/sensors-interface-common.h b/include/sensors-interface-common.h
-index 62a27eb..05146c5 100644
---- a/include/sensors-interface-common.h
-+++ b/include/sensors-interface-common.h
-@@ -146,6 +146,12 @@ t_sensors_dialog;
- 
- 
- 
-+#ifdef XFCE4_SENSORS_INTERFACE_COMMON_DEFINING
-+#define EXTERN
-+#else
-+#define EXTERN extern
-+#endif
-+
- /* Extern functions that need to be re-implemented in the sensors-viewer and
-  * the panel code.
-  * They kind of need to be registered at the library by any software
-@@ -157,7 +163,7 @@ t_sensors_dialog;
-  * @param ptr_widget: Pointer to original widget, i.e, the update timer box
-  * @param ptr_sensorsdialog: argument pointer to sensors dialog data
-  */
--void
-+EXTERN void
- (*adjustment_value_changed) (GtkWidget *ptr_widget,
-                              t_sensors_dialog *ptr_sensorsdialog);
- 
-@@ -167,7 +173,7 @@ void
-  * @param ptr_widget: Pointer to original widget, i.e, the sensor entry combobox
-  * @param ptr_sensorsdialog: argument pointer to sensors dialog data
-  */
--void
-+EXTERN void
- (*sensor_entry_changed) (GtkWidget *ptr_widget,
-                          t_sensors_dialog *ptr_sensorsdialog);
- 
-@@ -178,7 +184,7 @@ void
-  * @param ptr_str_newtext: Pointer to the string containing the new label
-  * @param ptr_sensorsdialog: argument pointer to sensors dialog data
-  */
--void
-+EXTERN void
- (*list_cell_text_edited) (GtkCellRendererText *ptr_cellrenderertext,
-                           gchar *ptr_str_path, gchar *ptr_str_newtext,
-                           t_sensors_dialog *ptr_sensorsdialog);
-@@ -189,7 +195,7 @@ void
-  * @param ptr_str_path: pointer to the string with the path of the changed item
-  * @param ptr_sensorsdialog: argument pointer to sensors dialog data
-  */
--void
-+EXTERN void
- (*list_cell_toggle) (GtkCellRendererToggle *ptr_cellrenderertoggle, gchar *ptr_str_path,
-                      t_sensors_dialog *ptr_sensorsdialog);
- 
-@@ -201,7 +207,7 @@ void
-  *                          hexadecimal rgb format #0011ff
-  * @param ptr_sensorsdialog: argument pointer to sensors dialog data
-  */
--void
-+EXTERN void
- (*list_cell_color_edited) (GtkCellRendererText *ptr_cellrenderertext,
-                            gchar *ptr_str_path, gchar *ptr_str_newcolor,
-                            t_sensors_dialog *ptr_sensorsdialog);
-@@ -214,7 +220,7 @@ void
-  *                        temperature
-  * @param ptr_sensorsdialog: argument pointer to sensors dialog data
-  */
--void
-+EXTERN void
- (*minimum_changed) (GtkCellRendererText *ptr_cellrenderertext, gchar *ptr_str_path,
-                     gchar *ptr_str_newmin, t_sensors_dialog *ptr_sensorsdialog);
- 
-@@ -226,7 +232,7 @@ void
-  *                        temperature
-  * @param ptr_sensorsdialog: argument pointer to sensors dialog data
-  */
--void
-+EXTERN void
- (*maximum_changed) (GtkCellRendererText *ptr_cellrenderertext, gchar *ptr_str_path,
-                     gchar *ptr_str_newmax, t_sensors_dialog *ptr_sensorsdialog);
- 
-@@ -236,7 +242,7 @@ void
-  * @param ptr_widget: Pointer to original widget, i.e, the update timer box
-  * @param ptr_sensorsdialog: argument pointer to sensors dialog data
-  */
--void
-+EXTERN void
- (*temperature_unit_change) (GtkWidget *ptr_widget,
-                             t_sensors_dialog *ptr_sensorsdialog);
- 
-diff --git a/lib/sensors-interface-common.c b/lib/sensors-interface-common.c
-index 70aa154..8c79f1d 100644
---- a/lib/sensors-interface-common.c
-+++ b/lib/sensors-interface-common.c
-@@ -28,6 +28,7 @@
- #include <libxfce4panel/xfce-panel-plugin.h>
- 
- /* Local/package includes */
-+#define XFCE4_SENSORS_INTERFACE_COMMON_DEFINING
- #include <configuration.h>
- #include <sensors-interface-common.h>
- #include <middlelayer.h>
--- 
-2.24.1
-
diff --git a/meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.3.92.bb b/meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.3.95.bb
similarity index 77%
rename from meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.3.92.bb
rename to meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.3.95.bb
index aa5fe019d..3c7fa9a91 100644
--- a/meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.3.92.bb
+++ b/meta-xfce/recipes-panel-plugins/sensors/xfce4-sensors-plugin_1.3.95.bb
@@ -5,11 +5,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b94789bed9aec03b9656a9cc5398c706"
 
 inherit xfce-panel-plugin
 
-SRC_URI[md5sum] = "7327c4c316ebd5d93665e77b432b8d89"
-SRC_URI[sha256sum] = "3dc6643d2c064b7718badff44b948f8d410f00f13db197820b26ae38045f5112"
-SRC_URI += "file://0001-Do-not-check-for-sys-class-power_supply-we-are-cross.patch \
-            file://0001-Fix-multiple-definition-errors-under-GCC-10.0.patch \
-           "
+SRC_URI[sha256sum] = "83c64ae4618dd592971cfa0bc285a9b47af801a3ed856835cdb2a4c533c7846c"
+SRC_URI += "file://0001-Do-not-check-for-sys-class-power_supply-we-are-cross.patch"
 
 EXTRA_OECONF = " \
     --disable-procacpi \
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 22/28] xfce4-genmon-plugin: upgrade 4.0.2 -> 4.1.0
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (19 preceding siblings ...)
  2021-01-06 15:17 ` [PATCH 21/28] xfce4-sensors-plugin: upgrade 1.3.92 -> 1.3.95 Andreas Müller
@ 2021-01-06 15:17 ` Andreas Müller
  2021-01-06 15:17 ` [PATCH 23/28] xfce4-hotcorner-plugin: remove Andreas Müller
                   ` (5 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:17 UTC (permalink / raw)
  To: openembedded-devel

First version that builds with xfce 4.16

4.1.0 (2020/12/22)
==================
- Add basic GitLab pipeline
- Updated README file
- Add DBG anchors
- Add <icon> amd <iconclick> elements
- Make Save translatable
- Fix config values sometimes going to default
- Fix label sometimes re-appearing
- Enable multi-row support
- Remove unused variables and code
- Fix indentation
- Catch some edge cases
- Set tmp variable default values
- Fix period spinner display when cancelled
- Fix label toggle display when cancelled
- Fix font display when cancelled
- Support new libxfce4ui API
- Change close to save
- Closing config window cancels changes
- Change layout of config dialog
- Make tooltips translatable
- Update support URLs to docs.xfce.org
- Allow compilation with panel 4.15
- Replace deprecated xfce_create_panel_button
======
- Translation Updates:
  Albanian, Amharic, Arabic, Armenian (Armenia), Basque, Belarusian,
  Bulgarian, Catalan, Chinese (China), Chinese (Taiwan), Croatian,
  Czech, Danish, Dutch, Eastern Armenian, English (Australia), English
  (Canada), English (United Kingdom), Estonian, Finnish, French,
  Galician, German, Greek, Hebrew, Hindi, Hungarian, Icelandic,
  Indonesian, Interlingue, Italian, Japanese, Kazakh, Korean, Latvian,
  Lithuanian, Malay, Norwegian Bokmål, Occitan (post 1500), Polish,
  Portuguese, Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian,
  Spanish, Swedish, Thai, Turkish, Ukrainian, Urdu, Urdu (Pakistan),
  Uyghur

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 ...ce4-genmon-plugin_4.0.2.bb => xfce4-genmon-plugin_4.1.0.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-xfce/recipes-panel-plugins/genmon/{xfce4-genmon-plugin_4.0.2.bb => xfce4-genmon-plugin_4.1.0.bb} (71%)

diff --git a/meta-xfce/recipes-panel-plugins/genmon/xfce4-genmon-plugin_4.0.2.bb b/meta-xfce/recipes-panel-plugins/genmon/xfce4-genmon-plugin_4.1.0.bb
similarity index 71%
rename from meta-xfce/recipes-panel-plugins/genmon/xfce4-genmon-plugin_4.0.2.bb
rename to meta-xfce/recipes-panel-plugins/genmon/xfce4-genmon-plugin_4.1.0.bb
index 3108a7760..a51c52f23 100644
--- a/meta-xfce/recipes-panel-plugins/genmon/xfce4-genmon-plugin_4.0.2.bb
+++ b/meta-xfce/recipes-panel-plugins/genmon/xfce4-genmon-plugin_4.1.0.bb
@@ -5,5 +5,4 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=68ad62c64cc6c620126241fd429e68fe"
 
 inherit xfce-panel-plugin
 
-SRC_URI[md5sum] = "d808fe77a438c95b97ec6feda6162d22"
-SRC_URI[sha256sum] = "256c22526f61aabf43b91b903b976c13e56198657667df443cdb06b31fbf23aa"
+SRC_URI[sha256sum] = "d1256b4b47545c7bdb16842b21eaf3ac167be443e8f2f1093cf4209e65c84e7d"
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 23/28] xfce4-hotcorner-plugin: remove
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (20 preceding siblings ...)
  2021-01-06 15:17 ` [PATCH 22/28] xfce4-genmon-plugin: upgrade 4.0.2 -> 4.1.0 Andreas Müller
@ 2021-01-06 15:17 ` Andreas Müller
  2021-01-06 15:17 ` [PATCH 24/28] xfce4-embed-plugin: remove for now Andreas Müller
                   ` (4 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:17 UTC (permalink / raw)
  To: openembedded-devel

* it broke by xfce 4.16
* the develeoper will not continue it [1]

[1] https://github.com/brianhsu/xfce4-hotcorner-plugin/issues/11

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 ...keLists.txt-fix-library-install-path.patch | 39 -------------------
 .../hotcorner/xfce4-hotcorner-plugin_0.0.2.bb | 14 -------
 .../packagegroup-xfce-extended.bb             |  1 -
 3 files changed, 54 deletions(-)
 delete mode 100644 meta-xfce/recipes-panel-plugins/hotcorner/xfce4-hotcorner-plugin/0001-CMakeLists.txt-fix-library-install-path.patch
 delete mode 100644 meta-xfce/recipes-panel-plugins/hotcorner/xfce4-hotcorner-plugin_0.0.2.bb

diff --git a/meta-xfce/recipes-panel-plugins/hotcorner/xfce4-hotcorner-plugin/0001-CMakeLists.txt-fix-library-install-path.patch b/meta-xfce/recipes-panel-plugins/hotcorner/xfce4-hotcorner-plugin/0001-CMakeLists.txt-fix-library-install-path.patch
deleted file mode 100644
index df348dc85..000000000
--- a/meta-xfce/recipes-panel-plugins/hotcorner/xfce4-hotcorner-plugin/0001-CMakeLists.txt-fix-library-install-path.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-Upstream-Status: Submitted [https://github.com/brianhsu/xfce4-hotcorner-plugin/pull/8]
-
-The library install path may be ${CMAKE_INSTALL_PREFIX}/lib64 rather
-than fixed ${CMAKE_INSTALL_PREFIX}/lib. Provide a variable to make it
-could override by cmake command line.
-
-Signed-off-by: Kai Kang <kai.kang@windriver.com>
----
- CMakeLists.txt | 7 ++++---
- 1 file changed, 4 insertions(+), 3 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index e193787..84cb52d 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -10,8 +10,9 @@ include(GNUInstallDirs)
- 
- PKG_CHECK_MODULES(GTK REQUIRED libxfce4panel-1.0 libxfce4ui-1 libwnck-3.0)
- 
--set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
--set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
-+set(BASE_LIB_PATH "lib" CACHE STRING "base library install path")
-+set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${BASE_LIB_PATH})
-+set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${BASE_LIB_PATH})
- set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
-  
- INCLUDE_DIRECTORIES(${GTK_INCLUDE_DIRS})
-@@ -28,7 +29,7 @@ ADD_LIBRARY(hotcorner SHARED src/hotcorner.c src/util.c)
-  
- TARGET_LINK_LIBRARIES(hotcorner ${GTK_LIBRARIES})
- 
--INSTALL(TARGETS hotcorner  LIBRARY DESTINATION lib/xfce4/panel/plugins/)
-+INSTALL(TARGETS hotcorner  LIBRARY DESTINATION ${BASE_LIB_PATH}/xfce4/panel/plugins/)
- INSTALL(FILES hotcorner.desktop DESTINATION share/xfce4/panel/plugins/)
- GETTEXT_CREATE_TRANSLATIONS(po/xfce4-hotcorner-plugin.pot ALL po/zh_TW.po)
- 
--- 
-2.11.0
-
diff --git a/meta-xfce/recipes-panel-plugins/hotcorner/xfce4-hotcorner-plugin_0.0.2.bb b/meta-xfce/recipes-panel-plugins/hotcorner/xfce4-hotcorner-plugin_0.0.2.bb
deleted file mode 100644
index 57a815b1b..000000000
--- a/meta-xfce/recipes-panel-plugins/hotcorner/xfce4-hotcorner-plugin_0.0.2.bb
+++ /dev/null
@@ -1,14 +0,0 @@
-SUMMARY = "Plugin providing hotcorners"
-LICENSE = "GPLv2"
-LIC_FILES_CHKSUM = "file://README.md;beginline=48;endline=53;md5=2c694b8e0f73274b13465b509e4f5427"
-
-inherit xfce-panel-plugin cmake
-
-DEPENDS += "libwnck3"
-
-SRC_URI = "https://github.com/brianhsu/${BPN}/releases/download/${PV}/${BPN}-${PV}.tar.gz \
-           file://0001-CMakeLists.txt-fix-library-install-path.patch"
-SRC_URI[md5sum] = "ac31b45cda1867cb6bd69bb285638263"
-SRC_URI[sha256sum] = "942684c92f96a158e1417e597947f822769ac56aa1993a8c9f166ee633ef2b8d"
-
-EXTRA_OECMAKE = "-DBASE_LIB_PATH=${baselib}"
diff --git a/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-extended.bb b/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-extended.bb
index 255d2b5eb..f8a4b2f68 100644
--- a/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-extended.bb
+++ b/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-extended.bb
@@ -46,7 +46,6 @@ RRECOMMENDS_${PN} = " \
     xfce4-whiskermenu-plugin \
     xfce4-mailwatch-plugin \
     xfce4-smartbookmark-plugin \
-    xfce4-hotcorner-plugin \
     ${@bb.utils.contains('DISTRO_FEATURES', 'pulseaudio', 'xfce4-pulseaudio-plugin', '', d)} \
     xfce4-sensors-plugin \
     xfce4-calculator-plugin \
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 24/28] xfce4-embed-plugin: remove for now
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (21 preceding siblings ...)
  2021-01-06 15:17 ` [PATCH 23/28] xfce4-hotcorner-plugin: remove Andreas Müller
@ 2021-01-06 15:17 ` Andreas Müller
  2021-01-06 15:17 ` [PATCH 25/28] xfce4-equake-plugin: " Andreas Müller
                   ` (3 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:17 UTC (permalink / raw)
  To: openembedded-devel

* It stopped building for xfce 4.16
* There have been activities on GTK3 port [1] but...
* As soon as a working version is released it will be re-added

[1] https://gitlab.xfce.org/panel-plugins/xfce4-embed-plugin/-/issues/2

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../embed/xfce4-embed-plugin_1.6.0.bb                | 12 ------------
 .../packagegroups/packagegroup-xfce-extended.bb      |  1 -
 2 files changed, 13 deletions(-)
 delete mode 100644 meta-xfce/recipes-panel-plugins/embed/xfce4-embed-plugin_1.6.0.bb

diff --git a/meta-xfce/recipes-panel-plugins/embed/xfce4-embed-plugin_1.6.0.bb b/meta-xfce/recipes-panel-plugins/embed/xfce4-embed-plugin_1.6.0.bb
deleted file mode 100644
index 387b183f1..000000000
--- a/meta-xfce/recipes-panel-plugins/embed/xfce4-embed-plugin_1.6.0.bb
+++ /dev/null
@@ -1,12 +0,0 @@
-DESCRIPTION = "A panel plugin that embeds arbitrary windows (or GtkPlug widgets) into the panel."
-HOMEPAGE = "http://goodies.xfce.org/projects/panel-plugins/xfce4-embed-plugin"
-SECTION = "x11/application"
-LICENSE = "GPLv2"
-LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
-
-inherit xfce-panel-plugin
-
-# DEPENDS += "xfconf xorgproto libxtst"
-
-SRC_URI[md5sum] = "6870b116b85e4fa68d1b9ef76bd1d279"
-SRC_URI[sha256sum] = "c767df6360e8194b32bc24823dd000975edba0cafe525c23d7854029359ee228"
diff --git a/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-extended.bb b/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-extended.bb
index f8a4b2f68..c29827cee 100644
--- a/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-extended.bb
+++ b/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-extended.bb
@@ -34,7 +34,6 @@ RRECOMMENDS_${PN} = " \
     xfce4-systemload-plugin \
     xfce4-time-out-plugin \
     xfce4-timer-plugin \
-    xfce4-embed-plugin \
     xfce4-weather-plugin \
     xfce4-fsguard-plugin \
     xfce4-battery-plugin \
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 25/28] xfce4-equake-plugin: remove for now
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (22 preceding siblings ...)
  2021-01-06 15:17 ` [PATCH 24/28] xfce4-embed-plugin: remove for now Andreas Müller
@ 2021-01-06 15:17 ` Andreas Müller
  2021-01-06 15:17 ` [PATCH 26/28] xfce4-notes-plugin: " Andreas Müller
                   ` (2 subsequent siblings)
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:17 UTC (permalink / raw)
  To: openembedded-devel

* It is broken since xfce 4.16
* A ticket was opened [1] but no visible activities yet
* As soon as a working version is released it will be re-added

[1] https://sourceforge.net/p/equake/tickets/3/

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../equake/xfce4-equake-plugin_1.3.8.1.bb          | 14 --------------
 .../packagegroups/packagegroup-xfce-extended.bb    |  1 -
 2 files changed, 15 deletions(-)
 delete mode 100644 meta-xfce/recipes-panel-plugins/equake/xfce4-equake-plugin_1.3.8.1.bb

diff --git a/meta-xfce/recipes-panel-plugins/equake/xfce4-equake-plugin_1.3.8.1.bb b/meta-xfce/recipes-panel-plugins/equake/xfce4-equake-plugin_1.3.8.1.bb
deleted file mode 100644
index 8b24e98b0..000000000
--- a/meta-xfce/recipes-panel-plugins/equake/xfce4-equake-plugin_1.3.8.1.bb
+++ /dev/null
@@ -1,14 +0,0 @@
-DESCRIPTION = "Equake XFCE is a panel plugin for the XFCE panel which monitors earthquakes and displays an update each time a new earthquake occurs."
-HOMEPAGE = "http://freecode.com/projects/equake-xfce"
-SECTION = "x11/application"
-LICENSE = "GPLv3"
-LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
-
-inherit xfce-panel-plugin
-
-DEPENDS += "curl"
-
-SRC_URI[md5sum] = "07d42b8a3d440d6f1861048a6cc3a15a"
-SRC_URI[sha256sum] = "eff9cfd604d1bd998c5208176fbe2c6da705c250dce572f5e30b2c77f4ec741c"
-
-FILES_${PN} += "${libdir}/xfce4/panel-plugins/xfce4-equake-plugin"
diff --git a/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-extended.bb b/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-extended.bb
index c29827cee..7f1c17261 100644
--- a/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-extended.bb
+++ b/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-extended.bb
@@ -40,7 +40,6 @@ RRECOMMENDS_${PN} = " \
     xfce4-mount-plugin \
     xfce4-powermanager-plugin \
     xfce4-closebutton-plugin \
-    xfce4-equake-plugin \
     xfce4-notes-plugin \
     xfce4-whiskermenu-plugin \
     xfce4-mailwatch-plugin \
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 26/28] xfce4-notes-plugin: remove for now
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (23 preceding siblings ...)
  2021-01-06 15:17 ` [PATCH 25/28] xfce4-equake-plugin: " Andreas Müller
@ 2021-01-06 15:17 ` Andreas Müller
  2021-01-06 15:17 ` [PATCH 27/28] fluidsynth: upgrade 2.1.5 -> 2.1.6 Andreas Müller
  2021-01-06 15:17 ` [PATCH 28/28] blueman: upgrade 2.1.3 -> 2.1.4 Andreas Müller
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:17 UTC (permalink / raw)
  To: openembedded-devel

* It is broken since xfce 4.16
* GTK3 support was merged to master. Tried to build from git but that requires
  vala support all over the place causing build failures and is beyond worth it
* As soon as a working version is released it will be re-added

[1] https://gitlab.xfce.org/panel-plugins/xfce4-notes-plugin/-/merge_requests/2

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 ...icon.c-remove-deprecated-g_type_init.patch | 32 -----------
 .../notes/files/01_fix_format-string.patch    | 53 -------------------
 .../notes/xfce4-notes-plugin_1.8.1.bb         | 20 -------
 .../packagegroup-xfce-extended.bb             |  1 -
 4 files changed, 106 deletions(-)
 delete mode 100644 meta-xfce/recipes-panel-plugins/notes/files/0001-main-status-icon.c-remove-deprecated-g_type_init.patch
 delete mode 100644 meta-xfce/recipes-panel-plugins/notes/files/01_fix_format-string.patch
 delete mode 100644 meta-xfce/recipes-panel-plugins/notes/xfce4-notes-plugin_1.8.1.bb

diff --git a/meta-xfce/recipes-panel-plugins/notes/files/0001-main-status-icon.c-remove-deprecated-g_type_init.patch b/meta-xfce/recipes-panel-plugins/notes/files/0001-main-status-icon.c-remove-deprecated-g_type_init.patch
deleted file mode 100644
index e1ede27c4..000000000
--- a/meta-xfce/recipes-panel-plugins/notes/files/0001-main-status-icon.c-remove-deprecated-g_type_init.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 0218e5ebf38f94d58b908fca451ba3789efa8899 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com>
-Date: Fri, 20 Sep 2013 23:09:25 +0200
-Subject: [PATCH] main-status-icon.c remove deprecated g_type_init
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-this file was auto created by valac and xfce-vala when creating tarball. So
-
-Upstream-Status: Inappropriate [other]
-
-Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
----
- src/main-status-icon.c | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/src/main-status-icon.c b/src/main-status-icon.c
-index c6d73f8..f7db773 100644
---- a/src/main-status-icon.c
-+++ b/src/main-status-icon.c
-@@ -290,7 +290,6 @@ gint _vala_main (char** args, int args_length1) {
- 
- 
- int main (int argc, char ** argv) {
--	g_type_init ();
- 	return _vala_main (argv, argc);
- }
- 
--- 
-1.8.3.1
-
diff --git a/meta-xfce/recipes-panel-plugins/notes/files/01_fix_format-string.patch b/meta-xfce/recipes-panel-plugins/notes/files/01_fix_format-string.patch
deleted file mode 100644
index 8066df004..000000000
--- a/meta-xfce/recipes-panel-plugins/notes/files/01_fix_format-string.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-Fix formatting strings when compiling with Wformat options
-
-Imported from debian
-
---- a/lib/application.c
-+++ b/lib/application.c
-@@ -352,7 +352,7 @@ static void xnp_application_update_notes
- 			XfconfChannel* _tmp16_;
- 			const gchar* _tmp17_;
- 			_tmp9_ = _ ("Select notes path");
--			_tmp10_ = (GtkMessageDialog*) gtk_message_dialog_new (NULL, 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, _tmp9_);
-+			_tmp10_ = (GtkMessageDialog*) gtk_message_dialog_new (NULL, 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, "%s", _tmp9_);
- 			g_object_ref_sink (_tmp10_);
- 			error_dialog = _tmp10_;
- 			_tmp11_ = error_dialog;
-@@ -419,7 +419,7 @@ static void xnp_application_update_notes
- 		XfconfChannel* _tmp35_;
- 		const gchar* _tmp36_;
- 		_tmp27_ = _ ("Select notes path");
--		_tmp28_ = (GtkMessageDialog*) gtk_message_dialog_new (NULL, 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, _tmp27_);
-+		_tmp28_ = (GtkMessageDialog*) gtk_message_dialog_new (NULL, 0, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, "%s", _tmp27_);
- 		g_object_ref_sink (_tmp28_);
- 		error_dialog = _tmp28_;
- 		_tmp29_ = error_dialog;
-@@ -2082,7 +2082,7 @@ static void xnp_application_delete_windo
- 		gint _tmp9_;
- 		_tmp3_ = window;
- 		_tmp4_ = _ ("Are you sure you want to delete this group?");
--		_tmp5_ = (GtkMessageDialog*) gtk_message_dialog_new ((GtkWindow*) _tmp3_, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_QUESTION, GTK_BUTTONS_YES_NO, _tmp4_);
-+		_tmp5_ = (GtkMessageDialog*) gtk_message_dialog_new ((GtkWindow*) _tmp3_, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_QUESTION, GTK_BUTTONS_YES_NO, "%s", _tmp4_);
- 		g_object_ref_sink (_tmp5_);
- 		dialog = _tmp5_;
- 		_tmp6_ = dialog;
-@@ -2721,7 +2721,7 @@ void xnp_application_open_settings_dialo
- 		e = _inner_error_;
- 		_inner_error_ = NULL;
- 		_tmp0_ = _ ("Unable to open the settings dialog");
--		_tmp1_ = (GtkMessageDialog*) gtk_message_dialog_new (NULL, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, _tmp0_);
-+		_tmp1_ = (GtkMessageDialog*) gtk_message_dialog_new (NULL, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, "%s", _tmp0_);
- 		g_object_ref_sink (_tmp1_);
- 		error_dialog = _tmp1_;
- 		_tmp2_ = error_dialog;
---- a/lib/window.c
-+++ b/lib/window.c
-@@ -3542,7 +3542,7 @@ void xnp_window_delete_note (XnpWindow*
- 		GtkMessageDialog* _tmp13_;
- 		gint _tmp14_;
- 		_tmp9_ = _ ("Are you sure you want to delete this note?");
--		_tmp10_ = (GtkMessageDialog*) gtk_message_dialog_new ((GtkWindow*) self, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_QUESTION, GTK_BUTTONS_YES_NO, _tmp9_);
-+		_tmp10_ = (GtkMessageDialog*) gtk_message_dialog_new ((GtkWindow*) self, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_QUESTION, GTK_BUTTONS_YES_NO, "%s", _tmp9_);
- 		g_object_ref_sink (_tmp10_);
- 		dialog = _tmp10_;
- 		_tmp11_ = dialog;
diff --git a/meta-xfce/recipes-panel-plugins/notes/xfce4-notes-plugin_1.8.1.bb b/meta-xfce/recipes-panel-plugins/notes/xfce4-notes-plugin_1.8.1.bb
deleted file mode 100644
index fcf98c181..000000000
--- a/meta-xfce/recipes-panel-plugins/notes/xfce4-notes-plugin_1.8.1.bb
+++ /dev/null
@@ -1,20 +0,0 @@
-SUMMARY = "Notes plugin for the Xfce Panel"
-HOMEPAGE = "http://goodies.xfce.org/projects/panel-plugins/xfce4-notes-plugin"
-LICENSE = "GPLv2"
-LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
-
-inherit xfce-panel-plugin
-
-DEPENDS += "gtk+ libxfce4ui xfce4-panel xfconf libunique"
-
-SRC_URI += " \
-    file://0001-main-status-icon.c-remove-deprecated-g_type_init.patch \
-    file://01_fix_format-string.patch \
-"
-SRC_URI[md5sum] = "31cb9520b01512a94344770b4befdb3b"
-SRC_URI[sha256sum] = "07a4c3e71431c24f97d2e270452dd0fa51ff0bdb6219a13a20d0bfa8d9de54b2"
-
-FILES_${PN} += "${libdir}/xfce4/panel-plugins/*.so.*"
-
-# *.so are required for plugin detection
-INSANE_SKIP_${PN} = "dev-so"
diff --git a/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-extended.bb b/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-extended.bb
index 7f1c17261..cd3fa26aa 100644
--- a/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-extended.bb
+++ b/meta-xfce/recipes-xfce/packagegroups/packagegroup-xfce-extended.bb
@@ -40,7 +40,6 @@ RRECOMMENDS_${PN} = " \
     xfce4-mount-plugin \
     xfce4-powermanager-plugin \
     xfce4-closebutton-plugin \
-    xfce4-notes-plugin \
     xfce4-whiskermenu-plugin \
     xfce4-mailwatch-plugin \
     xfce4-smartbookmark-plugin \
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 27/28] fluidsynth: upgrade 2.1.5 -> 2.1.6
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (24 preceding siblings ...)
  2021-01-06 15:17 ` [PATCH 26/28] xfce4-notes-plugin: " Andreas Müller
@ 2021-01-06 15:17 ` Andreas Müller
  2021-01-06 15:17 ` [PATCH 28/28] blueman: upgrade 2.1.3 -> 2.1.4 Andreas Müller
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:17 UTC (permalink / raw)
  To: openembedded-devel

Release notes:

  SoundFonts may never be unloaded correctly, if
    polyphony is ever exceeded (#727), or
    voices are still playing while their SoundFont is being unloaded.
  Calling delete_fluid_synth() does not free those SoundFonts either. Affected are versions from 1.1.4 to 2.1.5 .

  Other bug-fixes:
    fix a heap-based use-after-free (#733)

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-multimedia/recipes-multimedia/fluidsynth/fluidsynth.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-multimedia/recipes-multimedia/fluidsynth/fluidsynth.inc b/meta-multimedia/recipes-multimedia/fluidsynth/fluidsynth.inc
index 73c1d0db6..847a22311 100644
--- a/meta-multimedia/recipes-multimedia/fluidsynth/fluidsynth.inc
+++ b/meta-multimedia/recipes-multimedia/fluidsynth/fluidsynth.inc
@@ -5,8 +5,8 @@ LICENSE = "LGPL-2.1"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=fc178bcd425090939a8b634d1d6a9594"
 
 SRC_URI = "git://github.com/FluidSynth/fluidsynth.git;branch=2.1.x"
-SRCREV = "6776569abe9a885bcec14141692fa93c0568d51c"
+SRCREV = "fd9bf6a6b0d10a984d2eb0e0e549700b7aa590ec"
 S = "${WORKDIR}/git"
-PV = "2.1.5"
+PV = "2.1.6"
 
 inherit cmake pkgconfig lib_package
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* [PATCH 28/28] blueman: upgrade 2.1.3 -> 2.1.4
  2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
                   ` (25 preceding siblings ...)
  2021-01-06 15:17 ` [PATCH 27/28] fluidsynth: upgrade 2.1.5 -> 2.1.6 Andreas Müller
@ 2021-01-06 15:17 ` Andreas Müller
  26 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-06 15:17 UTC (permalink / raw)
  To: openembedded-devel

Security release, see GHSA-jpc9-mgw6-2xwx/CVE-2020-15238 [1]

Changes
    Force cython to use python language version 3
    Do not use exitcode 1 when we expect to fail
    Mark more strings translatable (@cwendling)
Bugs fixed
    Unstranslated strings
    Searching (with Ctrl+F in manager device list) did not work
    Default PIN lookup
    Fix device removal handling (@Yannik)
    Only use LaunchContext when we have proper event time

[1] https://github.com/blueman-project/blueman/security/advisories/GHSA-jpc9-mgw6-2xwx

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../blueman/{blueman_2.1.3.bb => blueman_2.1.4.bb}              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-networking/recipes-connectivity/blueman/{blueman_2.1.3.bb => blueman_2.1.4.bb} (96%)

diff --git a/meta-networking/recipes-connectivity/blueman/blueman_2.1.3.bb b/meta-networking/recipes-connectivity/blueman/blueman_2.1.4.bb
similarity index 96%
rename from meta-networking/recipes-connectivity/blueman/blueman_2.1.3.bb
rename to meta-networking/recipes-connectivity/blueman/blueman_2.1.4.bb
index 9143a67ae..29bef230e 100644
--- a/meta-networking/recipes-connectivity/blueman/blueman_2.1.3.bb
+++ b/meta-networking/recipes-connectivity/blueman/blueman_2.1.4.bb
@@ -11,7 +11,7 @@ SRC_URI = " \
     file://0001-Search-for-cython3.patch \
     file://0002-fix-fail-to-enable-bluetooth.patch \
 "
-SRC_URI[sha256sum] = "3bd02e0cc9e2c1424df1fc2015da710a280ef4c657515727e47eafabf8c2cfde"
+SRC_URI[sha256sum] = "1d9c3d39a564d88851aa8de509f16bfa586b0b50f4307dc6c6347ba4833664da"
 
 EXTRA_OECONF = " \
     --disable-appindicator \
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 37+ messages in thread

* Re: [oe] [PATCH 07/28] xfwm4: upgrade 4.14.5 -> 4.16.0
  2021-01-06 15:16 ` [PATCH 07/28] xfwm4: upgrade 4.14.5 -> 4.16.0 Andreas Müller
@ 2021-01-06 18:55   ` Khem Raj
  2021-01-08 17:25     ` Randy MacLeod
  0 siblings, 1 reply; 37+ messages in thread
From: Khem Raj @ 2021-01-06 18:55 UTC (permalink / raw)
  To: Andreas Müller, openembedded-devel, Mittal, Anuj, Randy MacLeod

Anuj and Randy FYI

On 1/6/21 7:16 AM, Andreas Müller wrote:
> Compositor patch does not apply anymore and testing x86-64 excceeds my
> resources. Looked into Fedora sources: They build xfwm4 un-patched either.
> 
> Release notes for 4.16.0
> ========================
> - common: Avoid zero refresh rate for monitor
> - hints: Protect against XError from XGetTransientFor()
> - netwm: Allow above/below only for regular windows
> - netwm: Mark splashscreen as transient for groups
> - client: Complete client state even on different workspaces
> - build: Increase GTK+ requirement to 3.22
> - Add `cycle_minimized` option
> - compositor: Release overlay window last
> - compositor: Free GLX data when really using GLX
> - compositor: Remove useless trace message
> - compositor: Release current GLX context on teardown
> - display: Remove custom XError handler
> - compositor: Check for XError when adding windows
> - compositor: Trap XErrors when disabling compositor
> - main: Enable compositor by default
> - compositor: Remove automatic redirect support
> - main: Add short command line options
> - main: Add debug command line option
> - pixmap: Use a safer strncpy()
> - settings: Fix compiler warning
> - Remove useless autotools macros and Makefile targets
> - Use --enable-debug=yes when compiling from git
> - Revert "compositor: Do not damage on opaque region update"
> - themes: Use smaller, lighter shadows
> - compositor: Check if compositor is enabled
> - compositor: Avoid XError when disabling compositor
> - compositor: Warn for missing epoxy GL function
> - netwm: Do not raise window if activate is set to none
> - Remove GSourceFunc casts
> - compositor: Fix build with older epoxy versions
> - settings: Add 'Always on top' to the double click action
> - Settings: Remove default alphabetical sorting of keyboard shortcuts
>    Closes: #451 (Disable initial sorting of keyboard shortcuts)
> - compositor: Handle XFixes XError
> - compositor: Add support for GL_ARB_sync
> - compositor: Return early if a Present swap is pending
> - debug: Fix build in debug mode
> - compositor: Fix compilation issue with Xpresent
> - compositor: Log fence and GLX swap time in debug mode
> - compositor: Move fence sync to redraw_glx
> - compositor: Move fence triggered to its own function
> - compositor: Set swap control if possible
> - compositor: Adjust to the actual number of buffers
> - compositor: Use a GLX drawable per buffer
> - client: Allow transients for group to be minimized
> - settings: Add a UI option for desktop zooming
> - themes: Remove title shadow
> - themes: Adjust shadows size/opacity
> - client: Make above/below consistent
> - compositor: Limit damage region to the screen
> - compositor: Optimize repaint without vblank
> - compositor: Only accumulate damage with multiple buffers
> - compositor: Copy entire content for GLX buffers
> - xsync: Handle XError
> - compositor: Ignore opaque region for shaded windows
> - compositor: Clip opaque region against window shape
> - client: Protect against XError in XKillClient()
> - compositor: Do not damage on opaque region update
> - compositor: Opaque region applies to client window
> - compositor: Reuse client size
> - client: Toggle tiling on key shortcut
> - client: Small cleanup
> - Add README.md to EXTRA_DIST
> - client: Keep tiled size of windows
> - compositor: No need to update compositor window on configure
> - compositor: Limit opaque region clipping to window extents
> - compositor: Damage on opaque region update only if visible
> - client: Send synthetic configure on force redraw
> - Post release tag bump
> - Translation Updates:
>    Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Belarusian
>    (Tarask), Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong
>    Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern
>    Armenian, English (Australia), English (Canada), English (United
>    Kingdom), Estonian, Finnish, French, Galician, Georgian, German,
>    Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue,
>    Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay,
>    Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Persian
>    (Iran), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian,
>    Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish,
>    Ukrainian, Urdu, Urdu (Pakistan), Uyghur
> 
> Release notes for 4.15.3
> ========================
> [Please note that this is a development release.]
> 
> - Quick release after 4.15.2 to fix a regression with opaque
>    regions leaving trails of unpainted areas on resize.
> 
> Release notes for 4.15.2
> ========================
> [Please note this is a preview release of a development version]
> 
> - Add support for opaque regions in the compositor
> - Make cursor zoom optional (xfce/xfwm4#439)
> - Remove the deprecated options "--daemon" (Pablo Mazzini)
> - Disable Xi2 support by default
> - Add column sorting in settings
> - Optimize window matching in the compositor with a hash table
>    (Michael Banack)
> - Add more XErrors traps
> - I18n: Updated translations: ar, ast, be, be@tarask, bg, bn, ca,
>    cs, da, de, el, en_AU, en_CA, en_GB, es, et, eu, fa_IR, fi, fr,
>    gl, he, hr, hu, hy_AM, hye, id, ie, is, it, ja, ka, kk, ko, lt,
>    lv, ms, nb, nl, nn, oc, pl, pt, pt_BR, ro, ru, sk, sl, sq, sr,
>    sv, th, tr, ug, uk, ur, ur_PK,
>    vi, zh_CN, zh_HK, zh_TW
>    New translations: be@tarask, fa_IR, hye, ka
> 
> Release notes for 4.15.1
> ========================
> [Please note that this is a development release.]
> 
> - Fix an error leak in compositor (xfce/xfwm4#351)
> - Fix compositor selection atom misuse
> - Prefer zero initialized memory allocation functions
> - Use g_slice allocator for compositor windows
> 
> Release notes for 4.15.0
> ========================
> [Please note that this is a development release.]
> 
> - First 4.15.x development release
> - Show tabwin only on primary monitor if set
> - All fixes and i18n as found in 4.14.4
> 
> Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
> ---
>   ...r-Revert-to-GLX-as-default-vblank-me.patch | 92 -------------------
>   .../{xfwm4_4.14.5.bb => xfwm4_4.16.0.bb}      |  5 +-
>   2 files changed, 2 insertions(+), 95 deletions(-)
>   delete mode 100644 meta-xfce/recipes-xfce/xfwm4/files/0001-Revert-compositor-Revert-to-GLX-as-default-vblank-me.patch
>   rename meta-xfce/recipes-xfce/xfwm4/{xfwm4_4.14.5.bb => xfwm4_4.16.0.bb} (82%)
> 
> diff --git a/meta-xfce/recipes-xfce/xfwm4/files/0001-Revert-compositor-Revert-to-GLX-as-default-vblank-me.patch b/meta-xfce/recipes-xfce/xfwm4/files/0001-Revert-compositor-Revert-to-GLX-as-default-vblank-me.patch
> deleted file mode 100644
> index 04fd623e8..000000000
> --- a/meta-xfce/recipes-xfce/xfwm4/files/0001-Revert-compositor-Revert-to-GLX-as-default-vblank-me.patch
> +++ /dev/null
> @@ -1,92 +0,0 @@
> -From acdceb0b28d86199b8c2233880fa8a04cb24d4d4 Mon Sep 17 00:00:00 2001
> -From: Kai Kang <kai.kang@windriver.com>
> -Date: Wed, 24 Jul 2019 09:48:04 +0800
> -Subject: [PATCH] Revert "compositor: Revert to GLX as default vblank method
> - (again)"
> -
> -This reverts commit e07574d6e7a2dbaa08c3ba4765c6306073d9493e.
> -
> -It sets the default vblank method (auto) to GLX from 4.13.2. But it
> -fails to start xfwm4 on intel-x86-64 boards with error:
> -
> -| xfwm4: ../mesa-19.1.1/src/mesa/drivers/dri/i965/intel_mipmap_tree.c:1293:
> -| intel_miptree_match_image: Assertion `image->TexObject->Target == mt->target' failed.
> -| Aborted
> -
> -There is also a RHEL defect:
> -https://bugzilla.redhat.com/show_bug.cgi?id=1678334
> -
> -Revert the commit to fix the issue.
> -
> -Upstream-Status: Inappropriate [workaround]
> -
> -Signed-off-by: Kai Kang <kai.kang@windriver.com>
> ----
> - src/compositor.c | 41 +++++++++++++++++++----------------------
> - 1 file changed, 19 insertions(+), 22 deletions(-)
> -
> -diff --git a/src/compositor.c b/src/compositor.c
> -index 25615282..daced607 100644
> ---- a/src/compositor.c
> -+++ b/src/compositor.c
> -@@ -4483,13 +4483,28 @@ compositorManageScreen (ScreenInfo *screen_info)
> -     XClearArea (display_info->dpy, screen_info->output, 0, 0, 0, 0, TRUE);
> -     TRACE ("manual compositing enabled");
> -
> -+#ifdef HAVE_PRESENT_EXTENSION
> -+    screen_info->use_present = display_info->have_present &&
> -+                               (screen_info->vblank_mode == VBLANK_AUTO ||
> -+                                screen_info->vblank_mode == VBLANK_XPRESENT);
> -+    if (screen_info->use_present)
> -+    {
> -+        screen_info->present_pending = FALSE;
> -+        XPresentSelectInput (display_info->dpy,
> -+                             screen_info->output,
> -+                             PresentCompleteNotifyMask);
> -+    }
> -+#else /* HAVE_PRESENT_EXTENSION */
> -+    screen_info->use_present = FALSE;
> -+#endif /* HAVE_PRESENT_EXTENSION */
> -+
> - #ifdef HAVE_EPOXY
> --    screen_info->use_glx = (screen_info->vblank_mode == VBLANK_AUTO ||
> --                            screen_info->vblank_mode == VBLANK_GLX);
> -+    screen_info->use_glx = !screen_info->use_present &&
> - #ifdef HAVE_XSYNC
> --    screen_info->use_glx &= display_info->have_xsync;
> -+                            display_info->have_xsync &&
> - #endif /* HAVE_XSYNC */
> --
> -+                            (screen_info->vblank_mode == VBLANK_AUTO ||
> -+                             screen_info->vblank_mode == VBLANK_GLX);
> -     if (screen_info->use_glx)
> -     {
> -         screen_info->glx_context = None;
> -@@ -4503,24 +4518,6 @@ compositorManageScreen (ScreenInfo *screen_info)
> -     screen_info->use_glx = FALSE;
> - #endif /* HAVE_EPOXY */
> -
> --#ifdef HAVE_PRESENT_EXTENSION
> --    screen_info->use_present = display_info->have_present &&
> --#ifdef HAVE_EPOXY
> --                               !screen_info->use_glx &&
> --#endif /* HAVE_EPOXY */
> --                               (screen_info->vblank_mode == VBLANK_AUTO ||
> --                                screen_info->vblank_mode == VBLANK_XPRESENT);
> --    if (screen_info->use_present)
> --    {
> --        screen_info->present_pending = FALSE;
> --        XPresentSelectInput (display_info->dpy,
> --                             screen_info->output,
> --                             PresentCompleteNotifyMask);
> --    }
> --#else /* HAVE_PRESENT_EXTENSION */
> --    screen_info->use_present = FALSE;
> --#endif /* HAVE_PRESENT_EXTENSION */
> --
> -     if (screen_info->use_present)
> -     {
> -         g_info ("Compositor using XPresent for vsync");
> ---
> -2.20.1
> -
> diff --git a/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.14.5.bb b/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.16.0.bb
> similarity index 82%
> rename from meta-xfce/recipes-xfce/xfwm4/xfwm4_4.14.5.bb
> rename to meta-xfce/recipes-xfce/xfwm4/xfwm4_4.16.0.bb
> index f8febe804..3f64365f0 100644
> --- a/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.14.5.bb
> +++ b/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.16.0.bb
> @@ -2,14 +2,13 @@ DESCRIPTION = "Xfce4 Window Manager"
>   SECTION = "x11/wm"
>   LICENSE = "GPLv2"
>   LIC_FILES_CHKSUM = "file://COPYING;md5=d791728a073bc009b4ffaf00b7599855"
> -DEPENDS = "virtual/libx11 libxfce4ui libwnck3 libxinerama exo-native"
> +DEPENDS = "virtual/libx11 libxfce4ui libwnck3 libxinerama"
>   
>   inherit xfce update-alternatives features_check
>   
>   REQUIRED_DISTRO_FEATURES = "x11"
>   
> -SRC_URI += "file://0001-Revert-compositor-Revert-to-GLX-as-default-vblank-me.patch"
> -SRC_URI[sha256sum] = "d7a7c63fa42ec6d7cb3caab130d6f496be5bd7689b775d20e8786b7f3e282930"
> +SRC_URI[sha256sum] = "1e22eae1bbb66cebfd1753b0a5606e76ecbf6b09ce4cdfd732d093c936f1feb3"
>   
>   PACKAGECONFIG ?= " \
>       ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'epoxy', '', d)} \
> 
> 
> 
> 
> 

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: [oe] [PATCH 07/28] xfwm4: upgrade 4.14.5 -> 4.16.0
  2021-01-06 18:55   ` [oe] " Khem Raj
@ 2021-01-08 17:25     ` Randy MacLeod
  2021-01-09  9:11       ` kai
  0 siblings, 1 reply; 37+ messages in thread
From: Randy MacLeod @ 2021-01-08 17:25 UTC (permalink / raw)
  To: Khem Raj, Andreas Müller, openembedded-devel, Mittal, Anuj,
	Kang Kai

On 2021-01-06 1:55 p.m., Khem Raj wrote:
> Anuj and Randy FYI
>
> On 1/6/21 7:16 AM, Andreas Müller wrote:
>> Compositor patch does not apply anymore and testing x86-64 excceeds my
>> resources. Looked into Fedora sources: They build xfwm4 un-patched 
>> either.

Thanks for the heads up Khem.

Kai, can you take a look in the coming days/weeks?

../Randy

>>
>> Release notes for 4.16.0
>> ========================
>> - common: Avoid zero refresh rate for monitor
>> - hints: Protect against XError from XGetTransientFor()
>> - netwm: Allow above/below only for regular windows
>> - netwm: Mark splashscreen as transient for groups
>> - client: Complete client state even on different workspaces
>> - build: Increase GTK+ requirement to 3.22
>> - Add `cycle_minimized` option
>> - compositor: Release overlay window last
>> - compositor: Free GLX data when really using GLX
>> - compositor: Remove useless trace message
>> - compositor: Release current GLX context on teardown
>> - display: Remove custom XError handler
>> - compositor: Check for XError when adding windows
>> - compositor: Trap XErrors when disabling compositor
>> - main: Enable compositor by default
>> - compositor: Remove automatic redirect support
>> - main: Add short command line options
>> - main: Add debug command line option
>> - pixmap: Use a safer strncpy()
>> - settings: Fix compiler warning
>> - Remove useless autotools macros and Makefile targets
>> - Use --enable-debug=yes when compiling from git
>> - Revert "compositor: Do not damage on opaque region update"
>> - themes: Use smaller, lighter shadows
>> - compositor: Check if compositor is enabled
>> - compositor: Avoid XError when disabling compositor
>> - compositor: Warn for missing epoxy GL function
>> - netwm: Do not raise window if activate is set to none
>> - Remove GSourceFunc casts
>> - compositor: Fix build with older epoxy versions
>> - settings: Add 'Always on top' to the double click action
>> - Settings: Remove default alphabetical sorting of keyboard shortcuts
>>    Closes: #451 (Disable initial sorting of keyboard shortcuts)
>> - compositor: Handle XFixes XError
>> - compositor: Add support for GL_ARB_sync
>> - compositor: Return early if a Present swap is pending
>> - debug: Fix build in debug mode
>> - compositor: Fix compilation issue with Xpresent
>> - compositor: Log fence and GLX swap time in debug mode
>> - compositor: Move fence sync to redraw_glx
>> - compositor: Move fence triggered to its own function
>> - compositor: Set swap control if possible
>> - compositor: Adjust to the actual number of buffers
>> - compositor: Use a GLX drawable per buffer
>> - client: Allow transients for group to be minimized
>> - settings: Add a UI option for desktop zooming
>> - themes: Remove title shadow
>> - themes: Adjust shadows size/opacity
>> - client: Make above/below consistent
>> - compositor: Limit damage region to the screen
>> - compositor: Optimize repaint without vblank
>> - compositor: Only accumulate damage with multiple buffers
>> - compositor: Copy entire content for GLX buffers
>> - xsync: Handle XError
>> - compositor: Ignore opaque region for shaded windows
>> - compositor: Clip opaque region against window shape
>> - client: Protect against XError in XKillClient()
>> - compositor: Do not damage on opaque region update
>> - compositor: Opaque region applies to client window
>> - compositor: Reuse client size
>> - client: Toggle tiling on key shortcut
>> - client: Small cleanup
>> - Add README.md to EXTRA_DIST
>> - client: Keep tiled size of windows
>> - compositor: No need to update compositor window on configure
>> - compositor: Limit opaque region clipping to window extents
>> - compositor: Damage on opaque region update only if visible
>> - client: Send synthetic configure on force redraw
>> - Post release tag bump
>> - Translation Updates:
>>    Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Belarusian
>>    (Tarask), Bengali, Bulgarian, Catalan, Chinese (China), Chinese (Hong
>>    Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern
>>    Armenian, English (Australia), English (Canada), English (United
>>    Kingdom), Estonian, Finnish, French, Galician, Georgian, German,
>>    Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue,
>>    Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay,
>>    Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Persian
>>    (Iran), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian,
>>    Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish,
>>    Ukrainian, Urdu, Urdu (Pakistan), Uyghur
>>
>> Release notes for 4.15.3
>> ========================
>> [Please note that this is a development release.]
>>
>> - Quick release after 4.15.2 to fix a regression with opaque
>>    regions leaving trails of unpainted areas on resize.
>>
>> Release notes for 4.15.2
>> ========================
>> [Please note this is a preview release of a development version]
>>
>> - Add support for opaque regions in the compositor
>> - Make cursor zoom optional (xfce/xfwm4#439)
>> - Remove the deprecated options "--daemon" (Pablo Mazzini)
>> - Disable Xi2 support by default
>> - Add column sorting in settings
>> - Optimize window matching in the compositor with a hash table
>>    (Michael Banack)
>> - Add more XErrors traps
>> - I18n: Updated translations: ar, ast, be, be@tarask, bg, bn, ca,
>>    cs, da, de, el, en_AU, en_CA, en_GB, es, et, eu, fa_IR, fi, fr,
>>    gl, he, hr, hu, hy_AM, hye, id, ie, is, it, ja, ka, kk, ko, lt,
>>    lv, ms, nb, nl, nn, oc, pl, pt, pt_BR, ro, ru, sk, sl, sq, sr,
>>    sv, th, tr, ug, uk, ur, ur_PK,
>>    vi, zh_CN, zh_HK, zh_TW
>>    New translations: be@tarask, fa_IR, hye, ka
>>
>> Release notes for 4.15.1
>> ========================
>> [Please note that this is a development release.]
>>
>> - Fix an error leak in compositor (xfce/xfwm4#351)
>> - Fix compositor selection atom misuse
>> - Prefer zero initialized memory allocation functions
>> - Use g_slice allocator for compositor windows
>>
>> Release notes for 4.15.0
>> ========================
>> [Please note that this is a development release.]
>>
>> - First 4.15.x development release
>> - Show tabwin only on primary monitor if set
>> - All fixes and i18n as found in 4.14.4
>>
>> Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
>> ---
>>   ...r-Revert-to-GLX-as-default-vblank-me.patch | 92 -------------------
>>   .../{xfwm4_4.14.5.bb => xfwm4_4.16.0.bb}      |  5 +-
>>   2 files changed, 2 insertions(+), 95 deletions(-)
>>   delete mode 100644 
>> meta-xfce/recipes-xfce/xfwm4/files/0001-Revert-compositor-Revert-to-GLX-as-default-vblank-me.patch
>>   rename meta-xfce/recipes-xfce/xfwm4/{xfwm4_4.14.5.bb => 
>> xfwm4_4.16.0.bb} (82%)
>>
>> diff --git 
>> a/meta-xfce/recipes-xfce/xfwm4/files/0001-Revert-compositor-Revert-to-GLX-as-default-vblank-me.patch 
>> b/meta-xfce/recipes-xfce/xfwm4/files/0001-Revert-compositor-Revert-to-GLX-as-default-vblank-me.patch 
>>
>> deleted file mode 100644
>> index 04fd623e8..000000000
>> --- 
>> a/meta-xfce/recipes-xfce/xfwm4/files/0001-Revert-compositor-Revert-to-GLX-as-default-vblank-me.patch
>> +++ /dev/null
>> @@ -1,92 +0,0 @@
>> -From acdceb0b28d86199b8c2233880fa8a04cb24d4d4 Mon Sep 17 00:00:00 2001
>> -From: Kai Kang <kai.kang@windriver.com>
>> -Date: Wed, 24 Jul 2019 09:48:04 +0800
>> -Subject: [PATCH] Revert "compositor: Revert to GLX as default vblank 
>> method
>> - (again)"
>> -
>> -This reverts commit e07574d6e7a2dbaa08c3ba4765c6306073d9493e.
>> -
>> -It sets the default vblank method (auto) to GLX from 4.13.2. But it
>> -fails to start xfwm4 on intel-x86-64 boards with error:
>> -
>> -| xfwm4: 
>> ../mesa-19.1.1/src/mesa/drivers/dri/i965/intel_mipmap_tree.c:1293:
>> -| intel_miptree_match_image: Assertion `image->TexObject->Target == 
>> mt->target' failed.
>> -| Aborted
>> -
>> -There is also a RHEL defect:
>> -https://bugzilla.redhat.com/show_bug.cgi?id=1678334
>> -
>> -Revert the commit to fix the issue.
>> -
>> -Upstream-Status: Inappropriate [workaround]
>> -
>> -Signed-off-by: Kai Kang <kai.kang@windriver.com>
>> ----
>> - src/compositor.c | 41 +++++++++++++++++++----------------------
>> - 1 file changed, 19 insertions(+), 22 deletions(-)
>> -
>> -diff --git a/src/compositor.c b/src/compositor.c
>> -index 25615282..daced607 100644
>> ---- a/src/compositor.c
>> -+++ b/src/compositor.c
>> -@@ -4483,13 +4483,28 @@ compositorManageScreen (ScreenInfo 
>> *screen_info)
>> -     XClearArea (display_info->dpy, screen_info->output, 0, 0, 0, 0, 
>> TRUE);
>> -     TRACE ("manual compositing enabled");
>> -
>> -+#ifdef HAVE_PRESENT_EXTENSION
>> -+    screen_info->use_present = display_info->have_present &&
>> -+                               (screen_info->vblank_mode == 
>> VBLANK_AUTO ||
>> -+                                screen_info->vblank_mode == 
>> VBLANK_XPRESENT);
>> -+    if (screen_info->use_present)
>> -+    {
>> -+        screen_info->present_pending = FALSE;
>> -+        XPresentSelectInput (display_info->dpy,
>> -+                             screen_info->output,
>> -+                             PresentCompleteNotifyMask);
>> -+    }
>> -+#else /* HAVE_PRESENT_EXTENSION */
>> -+    screen_info->use_present = FALSE;
>> -+#endif /* HAVE_PRESENT_EXTENSION */
>> -+
>> - #ifdef HAVE_EPOXY
>> --    screen_info->use_glx = (screen_info->vblank_mode == VBLANK_AUTO ||
>> --                            screen_info->vblank_mode == VBLANK_GLX);
>> -+    screen_info->use_glx = !screen_info->use_present &&
>> - #ifdef HAVE_XSYNC
>> --    screen_info->use_glx &= display_info->have_xsync;
>> -+                            display_info->have_xsync &&
>> - #endif /* HAVE_XSYNC */
>> -- 
>> -+                            (screen_info->vblank_mode == 
>> VBLANK_AUTO ||
>> -+                             screen_info->vblank_mode == VBLANK_GLX);
>> -     if (screen_info->use_glx)
>> -     {
>> -         screen_info->glx_context = None;
>> -@@ -4503,24 +4518,6 @@ compositorManageScreen (ScreenInfo *screen_info)
>> -     screen_info->use_glx = FALSE;
>> - #endif /* HAVE_EPOXY */
>> -
>> --#ifdef HAVE_PRESENT_EXTENSION
>> --    screen_info->use_present = display_info->have_present &&
>> --#ifdef HAVE_EPOXY
>> --                               !screen_info->use_glx &&
>> --#endif /* HAVE_EPOXY */
>> --                               (screen_info->vblank_mode == 
>> VBLANK_AUTO ||
>> --                                screen_info->vblank_mode == 
>> VBLANK_XPRESENT);
>> --    if (screen_info->use_present)
>> --    {
>> --        screen_info->present_pending = FALSE;
>> --        XPresentSelectInput (display_info->dpy,
>> --                             screen_info->output,
>> --                             PresentCompleteNotifyMask);
>> --    }
>> --#else /* HAVE_PRESENT_EXTENSION */
>> --    screen_info->use_present = FALSE;
>> --#endif /* HAVE_PRESENT_EXTENSION */
>> -- 
>> -     if (screen_info->use_present)
>> -     {
>> -         g_info ("Compositor using XPresent for vsync");
>> ---
>> -2.20.1
>> -
>> diff --git a/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.14.5.bb 
>> b/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.16.0.bb
>> similarity index 82%
>> rename from meta-xfce/recipes-xfce/xfwm4/xfwm4_4.14.5.bb
>> rename to meta-xfce/recipes-xfce/xfwm4/xfwm4_4.16.0.bb
>> index f8febe804..3f64365f0 100644
>> --- a/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.14.5.bb
>> +++ b/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.16.0.bb
>> @@ -2,14 +2,13 @@ DESCRIPTION = "Xfce4 Window Manager"
>>   SECTION = "x11/wm"
>>   LICENSE = "GPLv2"
>>   LIC_FILES_CHKSUM = 
>> "file://COPYING;md5=d791728a073bc009b4ffaf00b7599855"
>> -DEPENDS = "virtual/libx11 libxfce4ui libwnck3 libxinerama exo-native"
>> +DEPENDS = "virtual/libx11 libxfce4ui libwnck3 libxinerama"
>>     inherit xfce update-alternatives features_check
>>     REQUIRED_DISTRO_FEATURES = "x11"
>>   -SRC_URI += 
>> "file://0001-Revert-compositor-Revert-to-GLX-as-default-vblank-me.patch"
>> -SRC_URI[sha256sum] = 
>> "d7a7c63fa42ec6d7cb3caab130d6f496be5bd7689b775d20e8786b7f3e282930"
>> +SRC_URI[sha256sum] = 
>> "1e22eae1bbb66cebfd1753b0a5606e76ecbf6b09ce4cdfd732d093c936f1feb3"
>>     PACKAGECONFIG ?= " \
>>       ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'epoxy', '', 
>> d)} \
>>
>>
>>
>> 
>>

-- 
# Randy MacLeod
# Wind River Linux


^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: [oe] [PATCH 04/28] libxfce4ui: upgrade 4.14.1 -> 4.16.0
  2021-01-06 15:16 ` [PATCH 04/28] libxfce4ui: upgrade 4.14.1 " Andreas Müller
@ 2021-01-08 19:53   ` Khem Raj
  2021-01-08 20:29     ` Andreas Müller
  0 siblings, 1 reply; 37+ messages in thread
From: Khem Raj @ 2021-01-08 19:53 UTC (permalink / raw)
  To: Andreas Müller; +Cc: openembeded-devel

I see an odd failure on qemuriscv64
https://errors.yoctoproject.org/Errors/Details/540832/

On Wed, Jan 6, 2021 at 7:17 AM Andreas Müller <schnitzeltony@gmail.com> wrote:
>
> GTK2 libs are gone so extra GRK2/GTK3 packages can go
>
> Release notes for 4.16.0
> ========================
> - about: Harmonize capitalisation
> - Update credits for Xfce 4.16
> - Translation Updates:
>   Basque, Bulgarian, Catalan, Chinese (Taiwan), Dutch, Galician,
>   Japanese, Lithuanian, Norwegian Bokmål, Portuguese, Portuguese
>   (Brazil), Serbian
>
> Release notes for 4.15.7
> ========================
> [Please note that this is a development release.]
> - libxfce4ui now needs libxfce4util >= 4.15.6
> - Update configure.ac.in syntax
> - Namespace of the gir needs capital first letter
> - Remove hardcoded translators list
> - Bump libepoxy version to 1.2
> - Translation Updates:
>   Portuguese (Brazil), Slovenian, Swedish
>
> Release notes for 4.15.6
> ========================
> [Please note that this is a development release.]
> - Introduce xfce_spawn and xfce_spawn_command_line
>   in favor and instead of xfce_spawn_no_child
> - Bump GLib (and gio, gthread, etc) minimum to 2.50.0
> - about: Support multiple GPUs and print GPU memory size
> - about: Drop window subtitle
> - Always perform sanity check
> - Avoid checking for epoxy if libgtop is disabled
> - XfceTitledDialog: Fix erroneous check (Fixes #30)
> - No startup notification in Wayland to prevent crash (Issue #17)
> - Translation Updates:
>   Chinese (China), Chinese (Taiwan), Estonian, French, German, Hebrew,
>   Indonesian, Italian, Japanese, Lithuanian, Norwegian Bokmål,
>   Portuguese, Portuguese (Brazil), Russian, Serbian, Spanish, Swedish,
>   Turkish
>
> Release notes for 4.15.5
> ========================
> [Please note that this is a development release.]
> - Add new API xfce_spawn_no_child (!8):
>   Launch processes re-parenting them to init vs. as children
> - about: Fix icon names
> - about: Display userspace bitness if it differs from OS kernel bitness
> - about: Print GPU name in system info
> - about: Use more understandable arch labels (Issue #27)
> - Improve xfce_icon_name API
> - No startup notification in wayland to prevent crash (Issue #17)
> - Add missing docstring
> - Fix typos
> - Add README.md to EXTRA_DIST
> - Translation Updates:
>   Catalan, Chinese (China), Danish, Galician, German, Italian,
>   Lithuanian, Turkish
>
> Release notes for 4.15.4
> ========================
> This is a development release of libxfce4ui aiming the upcoming release
> of Xfce 4.16.
>
> - Avoid redundant key re-grabbing
> - Adds new README.md and updates AM_INIT_AUTOMAKE
> - Silence compiler warnings (Fixes #25)
> - AC_CONFIG_MACRO_DIR → AC_CONFIG_MACRO_DIRS
> - Add default shortcuts for tiling (Fixes #4)
> - Avoid shortening the keycodes GArray while walking it.
> - about: Revamp About Xfce tab
> - about: More icon name fixes
> - Add more logo icons and new about icon
> - Update deprecated icon names
> - keyboard-shortcuts: Improve UI for setting shortcuts
> - shortcut-dialog: Add label to clear button
> - shortcut-dialog: Port to new XfceTitledDialog API
> - shortcut-dialog: Only grab keyboard
> - Always return GTK_RESPONSE_OK for accepted shortcut keys (fixes #20)
> - Translation Updates:
>   Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque,
>   Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese
>   (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch,
>   Eastern Armenian, English (Australia), English (United Kingdom),
>   Estonian, Finnish, French, Galician, Georgian, German, Greek, Hebrew,
>   Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese,
>   Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål,
>   Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese,
>   Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian,
>   Spanish, Swedish, Telugu, Thai, Turkish, Ukrainian, Uyghur, Welsh
>
> Release notes for 4.15.3
> ========================
> [Please note that this is a development release.]
>
> - Update bug URLs to point to gitlab.xfce
> - xfce-about: Hide empty email address tags (Fixes #12)
> - Remove translator email address as per request (Fixes #11)
> - Add missing translator "Hugo Carvalho" to xfce4-about (issue #18)
> - Replace deprecated 'gdk_keyboard_ungrab' function (Fixes #15)
> - shortcuts-grabber: Correctly ungrab keys on updating shortcuts (Fixes
>   #16)
> - Add basic GitLab pipeline
> - Allow more granular control over menu item accelerators.
>   - No automatic accelerator activation formenu items
>   - Added 'gtk_menu_item_set_accel_label'
>   - Added 'xfce_gtk_accel_group_connect_action_entries'
> - renamed 'xfce_gtk_accel_group_append' to
>   'xfce_gtk_accel_map_add_entries' and modified internals accordingly.
>   No automatic add to an accel_group any more, since this may lead to
>   double-activation in some cases.
> - Add "xfce_gtk_accel_group_disconnect_action_entries" to be able to
>   revert "xfce_gtk_accel_group_connect_action_entries"
> - Add title to xfce_dialog_confirm_close_tabs
> - Add new methods to libxfce4ui.symbols. Followup of
>   231e57daccb5946379f413ed440629c32025f6f3
> - Translation Updates:
>   Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Basque,
>   Belarusian, Bengali, Bulgarian, Catalan, Chinese (China), Chinese
>   (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch,
>   Eastern Armenian, English (Australia), English (United Kingdom),
>   Estonian, Finnish, French, Galician, German, Greek, Hebrew,
>   Hungarian, Icelandic, Indonesian, Interlingue, Italian, Japanese,
>   Kazakh, Korean, Latvian, Lithuanian, Malay, Norwegian Bokmål,
>   Norwegian Nynorsk, Occitan (post 1500), Polish, Portuguese,
>   Portuguese (Brazil), Romanian, Russian, Serbian, Slovak,
>   Slovenian, Spanish, Swedish, Telugu, Thai, Turkish,
>   Uighur, Ukrainian, Welsh
>
> Release notes for 4.15.2
> ========================
> [Please note that this is a development release.]
>
> - Introduced 'XfceGtkActionEntry' as replacement for the deprecated
>   'GtkAction', 'GtkActionEntry' in order to keep simple menu creation.
>   This includes various support methods, like:
>   'xfce_gtk_translate_action_entries' to to translate a list of
>      XfceGtkActionEntrys
>   'xfce_gtk_accel_group_append' to register the provided
>      accelerators of the entries
>   'xfce_gtk_get_action_entry_by_id' to find a single
>      XfceGtkActionEntry, e.g. by using a enumeration
>   'xfce_gtk_***_new_from_action_entry' to create the specific
>      menu- or tool-items from an XfceGtkActionEntry
> - Add a widget for filename input (Bug #16542)
> - Enabled doc generation for XfceGtkActionEntry and related
>   methods
> - Enabled doc generation for new widget 'xfce-filename-input'
> - Switch Ctrl+Alt+Del to xfce4-session-logout (Bug #11979)
> - Add more default keyboard shortcuts (Bug #16470)
> - shortcuts: Replace xfrun4 by xfce4-appfinder
> - shortcuts: Also map Homepage to browser
> - shortcuts: Remove calculator shortcut
> - Update gitignore
> - Translation Updates:
>   Albanian, Basque, Belarusian, Chinese (China), Chinese (Taiwan),
>   Croatian, Danish, Dutch, French, Galician, German, Hebrew, Hungarian,
>   Kazakh, Malay, Norwegian Bokmål, Portuguese, Portuguese (Brazil),
>   Russian, Serbian, Slovenian, Swedish, Ukrainian
>
> Release notes for 4.15.1
> ========================
> This release introduces the following features:
> - Switch XfceTitledDialog to headerbar/CSD layout
> - Use GtkMessageDialog as base class for Xfce Dialogs
> - Add two new functions to search for app icons
> - Improve Tests and Docs
>
> Full changelog:
> - Switch XfceTitledDialog to headerbar layout
> - XfceTitledDialog: Keep buttons in the action area
> - XfceTitledDialog: Also repack xfce_titled_dialog_new
> - XfceTitledDialog: Make sure windows can be dragged
> - XfceTitledDialog: Add _create_action_area, _add_button
>   and _add_action_widget
> - Introduce xfce_titled_dialog_set_default_response
> - Mark xfce_titled_dialog_new_with_buttons as deprecated
> - Add two new functions to search for app icons
> - xfce-about: Fix Makefile
> - shortcut-dialog: Show dialog content (Bug #16338)
> - xfce-dialogs: Use GtkMessageDialog as base class
> - xfce-dialogs: Improve layout of confirm_close_tabs
> - xfce-dialogs: Improve alignment and layout of dialogs
> - xfce-dialogs: Add right margin back to labels
> - xfce-dialogs: Drop default window titles
> - docs: Add xfce_dialog_confirm_close_tabs
> - tests: Add xfce_dialog_confirm_close_tabs
> - tests: Improve UI
> - tests: Add icons to dialog buttons
> - tests: Simplify code by using XfceTitledDialog
> - tests: Re-order buttons
> - tests: Fix typo in test-ui.c (Bug #16253)
> - Rename test-ui-gtk3 to test-ui
> - Improve docstrings
> - Fix typos
> - Drop gladeui Gtk2 from distcheck options
> - Drop unused declaration
> - Fix compiler warnings
> - Remove trailing whitespace
> - Always provides needed files for vala binding in dist tarball
> - Add recents functions to libxfce4ui.symbols
> - Drop xfce-header from pot files
> - Update docstrings
> - Fix license text box too small (Bug #16259)
> - .gitignore: ignore all .o files
> - Make autogen output friendlier
> - Translation Updates:
>   Albanian, Bulgarian, Catalan, Chinese (China), Croatian, Danish,
>   Dutch, French, Galician, German, Hungarian, Italian, Japanese,
>   Lithuanian, Norwegian Bokmål, Polish, Portuguese, Portuguese
>   (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Swedish,
>   Turkish, Ukrainian
>
> Release notes for 4.15.0
> ========================
> - Drop support for Gtk2
> - Make glibtop an optional dependency ("About System" tab)
> - about: Add system info tab
> - about: Hide system tab conditionally
> - dialogs: Use symbolic window-close icon
> - Fix Window not visible when grabbing keyboard (Bug #16054)
> - Bump Gtk3 to 3.22 (Bug #15781)
> - Do not use gdk_screen_get_monitor_at_point (Bug #15781)
> - Replace gtk_show_uri (Bug #15781)
> - Replace gdk_display_get_screen (Bug #15781)
> - Replace gdk_keymap_get_default (Bug #15781)
> - Replace deprecated device functions (Bug #15781)
> - Replace gdk_error_trap_* and gdk_flush (Bug #15781)
> - Ignore what is hard to replace (Bug #15781)
> - Add a dialog to confirm closure of multiple tabs (bug #15873)
> - Translation Updates:
>   Bulgarian, Chinese (China), Chinese (Taiwan), Croatian, Czech,
>   Danish, Dutch, English (United Kingdom), Finnish, French,
>   Galician, German, Hungarian, Interlingue, Italian, Japanese,
>   Korean, Norwegian Bokmål, Norwegian Nynorsk, Polish, Portuguese,
>   Portuguese (Brazil), Russian, Serbian, Slovak, Slovenian,
>   Spanish, Turkish
>
> Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
> ---
>  ...ivate-xfce4-keyboard-shortcuts.xml-fix.patch |  2 +-
>  ...ibxfce4ui_4.14.1.bb => libxfce4ui_4.16.0.bb} | 17 ++++-------------
>  2 files changed, 5 insertions(+), 14 deletions(-)
>  rename meta-xfce/recipes-xfce/libxfce4ui/{libxfce4ui_4.14.1.bb => libxfce4ui_4.16.0.bb} (50%)
>
> diff --git a/meta-xfce/recipes-xfce/libxfce4ui/files/0001-libxfce4kbd-private-xfce4-keyboard-shortcuts.xml-fix.patch b/meta-xfce/recipes-xfce/libxfce4ui/files/0001-libxfce4kbd-private-xfce4-keyboard-shortcuts.xml-fix.patch
> index 6d107b1b6..616142761 100644
> --- a/meta-xfce/recipes-xfce/libxfce4ui/files/0001-libxfce4kbd-private-xfce4-keyboard-shortcuts.xml-fix.patch
> +++ b/meta-xfce/recipes-xfce/libxfce4ui/files/0001-libxfce4kbd-private-xfce4-keyboard-shortcuts.xml-fix.patch
> @@ -19,7 +19,7 @@ index 723a10d..e6502f3 100644
>  --- a/libxfce4kbd-private/xfce4-keyboard-shortcuts.xml
>  +++ b/libxfce4kbd-private/xfce4-keyboard-shortcuts.xml
>  @@ -75,4 +75,8 @@
> -       <property name="&lt;Primary&gt;F12" type="string" value="workspace_12_key"/>
> +       <property name="<Super>KP_Next" type="string" value="tile_down_right_key"/>
>       </property>
>     </property>
>  +  <property name="providers" type="array">
> diff --git a/meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.14.1.bb b/meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.16.0.bb
> similarity index 50%
> rename from meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.14.1.bb
> rename to meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.16.0.bb
> index 348b685be..7a269ad66 100644
> --- a/meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.14.1.bb
> +++ b/meta-xfce/recipes-xfce/libxfce4ui/libxfce4ui_4.16.0.bb
> @@ -2,17 +2,15 @@ SUMMARY = "Xfce4 Widget library and X Window System interaction"
>  SECTION = "x11/libs"
>  LICENSE = "GPLv2"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=252890d9eee26aab7b432e8b8a616475"
> -DEPENDS = "intltool-native perl-native gtk+ gtk+3 libice libsm libxfce4util xfce4-dev-tools xfconf virtual/libx11"
> +DEPENDS = "intltool-native perl-native gtk+3 libice libsm libxfce4util xfce4-dev-tools xfconf virtual/libx11"
>
>  inherit xfce gtk-doc gobject-introspection features_check
>
>  REQUIRED_DISTRO_FEATURES = "x11"
>
> -SRC_URI += " \
> -    file://0001-libxfce4kbd-private-xfce4-keyboard-shortcuts.xml-fix.patch \
> -"
> -SRC_URI[md5sum] = "50eae4bab5eeced186bce16fb5f802ac"
> -SRC_URI[sha256sum] = "c449075eaeae4d1138d22eeed3d2ad7032b87fb8878eada9b770325bed87f2da"
> +# TODO: Check if this can go
> +SRC_URI += "file://0001-libxfce4kbd-private-xfce4-keyboard-shortcuts.xml-fix.patch"
> +SRC_URI[sha256sum] = "8b06c9e94f4be88a9d87c47592411b6cbc32073e7af9cbd64c7b2924ec90ceaa"
>
>  EXTRA_OECONF += "--with-vendor-info=${DISTRO}"
>
> @@ -20,15 +18,8 @@ PACKAGECONFIG ??= ""
>  PACKAGECONFIG[gladeui2] = "--enable-gladeui2,--disable-gladeui2,glade"
>  PACKAGECONFIG[startup-notification] = "--enable-startup-notification,--disable-startup-notification,startup-notification"
>
> -PACKAGES =+ "${PN}-gtk2 ${PN}-gtk3"
> -FILES_${PN}-gtk2 += "${libdir}/libxfce4ui-1.so.* ${libdir}/libxfce4kbd-private-2.so.*"
> -FILES_${PN}-gtk3 += "${libdir}/libxfce4ui-2.so.* ${libdir}/libxfce4kbd-private-3.so.*"
> -
>  PACKAGES += "${PN}-glade"
>  FILES_${PN}-glade = " \
>      ${libdir}/glade \
>      ${datadir}/glade \
>  "
> -
> -RDEPENDS_${PN}-gtk2 = "${PN}"
> -RDEPENDS_${PN}-gtk3 = "${PN}"
> --
> 2.26.2
>
>
> 
>

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: [oe] [PATCH 04/28] libxfce4ui: upgrade 4.14.1 -> 4.16.0
  2021-01-08 19:53   ` [oe] " Khem Raj
@ 2021-01-08 20:29     ` Andreas Müller
  2021-01-08 20:31       ` Khem Raj
  0 siblings, 1 reply; 37+ messages in thread
From: Andreas Müller @ 2021-01-08 20:29 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

On Fri, Jan 8, 2021 at 8:54 PM Khem Raj <raj.khem@gmail.com> wrote:
>
> I see an odd failure on qemuriscv64
> https://errors.yoctoproject.org/Errors/Details/540832/
Hi Khem,

Have seen this either but assumed it was caused by going back and
forth during tests. Worked around this by cleansstate.

I think there is some race (unrelated to qemuriscv64): when I saw the
error, the file was there. I looked into that already but did not find
suspicious yet. Have put libxfce4ui back on my TODO...

Andreas

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: [oe] [PATCH 04/28] libxfce4ui: upgrade 4.14.1 -> 4.16.0
  2021-01-08 20:29     ` Andreas Müller
@ 2021-01-08 20:31       ` Khem Raj
  2021-01-08 20:46         ` Andreas Müller
  0 siblings, 1 reply; 37+ messages in thread
From: Khem Raj @ 2021-01-08 20:31 UTC (permalink / raw)
  To: Andreas Müller; +Cc: openembeded-devel

On Fri, Jan 8, 2021 at 12:29 PM Andreas Müller <schnitzeltony@gmail.com> wrote:
>
> On Fri, Jan 8, 2021 at 8:54 PM Khem Raj <raj.khem@gmail.com> wrote:
> >
> > I see an odd failure on qemuriscv64
> > https://errors.yoctoproject.org/Errors/Details/540832/
> Hi Khem,
>
> Have seen this either but assumed it was caused by going back and
> forth during tests. Worked around this by cleansstate.
>
> I think there is some race (unrelated to qemuriscv64): when I saw the
> error, the file was there. I looked into that already but did not find
> suspicious yet. Have put libxfce4ui back on my TODO...
>

yeah it seems intermittent, its already in master so will observe how
it fairs in CI builds over few days
and if its too noisy we might need a quick solution

> Andreas

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: [oe] [PATCH 04/28] libxfce4ui: upgrade 4.14.1 -> 4.16.0
  2021-01-08 20:31       ` Khem Raj
@ 2021-01-08 20:46         ` Andreas Müller
  2021-01-09 18:42           ` Khem Raj
  0 siblings, 1 reply; 37+ messages in thread
From: Andreas Müller @ 2021-01-08 20:46 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

On Fri, Jan 8, 2021 at 9:32 PM Khem Raj <raj.khem@gmail.com> wrote:
>
> On Fri, Jan 8, 2021 at 12:29 PM Andreas Müller <schnitzeltony@gmail.com> wrote:
> >
> > On Fri, Jan 8, 2021 at 8:54 PM Khem Raj <raj.khem@gmail.com> wrote:
> > >
> > > I see an odd failure on qemuriscv64
> > > https://errors.yoctoproject.org/Errors/Details/540832/
> > Hi Khem,
> >
> > Have seen this either but assumed it was caused by going back and
> > forth during tests. Worked around this by cleansstate.
> >
> > I think there is some race (unrelated to qemuriscv64): when I saw the
> > error, the file was there. I looked into that already but did not find
> > suspicious yet. Have put libxfce4ui back on my TODO...
> >
>
> yeah it seems intermittent, its already in master so will observe how
> it fairs in CI builds over few days
> and if its too noisy we might need a quick solution
>
If you look in the logs and search for
'TOPDIR/build/tmpfs/hosttools/install -c -m 644
../../libxfce4ui-4.16.0/libxfce4ui/libxfce4ui.h', you'll find it
twice. Seems there are two make jobs doing same (sometimes at the same
time).

This is at least a start...

Andreas

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: [oe] [PATCH 07/28] xfwm4: upgrade 4.14.5 -> 4.16.0
  2021-01-08 17:25     ` Randy MacLeod
@ 2021-01-09  9:11       ` kai
  0 siblings, 0 replies; 37+ messages in thread
From: kai @ 2021-01-09  9:11 UTC (permalink / raw)
  To: Randy MacLeod, Khem Raj, Andreas Müller, openembedded-devel,
	Mittal, Anuj

On 1/9/21 1:25 AM, Randy MacLeod wrote:
> On 2021-01-06 1:55 p.m., Khem Raj wrote:
>> Anuj and Randy FYI
>>
>> On 1/6/21 7:16 AM, Andreas Müller wrote:
>>> Compositor patch does not apply anymore and testing x86-64 excceeds my
>>> resources. Looked into Fedora sources: They build xfwm4 un-patched 
>>> either.
>
> Thanks for the heads up Khem.
>
> Kai, can you take a look in the coming days/weeks?

OK. I'll try it next week.

Regards,
Kai


>
> ../Randy
>
>>>
>>> Release notes for 4.16.0
>>> ========================
>>> - common: Avoid zero refresh rate for monitor
>>> - hints: Protect against XError from XGetTransientFor()
>>> - netwm: Allow above/below only for regular windows
>>> - netwm: Mark splashscreen as transient for groups
>>> - client: Complete client state even on different workspaces
>>> - build: Increase GTK+ requirement to 3.22
>>> - Add `cycle_minimized` option
>>> - compositor: Release overlay window last
>>> - compositor: Free GLX data when really using GLX
>>> - compositor: Remove useless trace message
>>> - compositor: Release current GLX context on teardown
>>> - display: Remove custom XError handler
>>> - compositor: Check for XError when adding windows
>>> - compositor: Trap XErrors when disabling compositor
>>> - main: Enable compositor by default
>>> - compositor: Remove automatic redirect support
>>> - main: Add short command line options
>>> - main: Add debug command line option
>>> - pixmap: Use a safer strncpy()
>>> - settings: Fix compiler warning
>>> - Remove useless autotools macros and Makefile targets
>>> - Use --enable-debug=yes when compiling from git
>>> - Revert "compositor: Do not damage on opaque region update"
>>> - themes: Use smaller, lighter shadows
>>> - compositor: Check if compositor is enabled
>>> - compositor: Avoid XError when disabling compositor
>>> - compositor: Warn for missing epoxy GL function
>>> - netwm: Do not raise window if activate is set to none
>>> - Remove GSourceFunc casts
>>> - compositor: Fix build with older epoxy versions
>>> - settings: Add 'Always on top' to the double click action
>>> - Settings: Remove default alphabetical sorting of keyboard shortcuts
>>>    Closes: #451 (Disable initial sorting of keyboard shortcuts)
>>> - compositor: Handle XFixes XError
>>> - compositor: Add support for GL_ARB_sync
>>> - compositor: Return early if a Present swap is pending
>>> - debug: Fix build in debug mode
>>> - compositor: Fix compilation issue with Xpresent
>>> - compositor: Log fence and GLX swap time in debug mode
>>> - compositor: Move fence sync to redraw_glx
>>> - compositor: Move fence triggered to its own function
>>> - compositor: Set swap control if possible
>>> - compositor: Adjust to the actual number of buffers
>>> - compositor: Use a GLX drawable per buffer
>>> - client: Allow transients for group to be minimized
>>> - settings: Add a UI option for desktop zooming
>>> - themes: Remove title shadow
>>> - themes: Adjust shadows size/opacity
>>> - client: Make above/below consistent
>>> - compositor: Limit damage region to the screen
>>> - compositor: Optimize repaint without vblank
>>> - compositor: Only accumulate damage with multiple buffers
>>> - compositor: Copy entire content for GLX buffers
>>> - xsync: Handle XError
>>> - compositor: Ignore opaque region for shaded windows
>>> - compositor: Clip opaque region against window shape
>>> - client: Protect against XError in XKillClient()
>>> - compositor: Do not damage on opaque region update
>>> - compositor: Opaque region applies to client window
>>> - compositor: Reuse client size
>>> - client: Toggle tiling on key shortcut
>>> - client: Small cleanup
>>> - Add README.md to EXTRA_DIST
>>> - client: Keep tiled size of windows
>>> - compositor: No need to update compositor window on configure
>>> - compositor: Limit opaque region clipping to window extents
>>> - compositor: Damage on opaque region update only if visible
>>> - client: Send synthetic configure on force redraw
>>> - Post release tag bump
>>> - Translation Updates:
>>>    Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Belarusian
>>>    (Tarask), Bengali, Bulgarian, Catalan, Chinese (China), Chinese 
>>> (Hong
>>>    Kong), Chinese (Taiwan), Croatian, Czech, Danish, Dutch, Eastern
>>>    Armenian, English (Australia), English (Canada), English (United
>>>    Kingdom), Estonian, Finnish, French, Galician, Georgian, German,
>>>    Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue,
>>>    Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay,
>>>    Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Persian
>>>    (Iran), Polish, Portuguese, Portuguese (Brazil), Romanian, Russian,
>>>    Serbian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish,
>>>    Ukrainian, Urdu, Urdu (Pakistan), Uyghur
>>>
>>> Release notes for 4.15.3
>>> ========================
>>> [Please note that this is a development release.]
>>>
>>> - Quick release after 4.15.2 to fix a regression with opaque
>>>    regions leaving trails of unpainted areas on resize.
>>>
>>> Release notes for 4.15.2
>>> ========================
>>> [Please note this is a preview release of a development version]
>>>
>>> - Add support for opaque regions in the compositor
>>> - Make cursor zoom optional (xfce/xfwm4#439)
>>> - Remove the deprecated options "--daemon" (Pablo Mazzini)
>>> - Disable Xi2 support by default
>>> - Add column sorting in settings
>>> - Optimize window matching in the compositor with a hash table
>>>    (Michael Banack)
>>> - Add more XErrors traps
>>> - I18n: Updated translations: ar, ast, be, be@tarask, bg, bn, ca,
>>>    cs, da, de, el, en_AU, en_CA, en_GB, es, et, eu, fa_IR, fi, fr,
>>>    gl, he, hr, hu, hy_AM, hye, id, ie, is, it, ja, ka, kk, ko, lt,
>>>    lv, ms, nb, nl, nn, oc, pl, pt, pt_BR, ro, ru, sk, sl, sq, sr,
>>>    sv, th, tr, ug, uk, ur, ur_PK,
>>>    vi, zh_CN, zh_HK, zh_TW
>>>    New translations: be@tarask, fa_IR, hye, ka
>>>
>>> Release notes for 4.15.1
>>> ========================
>>> [Please note that this is a development release.]
>>>
>>> - Fix an error leak in compositor (xfce/xfwm4#351)
>>> - Fix compositor selection atom misuse
>>> - Prefer zero initialized memory allocation functions
>>> - Use g_slice allocator for compositor windows
>>>
>>> Release notes for 4.15.0
>>> ========================
>>> [Please note that this is a development release.]
>>>
>>> - First 4.15.x development release
>>> - Show tabwin only on primary monitor if set
>>> - All fixes and i18n as found in 4.14.4
>>>
>>> Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
>>> ---
>>>   ...r-Revert-to-GLX-as-default-vblank-me.patch | 92 
>>> -------------------
>>>   .../{xfwm4_4.14.5.bb => xfwm4_4.16.0.bb}      |  5 +-
>>>   2 files changed, 2 insertions(+), 95 deletions(-)
>>>   delete mode 100644 
>>> meta-xfce/recipes-xfce/xfwm4/files/0001-Revert-compositor-Revert-to-GLX-as-default-vblank-me.patch
>>>   rename meta-xfce/recipes-xfce/xfwm4/{xfwm4_4.14.5.bb => 
>>> xfwm4_4.16.0.bb} (82%)
>>>
>>> diff --git 
>>> a/meta-xfce/recipes-xfce/xfwm4/files/0001-Revert-compositor-Revert-to-GLX-as-default-vblank-me.patch 
>>> b/meta-xfce/recipes-xfce/xfwm4/files/0001-Revert-compositor-Revert-to-GLX-as-default-vblank-me.patch 
>>>
>>> deleted file mode 100644
>>> index 04fd623e8..000000000
>>> --- 
>>> a/meta-xfce/recipes-xfce/xfwm4/files/0001-Revert-compositor-Revert-to-GLX-as-default-vblank-me.patch
>>> +++ /dev/null
>>> @@ -1,92 +0,0 @@
>>> -From acdceb0b28d86199b8c2233880fa8a04cb24d4d4 Mon Sep 17 00:00:00 2001
>>> -From: Kai Kang <kai.kang@windriver.com>
>>> -Date: Wed, 24 Jul 2019 09:48:04 +0800
>>> -Subject: [PATCH] Revert "compositor: Revert to GLX as default 
>>> vblank method
>>> - (again)"
>>> -
>>> -This reverts commit e07574d6e7a2dbaa08c3ba4765c6306073d9493e.
>>> -
>>> -It sets the default vblank method (auto) to GLX from 4.13.2. But it
>>> -fails to start xfwm4 on intel-x86-64 boards with error:
>>> -
>>> -| xfwm4: 
>>> ../mesa-19.1.1/src/mesa/drivers/dri/i965/intel_mipmap_tree.c:1293:
>>> -| intel_miptree_match_image: Assertion `image->TexObject->Target == 
>>> mt->target' failed.
>>> -| Aborted
>>> -
>>> -There is also a RHEL defect:
>>> -https://bugzilla.redhat.com/show_bug.cgi?id=1678334
>>> -
>>> -Revert the commit to fix the issue.
>>> -
>>> -Upstream-Status: Inappropriate [workaround]
>>> -
>>> -Signed-off-by: Kai Kang <kai.kang@windriver.com>
>>> ----
>>> - src/compositor.c | 41 +++++++++++++++++++----------------------
>>> - 1 file changed, 19 insertions(+), 22 deletions(-)
>>> -
>>> -diff --git a/src/compositor.c b/src/compositor.c
>>> -index 25615282..daced607 100644
>>> ---- a/src/compositor.c
>>> -+++ b/src/compositor.c
>>> -@@ -4483,13 +4483,28 @@ compositorManageScreen (ScreenInfo 
>>> *screen_info)
>>> -     XClearArea (display_info->dpy, screen_info->output, 0, 0, 0, 
>>> 0, TRUE);
>>> -     TRACE ("manual compositing enabled");
>>> -
>>> -+#ifdef HAVE_PRESENT_EXTENSION
>>> -+    screen_info->use_present = display_info->have_present &&
>>> -+                               (screen_info->vblank_mode == 
>>> VBLANK_AUTO ||
>>> -+                                screen_info->vblank_mode == 
>>> VBLANK_XPRESENT);
>>> -+    if (screen_info->use_present)
>>> -+    {
>>> -+        screen_info->present_pending = FALSE;
>>> -+        XPresentSelectInput (display_info->dpy,
>>> -+                             screen_info->output,
>>> -+                             PresentCompleteNotifyMask);
>>> -+    }
>>> -+#else /* HAVE_PRESENT_EXTENSION */
>>> -+    screen_info->use_present = FALSE;
>>> -+#endif /* HAVE_PRESENT_EXTENSION */
>>> -+
>>> - #ifdef HAVE_EPOXY
>>> --    screen_info->use_glx = (screen_info->vblank_mode == 
>>> VBLANK_AUTO ||
>>> --                            screen_info->vblank_mode == VBLANK_GLX);
>>> -+    screen_info->use_glx = !screen_info->use_present &&
>>> - #ifdef HAVE_XSYNC
>>> --    screen_info->use_glx &= display_info->have_xsync;
>>> -+                            display_info->have_xsync &&
>>> - #endif /* HAVE_XSYNC */
>>> -- 
>>> -+                            (screen_info->vblank_mode == 
>>> VBLANK_AUTO ||
>>> -+                             screen_info->vblank_mode == VBLANK_GLX);
>>> -     if (screen_info->use_glx)
>>> -     {
>>> -         screen_info->glx_context = None;
>>> -@@ -4503,24 +4518,6 @@ compositorManageScreen (ScreenInfo 
>>> *screen_info)
>>> -     screen_info->use_glx = FALSE;
>>> - #endif /* HAVE_EPOXY */
>>> -
>>> --#ifdef HAVE_PRESENT_EXTENSION
>>> --    screen_info->use_present = display_info->have_present &&
>>> --#ifdef HAVE_EPOXY
>>> --                               !screen_info->use_glx &&
>>> --#endif /* HAVE_EPOXY */
>>> --                               (screen_info->vblank_mode == 
>>> VBLANK_AUTO ||
>>> --                                screen_info->vblank_mode == 
>>> VBLANK_XPRESENT);
>>> --    if (screen_info->use_present)
>>> --    {
>>> --        screen_info->present_pending = FALSE;
>>> --        XPresentSelectInput (display_info->dpy,
>>> --                             screen_info->output,
>>> --                             PresentCompleteNotifyMask);
>>> --    }
>>> --#else /* HAVE_PRESENT_EXTENSION */
>>> --    screen_info->use_present = FALSE;
>>> --#endif /* HAVE_PRESENT_EXTENSION */
>>> -- 
>>> -     if (screen_info->use_present)
>>> -     {
>>> -         g_info ("Compositor using XPresent for vsync");
>>> ---
>>> -2.20.1
>>> -
>>> diff --git a/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.14.5.bb 
>>> b/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.16.0.bb
>>> similarity index 82%
>>> rename from meta-xfce/recipes-xfce/xfwm4/xfwm4_4.14.5.bb
>>> rename to meta-xfce/recipes-xfce/xfwm4/xfwm4_4.16.0.bb
>>> index f8febe804..3f64365f0 100644
>>> --- a/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.14.5.bb
>>> +++ b/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.16.0.bb
>>> @@ -2,14 +2,13 @@ DESCRIPTION = "Xfce4 Window Manager"
>>>   SECTION = "x11/wm"
>>>   LICENSE = "GPLv2"
>>>   LIC_FILES_CHKSUM = 
>>> "file://COPYING;md5=d791728a073bc009b4ffaf00b7599855"
>>> -DEPENDS = "virtual/libx11 libxfce4ui libwnck3 libxinerama exo-native"
>>> +DEPENDS = "virtual/libx11 libxfce4ui libwnck3 libxinerama"
>>>     inherit xfce update-alternatives features_check
>>>     REQUIRED_DISTRO_FEATURES = "x11"
>>>   -SRC_URI += 
>>> "file://0001-Revert-compositor-Revert-to-GLX-as-default-vblank-me.patch" 
>>>
>>> -SRC_URI[sha256sum] = 
>>> "d7a7c63fa42ec6d7cb3caab130d6f496be5bd7689b775d20e8786b7f3e282930"
>>> +SRC_URI[sha256sum] = 
>>> "1e22eae1bbb66cebfd1753b0a5606e76ecbf6b09ce4cdfd732d093c936f1feb3"
>>>     PACKAGECONFIG ?= " \
>>>       ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'epoxy', '', 
>>> d)} \
>>>
>>>
>>>
>>> 
>>>
>

-- 
Kai Kang
Wind River Linux


^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: [oe] [PATCH 04/28] libxfce4ui: upgrade 4.14.1 -> 4.16.0
  2021-01-08 20:46         ` Andreas Müller
@ 2021-01-09 18:42           ` Khem Raj
  2021-01-10  3:27             ` Andreas Müller
  0 siblings, 1 reply; 37+ messages in thread
From: Khem Raj @ 2021-01-09 18:42 UTC (permalink / raw)
  To: Andreas Müller; +Cc: openembeded-devel

[-- Attachment #1: Type: text/plain, Size: 1407 bytes --]

On Fri, Jan 8, 2021 at 12:46 PM Andreas Müller <schnitzeltony@gmail.com>
wrote:

> On Fri, Jan 8, 2021 at 9:32 PM Khem Raj <raj.khem@gmail.com> wrote:
> >
> > On Fri, Jan 8, 2021 at 12:29 PM Andreas Müller <schnitzeltony@gmail.com>
> wrote:
> > >
> > > On Fri, Jan 8, 2021 at 8:54 PM Khem Raj <raj.khem@gmail.com> wrote:
> > > >
> > > > I see an odd failure on qemuriscv64
> > > > https://errors.yoctoproject.org/Errors/Details/540832/
> > > Hi Khem,
> > >
> > > Have seen this either but assumed it was caused by going back and
> > > forth during tests. Worked around this by cleansstate.
> > >
> > > I think there is some race (unrelated to qemuriscv64): when I saw the
> > > error, the file was there. I looked into that already but did not find
> > > suspicious yet. Have put libxfce4ui back on my TODO...
> > >
> >
> > yeah it seems intermittent, its already in master so will observe how
> > it fairs in CI builds over few days
> > and if its too noisy we might need a quick solution
> >
> If you look in the logs and search for
> 'TOPDIR/build/tmpfs/hosttools/install -c -m 644
> ../../libxfce4ui-4.16.0/libxfce4ui/libxfce4ui.h', you'll find it
> twice. Seems there are two make jobs doing same (sometimes at the same
> time).


That seems to be a install time race we can disable it for do_install
perhaps

>
>
> This is at least a start...
>
> Andreas
>

[-- Attachment #2: Type: text/html, Size: 2316 bytes --]

^ permalink raw reply	[flat|nested] 37+ messages in thread

* Re: [oe] [PATCH 04/28] libxfce4ui: upgrade 4.14.1 -> 4.16.0
  2021-01-09 18:42           ` Khem Raj
@ 2021-01-10  3:27             ` Andreas Müller
  0 siblings, 0 replies; 37+ messages in thread
From: Andreas Müller @ 2021-01-10  3:27 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

On Sat, Jan 9, 2021 at 7:42 PM Khem Raj <raj.khem@gmail.com> wrote:
>
>
>> > > On Fri, Jan 8, 2021 at 8:54 PM Khem Raj <raj.khem@gmail.com> wrote:
>> > > >
>> > > > I see an odd failure on qemuriscv64
>> > > > https://errors.yoctoproject.org/Errors/Details/540832/
>> > > Hi Khem,
>> > >
>> > > Have seen this either but assumed it was caused by going back and
>> > > forth during tests. Worked around this by cleansstate.
>> > >
>> > > I think there is some race (unrelated to qemuriscv64): when I saw the
>> > > error, the file was there. I looked into that already but did not find
>> > > suspicious yet. Have put libxfce4ui back on my TODO...
>> > >
>> >
>> > yeah it seems intermittent, its already in master so will observe how
>> > it fairs in CI builds over few days
>> > and if its too noisy we might need a quick solution
>> >
>> If you look in the logs and search for
>> 'TOPDIR/build/tmpfs/hosttools/install -c -m 644
>> ../../libxfce4ui-4.16.0/libxfce4ui/libxfce4ui.h', you'll find it
>> twice. Seems there are two make jobs doing same (sometimes at the same
>> time).
>
>
> That seems to be a install time race we can disable it for do_install perhaps

Did send a fix here and upstream

Andreas
>>
>>
>>
>> This is at least a start...
>>
>> Andreas

^ permalink raw reply	[flat|nested] 37+ messages in thread

end of thread, other threads:[~2021-01-10  3:28 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-06 15:16 [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0 Andreas Müller
2021-01-06 15:16 ` [PATCH 02/28] libxfce4util: " Andreas Müller
2021-01-06 15:16 ` [PATCH 03/28] xfconf: upgrade 4.14.3 " Andreas Müller
2021-01-06 15:16 ` [PATCH 04/28] libxfce4ui: upgrade 4.14.1 " Andreas Müller
2021-01-08 19:53   ` [oe] " Khem Raj
2021-01-08 20:29     ` Andreas Müller
2021-01-08 20:31       ` Khem Raj
2021-01-08 20:46         ` Andreas Müller
2021-01-09 18:42           ` Khem Raj
2021-01-10  3:27             ` Andreas Müller
2021-01-06 15:16 ` [PATCH 05/28] exo: upgrade 0.12.11 " Andreas Müller
2021-01-06 15:16 ` [PATCH 06/28] garcon: upgrade 0.7.0 -> 0.8.0 Andreas Müller
2021-01-06 15:16 ` [PATCH 07/28] xfwm4: upgrade 4.14.5 -> 4.16.0 Andreas Müller
2021-01-06 18:55   ` [oe] " Khem Raj
2021-01-08 17:25     ` Randy MacLeod
2021-01-09  9:11       ` kai
2021-01-06 15:16 ` [PATCH 08/28] xfce4-settings: upgrade 4.14.3 " Andreas Müller
2021-01-06 15:16 ` [PATCH 09/28] xfce4-panel: upgrade 4.14.4 " Andreas Müller
2021-01-06 15:16 ` [PATCH 10/28] xfce4-session: upgrade 4.14.2 " Andreas Müller
2021-01-06 15:17 ` [PATCH 11/28] xfdesktop: " Andreas Müller
2021-01-06 15:17 ` [PATCH 12/28] xfce4-power-manager: upgrade 1.6.6 " Andreas Müller
2021-01-06 15:17 ` [PATCH 13/28] tumbler: upgrade 0.3.1 " Andreas Müller
2021-01-06 15:17 ` [PATCH 14/28] thunar-volman: upgrade 0.9.5 " Andreas Müller
2021-01-06 15:17 ` [PATCH 15/28] thunar: upgrade 1.8.15 " Andreas Müller
2021-01-06 15:17 ` [PATCH 16/28] xfce4-appfinder: upgrade 4.14.0 " Andreas Müller
2021-01-06 15:17 ` [PATCH 17/28] xfce4-terminal: 0.8.9.2 -> 0.8.10 Andreas Müller
2021-01-06 15:17 ` [PATCH 18/28] xfce4-screensaver: upgrade 0.1.10 -> 4.16.0 Andreas Müller
2021-01-06 15:17 ` [PATCH 19/28] xfce4-taskmanager: remove exo-native from DEPENDS Andreas Müller
2021-01-06 15:17 ` [PATCH 20/28] xfce4-closebutton-plugin: upgrade 0.1.0+ -> 4.16.0 Andreas Müller
2021-01-06 15:17 ` [PATCH 21/28] xfce4-sensors-plugin: upgrade 1.3.92 -> 1.3.95 Andreas Müller
2021-01-06 15:17 ` [PATCH 22/28] xfce4-genmon-plugin: upgrade 4.0.2 -> 4.1.0 Andreas Müller
2021-01-06 15:17 ` [PATCH 23/28] xfce4-hotcorner-plugin: remove Andreas Müller
2021-01-06 15:17 ` [PATCH 24/28] xfce4-embed-plugin: remove for now Andreas Müller
2021-01-06 15:17 ` [PATCH 25/28] xfce4-equake-plugin: " Andreas Müller
2021-01-06 15:17 ` [PATCH 26/28] xfce4-notes-plugin: " Andreas Müller
2021-01-06 15:17 ` [PATCH 27/28] fluidsynth: upgrade 2.1.5 -> 2.1.6 Andreas Müller
2021-01-06 15:17 ` [PATCH 28/28] blueman: upgrade 2.1.3 -> 2.1.4 Andreas Müller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.