[oe] [meta-oe][dunfell][PATCH 1/2] xterm: install xterm and uxterm desktop files

2021-01-06 Thread Dmitry Baryshkov
From: Dmitry Baryshkov 

Modify recipe to install application desktop files for xterm.

Signed-off-by: Dmitry Baryshkov 
Signed-off-by: Khem Raj 
(cherry picked from commit 593f21eda5b119f6408975c6b15e94fb168cc9dc)
---
 meta-oe/recipes-graphics/xorg-app/xterm_353.bb | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/meta-oe/recipes-graphics/xorg-app/xterm_353.bb 
b/meta-oe/recipes-graphics/xorg-app/xterm_353.bb
index 6de704d0b7a8..6376388c2757 100644
--- a/meta-oe/recipes-graphics/xorg-app/xterm_353.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xterm_353.bb
@@ -1,6 +1,6 @@
 require recipes-graphics/xorg-app/xorg-app-common.inc
 SUMMARY = "xterm is the standard terminal emulator for the X Window System"
-DEPENDS = "libxaw xorgproto libxext libxau libxinerama libxpm ncurses"
+DEPENDS = "libxaw xorgproto libxext libxau libxinerama libxpm ncurses 
desktop-file-utils-native"
 
 LIC_FILES_CHKSUM = 
"file://xterm.h;beginline=3;endline=31;md5=996b1ce0584c0747b17b57654cc81e8e"
 
@@ -13,6 +13,9 @@ SRC_URI[sha256sum] = 
"e521d3ee9def61f5d5c911afc74dd5c3a56ce147c7071c74023ea24cac
 PACKAGECONFIG ?= ""
 PACKAGECONFIG[xft] = "--enable-freetype,--disable-freetype,libxft fontconfig 
freetype-native"
 
+# Let xterm install .desktop files
+inherit mime-xdg
+
 EXTRA_OECONF = " --x-includes=${STAGING_INCDIR} \
  --x-libraries=${STAGING_LIBDIR} \
  FREETYPE_CONFIG=${STAGING_BINDIR_CROSS}/freetype-config \
@@ -30,6 +33,10 @@ do_configure() {
 oe_runconf
 }
 
+do_install_append() {
+oe_runmake install-desktop DESTDIR="${D}" 
DESKTOP_FLAGS="--dir=${D}${DESKTOPDIR}"
+}
+
 # busybox can supply resize too
 inherit update-alternatives
 
-- 
2.29.2


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



[oe] [meta-oe][dunfell][PATCH 2/2] xterm: provide virtual/x-terminal-emulator

2021-01-06 Thread Dmitry Baryshkov
From: Dmitry Baryshkov 

Signed-off-by: Dmitry Baryshkov 
Signed-off-by: Khem Raj 
(cherry picked from commit 8826791d795e65851ad20bbc0f34e74b2bf72e07)
---
 meta-oe/recipes-graphics/xorg-app/xterm_353.bb | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/meta-oe/recipes-graphics/xorg-app/xterm_353.bb 
b/meta-oe/recipes-graphics/xorg-app/xterm_353.bb
index 6376388c2757..06c285924d65 100644
--- a/meta-oe/recipes-graphics/xorg-app/xterm_353.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xterm_353.bb
@@ -37,7 +37,12 @@ do_install_append() {
 oe_runmake install-desktop DESTDIR="${D}" 
DESKTOP_FLAGS="--dir=${D}${DESKTOPDIR}"
 }
 
+RPROVIDES_${PN} = "virtual/x-terminal-emulator"
+
 # busybox can supply resize too
 inherit update-alternatives
 
-ALTERNATIVE_${PN} = "resize"
+ALTERNATIVE_${PN} = "resize x-terminal-emulator"
+ALTERNATIVE_TARGET[x-terminal-emulator] = "${bindir}/xterm"
+# rxvt-unicode defaults to priority 10. Let's be one point lower to let it 
override xterm.
+ALTERNATIVE_PRIORITY[x-terminal-emulator] = "9"
-- 
2.29.2


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



[oe] [meta-python][PATCH 10/10] python3-babel: Upgrade 2.8.0 -> 2.9.0

2021-01-06 Thread Leon Anavi
Upgrade to release 2.9.0:

- CLDR: Use CLDR 37
- Dates: Handle ZoneInfo objects in get_timezone_location,
  get_timezone_name
- Numbers: Add group_separator feature in number formatting
- Dates: Correct default Format().timedelta format to 'long' to
  mute deprecation warnings
- Import: Simplify iteration code in "import_cldr.py"
- Import: Stop using deprecated ElementTree methods
  "getchildren()" and "getiterator()"
- Messages: Fix unicode printing error on Python 2 without TTY.
- Messages: Introduce invariant that _invalid_pofile() takes
  unicode line.
- Tests: fix tests when using Python 3.9
- Tests: Remove deprecated 'sudo: false' from Travis configuration
- Tests: Support Py.test 6.x
- Utilities: LazyProxy: Handle AttributeError in specified func
- Utilities: Replace usage of parser.suite with ast.parse

License-Update: Update year

Signed-off-by: Leon Anavi 
---
 .../{python3-babel_2.8.0.bb => python3-babel_2.9.0.bb}   | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-babel_2.8.0.bb => 
python3-babel_2.9.0.bb} (70%)

diff --git a/meta-python/recipes-devtools/python/python3-babel_2.8.0.bb 
b/meta-python/recipes-devtools/python/python3-babel_2.9.0.bb
similarity index 70%
rename from meta-python/recipes-devtools/python/python3-babel_2.8.0.bb
rename to meta-python/recipes-devtools/python/python3-babel_2.9.0.bb
index c69098b226..7248abf33b 100644
--- a/meta-python/recipes-devtools/python/python3-babel_2.8.0.bb
+++ b/meta-python/recipes-devtools/python/python3-babel_2.9.0.bb
@@ -1,10 +1,9 @@
 DESCRIPTION = "A collection of tools for internationalizing Python 
applications"
 HOMEPAGE = "http://babel.edgewall.org/;
 LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=942469df9305abb1c59e95f778310384"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=22a580b27e4ebf9689e466b63aedeb7f"
 
-SRC_URI[md5sum] = "6fad9772e75421969ddb41975483abdf"
-SRC_URI[sha256sum] = 
"1aac2ae2d0d8ea368fa90906567f5c08463d98ade155c0c4bfedd6a0f7160e38"
+SRC_URI[sha256sum] = 
"da031ab54472314f210b0adcff1588ee5d1d1d0ba4dbd07b94dba82bde791e05"
 
 PYPI_PACKAGE = "Babel"
 
-- 
2.17.1


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



[oe] [meta-python][PATCH 09/10] python3-sentry-sdk: Upgrade 0.19.1 -> 0.19.5

2021-01-06 Thread Leon Anavi
Upgrade to release 0.19.5:

- Fix two regressions added in 0.19.2 with regard to sampling
  behavior when reading the sampling decision from headers.
- Increase internal transport queue size and make it configurable.

Signed-off-by: Leon Anavi 
---
 ...thon3-sentry-sdk_0.19.1.bb => python3-sentry-sdk_0.19.5.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-sentry-sdk_0.19.1.bb => 
python3-sentry-sdk_0.19.5.bb} (72%)

diff --git a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.1.bb 
b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.5.bb
similarity index 72%
rename from meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.1.bb
rename to meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.5.bb
index 2da9908e34..bb960eed09 100644
--- a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.1.bb
+++ b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.5.bb
@@ -5,8 +5,7 @@ HOMEPAGE = "https://github.com/getsentry/sentry-python;
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=0c79f8d3c91fc847350efd28bfe0a341"
 
-SRC_URI[md5sum] = "1e6aabe30f4c86356d1d85a9beb0b05a"
-SRC_URI[sha256sum] = 
"5cf36eb6b1dc62d55f3c64289792cbaebc8ffa5a9da14474f49b46d20caa7fc8"
+SRC_URI[sha256sum] = 
"737a094e49a529dd0fdcaafa9e97cf7c3d5eb964bd229821d640bc77f3502b3f"
 
 PYPI_PACKAGE = "sentry-sdk"
 inherit pypi setuptools3
-- 
2.17.1


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



[oe] [meta-python][PATCH 07/10] python3-smbus2: Upgrade 0.3.0 -> 0.4.0

2021-01-06 Thread Leon Anavi
Upgrade to release 0.4.0:

- Support for SMBus PEC (Packet Error Checking).
- Support for Python 3 type hinting and mypy static type analysis.
  Type stubs added to the project.

Signed-off-by: Leon Anavi 
---
 .../{python3-smbus2_0.3.0.bb => python3-smbus2_0.4.0.bb}   | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-smbus2_0.3.0.bb => 
python3-smbus2_0.4.0.bb} (77%)

diff --git a/meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb 
b/meta-python/recipes-devtools/python/python3-smbus2_0.4.0.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb
rename to meta-python/recipes-devtools/python/python3-smbus2_0.4.0.bb
index 7a61927206..1f6f61137e 100644
--- a/meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb
+++ b/meta-python/recipes-devtools/python/python3-smbus2_0.4.0.bb
@@ -6,8 +6,7 @@ LIC_FILES_CHKSUM = 
"file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda
 
 inherit pypi setuptools3
 
-SRC_URI[md5sum] = "d5ed5acc889b4770a84cc932853ed20a"
-SRC_URI[sha256sum] = 
"210e66eebe4d0b1fe836b3ec2751841942e1c4918c0b429b20a0e20a28b4"
+SRC_URI[sha256sum] = 
"1b5c690715e1efab39e41038147dfba75afc72a10f76b3f0310d783e9f8a83a6"
 
 CLEANBROKEN = "1"
 
-- 
2.17.1


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



[oe] [meta-python][PATCH 08/10] python3-cantools: Upgrade 35.5.0 -> 36.1.0

2021-01-06 Thread Leon Anavi
Upgrade to release 36.1.0:

- Added sub command plot
- plot test: parse output of cantools decode
- added plot subcommand to readme
- removed unneeded code

Signed-off-by: Leon Anavi 
---
 .../{python3-cantools_35.5.0.bb => python3-cantools_36.1.0.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-cantools_35.5.0.bb => 
python3-cantools_36.1.0.bb} (74%)

diff --git a/meta-python/recipes-devtools/python/python3-cantools_35.5.0.bb 
b/meta-python/recipes-devtools/python/python3-cantools_36.1.0.bb
similarity index 74%
rename from meta-python/recipes-devtools/python/python3-cantools_35.5.0.bb
rename to meta-python/recipes-devtools/python/python3-cantools_36.1.0.bb
index cb70ed3188..b2f3fd6d82 100644
--- a/meta-python/recipes-devtools/python/python3-cantools_35.5.0.bb
+++ b/meta-python/recipes-devtools/python/python3-cantools_36.1.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/eerimoq/cantools;
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=d9aa4ec07de78abae21c490c9ffe61bd"
 
-SRC_URI[sha256sum] = 
"ce26ab5d54762c314bedc35b407d498b8ae11069ab4d9251f8ac83f2956438f9"
+SRC_URI[sha256sum] = 
"3c4c2652907c48e7013f825cc3068b5d47a38b62f01bd04aaab1d9f69a8f53f5"
 
 PYPI_PACKAGE = "cantools"
 
-- 
2.17.1


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



[oe] [meta-python][PATCH 05/10] python3-transitions: Upgrade 0.8.5 -> 0.8.6

2021-01-06 Thread Leon Anavi
Upgrade to release 0.8.6:

- HierarchicalMachine.add_states will raise a ValueError when an
  Enum name contains the currently used NestedState.separator.
- Bugfix: Reset NestedState._scope when enter/exit callbacks raise
  an exception
- Bugfix: Let HierarchicalMachine._get_trigger which is bound to
  model.trigger raise a MachineError for invalid events and
  AttributeError for unknown events
- Introduced HierarchicalMachine.has_trigger to determine whether
  an event is valid for an HSM
- Feature: AsyncMachine features an event queue dictionary for
  individual models when queued='model'
- Feature: Machine.remove_model will now also remove model events
  from the event queue when queued=True
- Feature: Machine.get_transitions and its HSM counterpart now
  accept Enum and State for source and dest

License-Update: Update year

Signed-off-by: Leon Anavi 
---
 ...hon3-transitions_0.8.5.bb => python3-transitions_0.8.6.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-transitions_0.8.5.bb => 
python3-transitions_0.8.6.bb} (52%)

diff --git a/meta-python/recipes-devtools/python/python3-transitions_0.8.5.bb 
b/meta-python/recipes-devtools/python/python3-transitions_0.8.6.bb
similarity index 52%
rename from meta-python/recipes-devtools/python/python3-transitions_0.8.5.bb
rename to meta-python/recipes-devtools/python/python3-transitions_0.8.6.bb
index 7f88bc1d22..701c82cda8 100644
--- a/meta-python/recipes-devtools/python/python3-transitions_0.8.5.bb
+++ b/meta-python/recipes-devtools/python/python3-transitions_0.8.6.bb
@@ -1,9 +1,9 @@
 SUMMARY = "A lightweight, object-oriented Python state machine implementation 
with many extensions."
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=de0a0876a688a4483bfafa764773ab39"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=baac7be1f4c17620df74188e23da6d47"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = 
"e441c66a0c753d56c01c3e5e547f21dbe4a5569c939f12477475c5e81d79769b"
+SRC_URI[sha256sum] = 
"032e10113139852ffb3ecfa4c2a5138f87441d85c3d6ad9122bb4b0978180a8d"
 
 RDEPENDS_${PN} += "python3-six"
-- 
2.17.1


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



[oe] [meta-python][PATCH 04/10] python3-sqlalchemy: Upgrade 1.3.20 -> 1.3.22

2021-01-06 Thread Leon Anavi
Upgrade to release 1.3.22:

- Fixed regression which occured due to #5755 which implemented
  isolation level support for Oracle. It has been reported that
  many Oracle accounts don't actually have permission to query
  the v$transaction view so this feature has been altered to
  gracefully fallback when it fails upon database connect, where
  the dialect will assume "READ COMMITTED" is the default
  isolation level as was the case prior to SQLAlchemy 1.3.21.
  However, explicit use of the Connection.get_isolation_level()
  method must now necessarily raise an exception, as Oracle
  databases with this restriction explicitly disallow the user
  from reading the current isolation level.

Signed-off-by: Leon Anavi 
---
 ...thon3-sqlalchemy_1.3.20.bb => python3-sqlalchemy_1.3.22.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-sqlalchemy_1.3.20.bb => 
python3-sqlalchemy_1.3.22.bb} (78%)

diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.20.bb 
b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.22.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.20.bb
rename to meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.22.bb
index e8f598ada3..cf127241db 100644
--- a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.20.bb
+++ b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.22.bb
@@ -4,8 +4,7 @@ HOMEPAGE = "http://www.sqlalchemy.org/;
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=c19467890539ff718c00a019c9c7a7b2"
 
-SRC_URI[md5sum] = "40200b570274446a05959abd3fa81778"
-SRC_URI[sha256sum] = 
"d2f25c7f410338d31666d7ddedfa67570900e248b940d186b48461bd4e5569a1"
+SRC_URI[sha256sum] = 
"758fc8c4d6c0336e617f9f6919f9daea3ab6bb9b07005eda9a1a682e24a6cacc"
 
 PYPI_PACKAGE = "SQLAlchemy"
 inherit pypi setuptools3
-- 
2.17.1


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



[oe] [meta-python][PATCH 06/10] python3-pytest-metadata: Upgrade 1.10.0 -> 1.11.0

2021-01-06 Thread Leon Anavi
Upgrade to release 1.11.0:

- Provide a session fixture to include metadata in Junit XMLs
  as property tags

Signed-off-by: Leon Anavi 
---
 ...st-metadata_1.10.0.bb => python3-pytest-metadata_1.11.0.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pytest-metadata_1.10.0.bb 
=> python3-pytest-metadata_1.11.0.bb} (72%)

diff --git 
a/meta-python/recipes-devtools/python/python3-pytest-metadata_1.10.0.bb 
b/meta-python/recipes-devtools/python/python3-pytest-metadata_1.11.0.bb
similarity index 72%
rename from 
meta-python/recipes-devtools/python/python3-pytest-metadata_1.10.0.bb
rename to meta-python/recipes-devtools/python/python3-pytest-metadata_1.11.0.bb
index 70cc98f294..a1b62d16e4 100644
--- a/meta-python/recipes-devtools/python/python3-pytest-metadata_1.10.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pytest-metadata_1.11.0.bb
@@ -4,8 +4,7 @@ DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
 LICENSE = "MPL-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=5d425c8f3157dbf212db2ec53d9e5132"
 
-SRC_URI[sha256sum] = 
"b7e6e0a45adacb17a03a97bf7a2ef60cc1f4e172bcce9732ce5e814191932315"
-SRC_URI[md5sum] = "4fcf9764e6210c4555411fce8109e7cd"
+SRC_URI[sha256sum] = 
"71b506d49d34e539cc3cfdb7ce2c5f072bea5c953320002c95968e0238f8ecf1"
 
 PYPI_PACKAGE = "pytest-metadata"
 
-- 
2.17.1


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



[oe] [meta-python][PATCH 03/10] python3-humanfriendly: Upgrade 8.2 -> 9.1

2021-01-06 Thread Leon Anavi
Upgrade to release 9.1:

- Added on_macos() function to detect Apple MacOS
- Changed format_number() to properly support negative numbers
- Changed pluralize() to generate “1.5 seconds” instead of
  "1.5 second"
- Enhanced concatenate() to support conjunction and serial_comma
  keyword arguments
- Added pluralize_raw() to select singular or plural form without
  prefixing the count to the text that is returned

Signed-off-by: Leon Anavi 
---
 ...thon3-humanfriendly_8.2.bb => python3-humanfriendly_9.1.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-humanfriendly_8.2.bb => 
python3-humanfriendly_9.1.bb} (80%)

diff --git a/meta-python/recipes-devtools/python/python3-humanfriendly_8.2.bb 
b/meta-python/recipes-devtools/python/python3-humanfriendly_9.1.bb
similarity index 80%
rename from meta-python/recipes-devtools/python/python3-humanfriendly_8.2.bb
rename to meta-python/recipes-devtools/python/python3-humanfriendly_9.1.bb
index 61c969d760..fb6a7e3b6d 100644
--- a/meta-python/recipes-devtools/python/python3-humanfriendly_8.2.bb
+++ b/meta-python/recipes-devtools/python/python3-humanfriendly_9.1.bb
@@ -6,8 +6,7 @@ LIC_FILES_CHKSUM = 
"file://LICENSE.txt;md5=764e737b117a38d773609885e8d04f0b"
 
 PYPI_PACKAGE = "humanfriendly"
 
-SRC_URI[md5sum] = "e6064a6fe099c4231c3e969ca5fea335"
-SRC_URI[sha256sum] = 
"bf52ec91244819c780341a3438d5d7b09f431d3f113a475147ac9b7b167a3d12"
+SRC_URI[sha256sum] = 
"066562956639ab21ff2676d1fda0b5987e985c534fc76700a19bd54bcb81121d"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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



[oe] [meta-python][PATCH 02/10] python3-twine: Upgrade 3.2.0 -> 3.3.0

2021-01-06 Thread Leon Anavi
Upgrade to release 3.3.0:

- Print files to be uploaded using upload --verbose
- Print configuration file location when using upload --verbose
- Print source and values of credentials when using upload
  --verbose
- Add support for Python 3.9
- Turn warnings into errors when using check --strict

Signed-off-by: Leon Anavi 
---
 .../python/{python3-twine_3.2.0.bb => python3-twine_3.3.0.bb}  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-twine_3.2.0.bb => 
python3-twine_3.3.0.bb} (68%)

diff --git a/meta-python/recipes-devtools/python/python3-twine_3.2.0.bb 
b/meta-python/recipes-devtools/python/python3-twine_3.3.0.bb
similarity index 68%
rename from meta-python/recipes-devtools/python/python3-twine_3.2.0.bb
rename to meta-python/recipes-devtools/python/python3-twine_3.3.0.bb
index 34309585f8..0bc123 100644
--- a/meta-python/recipes-devtools/python/python3-twine_3.2.0.bb
+++ b/meta-python/recipes-devtools/python/python3-twine_3.3.0.bb
@@ -3,8 +3,7 @@ HOMEPAGE = "https://twine.readthedocs.io/;
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=a3d1106b253a8d50dd82a4202a045b4c"
 
-SRC_URI[md5sum] = "41ce5c8aad253ef4b43b19c76997e2f2"
-SRC_URI[sha256sum] = 
"34352fd52ec3b9d29837e6072d5a2a7c6fe4290e97bba46bb8d478b5c598f7ab"
+SRC_URI[sha256sum] = 
"fcffa8fc37e8083a5be0728371f299598870ee1eccc94e9a25cef7b1dcfa8297"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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



[oe] [meta-python][PATCH 01/10] python3-sympy: Upgrade 1.6.2 -> 1.7.1

2021-01-06 Thread Leon Anavi
Upgrade to release 1.7.1:

- There was a regression in 1.7 that meant that __slots__ would
  not work correctly for Basic instances and they would end up
  having __dict__. This also made it possible to set arbitrary
  attributes on Basic instances such as symbols which breaks
  immutability. This was fixed in 1.7.1 to ensure that Basic
  instances do not have __dict__ and it is not possible to set
  attributes on them.
- Fixed lazy iteration of series with expr.series(x, n=None)
  which was broken in the 1.7 release.
- Updated documentation for sympy.stats.sample for seed argument.
- sympy.stats.sample now has an optional seed argument.
- Random failures with sympy.stats.sample have now been fixed.

Signed-off-by: Leon Anavi 
---
 .../python/{python3-sympy_1.6.2.bb => python3-sympy_1.7.1.bb}  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-sympy_1.6.2.bb => 
python3-sympy_1.7.1.bb} (75%)

diff --git a/meta-python/recipes-devtools/python/python3-sympy_1.6.2.bb 
b/meta-python/recipes-devtools/python/python3-sympy_1.7.1.bb
similarity index 75%
rename from meta-python/recipes-devtools/python/python3-sympy_1.6.2.bb
rename to meta-python/recipes-devtools/python/python3-sympy_1.7.1.bb
index 428b40c3b7..d4508689f6 100644
--- a/meta-python/recipes-devtools/python/python3-sympy_1.6.2.bb
+++ b/meta-python/recipes-devtools/python/python3-sympy_1.7.1.bb
@@ -6,8 +6,7 @@ HOMEPAGE = "https://pypi.org/project/sympy/;
 LICENSE = "BSD"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=ebb06e9df8f57522b72d0edb0fcf83d4"
 
-SRC_URI[md5sum] = "50d6b69b1de36b757484b9ff833a9e0a"
-SRC_URI[sha256sum] = 
"1cfadcc80506e4b793f5b088558ca1fcbeaec24cd6fc86f1fdccaa3ee1d48708"
+SRC_URI[sha256sum] = 
"a3de9261e97535b83bb8607b0da2c7d03126650fafea2b2789657b229c246b2e"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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



Re: [oe] [PATCH 07/28] xfwm4: upgrade 4.14.5 -> 4.16.0

2021-01-06 Thread Khem Raj

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, 

[oe] [meta-multimedia][PATCH 2/2] gupnp: Upgrade to 1.2.2 -> 1.2.4

2021-01-06 Thread Diego Santa Cruz via lists.openembedded.org
gupnp 1.2.3 adds mitigation for CVE-2020-12695 (CallStranger)

Signed-off-by: Diego Santa Cruz 
---
 .../gupnp/{gupnp_1.2.2.bb => gupnp_1.2.4.bb}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-multimedia/recipes-connectivity/gupnp/{gupnp_1.2.2.bb => 
gupnp_1.2.4.bb} (64%)

diff --git a/meta-multimedia/recipes-connectivity/gupnp/gupnp_1.2.2.bb 
b/meta-multimedia/recipes-connectivity/gupnp/gupnp_1.2.4.bb
similarity index 64%
rename from meta-multimedia/recipes-connectivity/gupnp/gupnp_1.2.2.bb
rename to meta-multimedia/recipes-connectivity/gupnp/gupnp_1.2.4.bb
index e60349716..c7b330fa0 100644
--- a/meta-multimedia/recipes-connectivity/gupnp/gupnp_1.2.2.bb
+++ b/meta-multimedia/recipes-connectivity/gupnp/gupnp_1.2.4.bb
@@ -1,8 +1,8 @@
 require gupnp.inc
 
 SRC_URI = "${GNOME_MIRROR}/${BPN}/1.2/${BPN}-${PV}.tar.xz"
-SRC_URI[md5sum] = "2ade3d29c624ad98d70113e6e93908a5"
-SRC_URI[sha256sum] = 
"9a80bd953e5c8772ad26b72f8da01cbe7241a113edd6084903f413ce751c9989"
+SRC_URI[md5sum] = "7c9c7cd80e36d9fb1e5b0267571fc17d"
+SRC_URI[sha256sum] = 
"f7a0307ea51f5e44d1b832f493dd9045444a3a4e211ef85dfd9aa5dd6eaea7d1"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7 \
 
file://libgupnp/gupnp.h;beginline=1;endline=20;md5=d78a69d9b6e63ee2dc72e7b674d97520"
-- 
2.18.4


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



[oe] [meta-multimedia][PATCH 1/2] gssdp: Upgrade to 1.2.2 -> 1.2.3

2021-01-06 Thread Diego Santa Cruz via lists.openembedded.org
Dependency of gupnp 1.2.3

Signed-off-by: Diego Santa Cruz 
---
 .../gupnp/{gssdp_1.2.2.bb => gssdp_1.2.3.bb}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-multimedia/recipes-connectivity/gupnp/{gssdp_1.2.2.bb => 
gssdp_1.2.3.bb} (83%)

diff --git a/meta-multimedia/recipes-connectivity/gupnp/gssdp_1.2.2.bb 
b/meta-multimedia/recipes-connectivity/gupnp/gssdp_1.2.3.bb
similarity index 83%
rename from meta-multimedia/recipes-connectivity/gupnp/gssdp_1.2.2.bb
rename to meta-multimedia/recipes-connectivity/gupnp/gssdp_1.2.3.bb
index ddaddd209..7d82c3e2e 100644
--- a/meta-multimedia/recipes-connectivity/gupnp/gssdp_1.2.2.bb
+++ b/meta-multimedia/recipes-connectivity/gupnp/gssdp_1.2.3.bb
@@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7"
 DEPENDS = "glib-2.0 libsoup-2.4"
 
 SRC_URI = "${GNOME_MIRROR}/${BPN}/1.2/${BPN}-${PV}.tar.xz"
-SRC_URI[md5sum] = "f00a470ebcba96f34def8f83ac5891ed"
-SRC_URI[sha256sum] = 
"cabb9e3b456b8354a55e23eb0207545d974643cda6d623523470ebbc4188b0a4"
+SRC_URI[md5sum] = "ef3295a965c06ce0f683522391fbb910"
+SRC_URI[sha256sum] = 
"a263dcb6730e3b3dc4bbbff80cf3fab4cd364021981d419db6dd5a8e148aa7e8"
 
 GTKDOC_MESON_OPTION = 'gtk_doc'
 
-- 
2.18.4


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



[oe] [PATCH 26/28] xfce4-notes-plugin: remove for now

2021-01-06 Thread Andreas Müller
* 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 
---
 ...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..0
--- 
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?= 
-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 

- 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..0
--- 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_ = 

[oe] [PATCH 28/28] blueman: upgrade 2.1.3 -> 2.1.4

2021-01-06 Thread Andreas Müller
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 
---
 .../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


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



[oe] [PATCH 24/28] xfce4-embed-plugin: remove for now

2021-01-06 Thread Andreas Müller
* 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 
---
 .../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..0
--- 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


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



[oe] [PATCH 27/28] fluidsynth: upgrade 2.1.5 -> 2.1.6

2021-01-06 Thread Andreas Müller
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 
---
 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


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



[oe] [PATCH 25/28] xfce4-equake-plugin: remove for now

2021-01-06 Thread Andreas Müller
* 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 
---
 .../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..0
--- 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


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



[oe] [PATCH 23/28] xfce4-hotcorner-plugin: remove

2021-01-06 Thread Andreas Müller
* 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 
---
 ...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..0
--- 
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 

- 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..0
--- 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


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



[oe] [PATCH 22/28] xfce4-genmon-plugin: upgrade 4.0.2 -> 4.1.0

2021-01-06 Thread Andreas Müller
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  amd  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 
---
 ...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


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



[oe] [PATCH 21/28] xfce4-sensors-plugin: upgrade 1.3.92 -> 1.3.95

2021-01-06 Thread Andreas Müller
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 
---
 ...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..0
--- 
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 
-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 

- 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 

[oe] [PATCH 20/28] xfce4-closebutton-plugin: upgrade 0.1.0+ -> 4.16.0

2021-01-06 Thread Andreas Müller
Minor adjustments for xfce 4.16 / follow release scheme

Signed-off-by: Andreas Müller 
---
 .../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


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



[oe] [PATCH 19/28] xfce4-taskmanager: remove exo-native from DEPENDS

2021-01-06 Thread Andreas Müller
With xfce 4.16 exo-native is gone

Signed-off-by: Andreas Müller 
---
 .../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


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



[oe] [PATCH 18/28] xfce4-screensaver: upgrade 0.1.10 -> 4.16.0

2021-01-06 Thread Andreas Müller
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 
---
 .../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..0
--- 
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 

-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


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#88569): 
https://lists.openembedded.org/g/openembedded-devel/message/88569
Mute This 

[oe] [PATCH 17/28] xfce4-terminal: 0.8.9.2 -> 0.8.10

2021-01-06 Thread Andreas Müller
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 
---
 .../{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] = 
"9ba23bf86d350ef8a95d2dfb50bbd1bbb2144d82985a779ec28caf47faab"
+SRC_URI[sha256sum] = 
"7a3337c198e01262a0412384823185753ac8a0345be1d6776a7e9bbbcbf33dc7"
 
 RRECOMMENDS_${PN} += "vte-prompt"
-- 
2.26.2


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



[oe] [PATCH 15/28] thunar: upgrade 1.8.15 -> 4.16.0

2021-01-06 Thread Andreas Müller
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, 

[oe] [PATCH 16/28] xfce4-appfinder: upgrade 4.14.0 -> 4.16.0

2021-01-06 Thread Andreas Müller
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 
---
 .../{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


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



[oe] [PATCH 14/28] thunar-volman: upgrade 0.9.5 -> 4.16.0

2021-01-06 Thread Andreas Müller
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 
---
 .../{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


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



[oe] [PATCH 11/28] xfdesktop: upgrade 4.14.2 -> 4.16.0

2021-01-06 Thread Andreas Müller
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 
---
 .../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


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



[oe] [PATCH 13/28] tumbler: upgrade 0.3.1 -> 4.16.0

2021-01-06 Thread Andreas Müller
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 
---
 .../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


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



[oe] [PATCH 12/28] xfce4-power-manager: upgrade 1.6.6 -> 4.16.0

2021-01-06 Thread Andreas Müller
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 
---
 ...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


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

[oe] [PATCH 10/28] xfce4-session: upgrade 4.14.2 -> 4.16.0

2021-01-06 Thread Andreas Müller
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 
---
 .../{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"
 

[oe] [PATCH 09/28] xfce4-panel: upgrade 4.14.4 -> 4.16.0

2021-01-06 Thread Andreas Müller
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 

[oe] [PATCH 08/28] xfce4-settings: upgrade 4.14.3 -> 4.16.0

2021-01-06 Thread Andreas Müller
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 

[oe] [PATCH 04/28] libxfce4ui: upgrade 4.14.1 -> 4.16.0

2021-01-06 Thread Andreas Müller
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
  

[oe] [PATCH 07/28] xfwm4: upgrade 4.14.5 -> 4.16.0

2021-01-06 Thread Andreas Müller
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, 

[oe] [PATCH 05/28] exo: upgrade 0.12.11 -> 4.16.0

2021-01-06 Thread Andreas Müller
* 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 
---
 .../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


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



[oe] [PATCH 06/28] garcon: upgrade 0.7.0 -> 0.8.0

2021-01-06 Thread Andreas Müller
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 
---
 .../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


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



[oe] [PATCH 03/28] xfconf: upgrade 4.14.3 -> 4.16.0

2021-01-06 Thread Andreas Müller
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 
---
 .../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


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



[oe] [PATCH 02/28] libxfce4util: upgrade 4.14.0 -> 4.16.0

2021-01-06 Thread Andreas Müller
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 
---
 .../{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


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



[oe] [PATCH 01/28] xfce4-dev-tools: upgrade 4.14.0 -> 4.16.0

2021-01-06 Thread Andreas Müller
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 
---
 ...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 0..74b1679ab
--- 

Re: [oe] [meta-oe][PATCH] vboxguestdrivers: Fix build with kernel 5.10

2021-01-06 Thread Bruce Ashfield
On Wed, Jan 6, 2021 at 12:30 AM Khem Raj  wrote:
>
> I have altered your patch a little which makes 32bit builds happy too
>
> http://sprunge.us/jqxsFO
>
> I think this should be ok for us to live with.

Yup. No concerns here.

Bruce

>
> On Tue, Jan 5, 2021 at 9:22 AM Khem Raj  wrote:
> >
> >
> >
> > On 1/5/21 9:12 AM, Bruce Ashfield wrote:
> > > On Tue, Jan 5, 2021 at 12:05 PM Khem Raj  wrote:
> > >>
> > >>
> > >>
> > >> On 1/5/21 2:50 AM, Jose Quaresma wrote:
> > >>> Hi,
> > >>>
> > >>> I think there are a typo in python version the patch mention 5.9 instead
> > >>> of 3.9
> > >>
> > >> thanks I will fix it
> > >
> > > Ha!
> > >
> > > Sorry about the double send of the fix, I checked the list this
> > > morning and somehow managed to miss this!
> >
> > I think your patch looks better organized so I will pick this one.
> >
> > >
> > > Bruce
> > >
> > >>
> > >>>
> > >>> Khem Raj mailto:raj.k...@gmail.com>> escreveu no
> > >>> dia terça, 5/01/2021 à(s) 04:04:
> > >>>
> > >>>  Signed-off-by: Khem Raj  > >>> >
> > >>>  ---
> > >>>.../0001-support-python-5.9.patch | 129 ++
> > >>>
> > >>>
> > >>> .../0001-support-python-3.9.patch
> > >>>
> > >>>.../0002-Backport-5.10-fixes.patch| 432 
> > >>> ++
> > >>>.../vboxguestdrivers_6.1.16.bb
> > >>>  |   2 +
> > >>>3 files changed, 563 insertions(+)
> > >>>create mode 100644
> > >>>  
> > >>> meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers/0001-support-python-5.9.patch
> > >>>create mode 100644
> > >>>  
> > >>> meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers/0002-Backport-5.10-fixes.patch
> > >>>
> > >>>  diff --git
> > >>>  
> > >>> a/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers/0001-support-python-5.9.patch
> > >>>  
> > >>> b/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers/0001-support-python-5.9.patch
> > >>>  new file mode 100644
> > >>>  index 00..f1c4194633
> > >>>  --- /dev/null
> > >>>  +++
> > >>>  
> > >>> b/meta-oe/recipes-support/vboxguestdrivers/vboxguestdrivers/0001-support-python-5.9.patch
> > >>>  @@ -0,0 +1,129 @@
> > >>>  +From d4df52c9442d44adfc492e8e1b682ab638f10c0c Mon Sep 17 00:00:00 
> > >>> 2001
> > >>>  +From: Khem Raj mailto:raj.k...@gmail.com>>
> > >>>  +Date: Mon, 4 Jan 2021 19:52:10 -0800
> > >>>  +Subject: [PATCH 1/2] support python 5.9
> > >>>
> > >>>
> > >>> Subject: [PATCH 1/2] support python 3.9
> > >>>
> > >>>  +
> > >>>  +Imported from
> > >>>  +
> > >>>  
> > >>> +https://github.com/archlinux/svntogit-community/commit/9276e06052e89615fe8bf3a30d04f5803ad2e539
> > >>>  
> > >>> 
> > >>>  +
> > >>>  +Signed-off-by: Khem Raj  > >>>  >
> > >>>  +---
> > >>>  + configure |  2 +-
> > >>>  + src/libs/xpcom18a4/python/Makefile.kmk| 48 
> > >>> ++-
> > >>>  + src/libs/xpcom18a4/python/gen_python_deps.py  |  2 +-
> > >>>  + .../xpcom18a4/python/src/module/_xpcom.cpp|  6 ++-
> > >>>  + 4 files changed, 54 insertions(+), 4 deletions(-)
> > >>>  +
> > >>>  +diff --git a/configure b/configure
> > >>>  +index 55390478..50f53434 100755
> > >>>  +--- a/configure
> > >>>   b/configure
> > >>>  +@@ -2028,7 +2028,7 @@ extern "C" int main(void)
> > >>>  + }
> > >>>  + EOF
> > >>>  +   found=
> > >>>  +-  SUPPYTHONLIBS="python2.7 python2.6 python3.1 python3.2 
> > >>> python3.3
> > >>>  python3.4 python3.4m python3.5 python3.5m python3.6 python3.6m
> > >>>  python3.7 python3.7m python3.8 python3.8m"
> > >>>  ++  SUPPYTHONLIBS="python2.7 python2.6 python3.1 python3.2 
> > >>> python3.3
> > >>>  python3.4 python3.4m python3.5 python3.5m python3.6 python3.6m
> > >>>  python3.7 python3.7m python3.8 python3.8m python3.9 python3.9m"
> > >>>  +   for p in $PYTHONDIR; do
> > >>>  + for d in $SUPPYTHONLIBS; do
> > >>>  +   for b in lib/x86_64-linux-gnu lib/i386-linux-gnu lib64
> > >>>  lib/64 lib; do
> > >>>  +diff --git a/src/libs/xpcom18a4/python/Makefile.kmk
> > >>>  b/src/libs/xpcom18a4/python/Makefile.kmk
> > >>>  +index f854ea84..afc3d6b3 100644
> > >>>  +--- a/src/libs/xpcom18a4/python/Makefile.kmk
> > >>>   b/src/libs/xpcom18a4/python/Makefile.kmk
> > >>>  +@@ -26,7 +26,7 @@ endif
> > >>>  +
> > >>>  + #
> > >>>  + # List of supported Python versions, defining a number of
> > >>>  +-#
> > >>>  
> > >>> VBOX_PYTHON[26|27|31|32|32M|33|33M|34|34M|35|35M|36|36M|37|37M|38|38M|DEF]_[INC|LIB]
> > >>>  variables
> > >>>  ++#
> > >>>  
> > >>> 

[oe] [meta-oe][PATCH] nspr: Fix build with nativesdk-gcc from buildtools-extended-tarball

2021-01-06 Thread Robert Yang
Fixed when built with nativesdk-gcc from buildtools-extended-tarball:
$ bitbake nspr-native

gcc   abstract.o -Xlinker -L../../dist/lib -lplc4 -L../../dist/lib -lnspr4 
-lpthread -o abstract
/path/to/x86_64-wrlinuxsdk-linux/bin/ld:
/lib/x86_64-linux-gnu/librt.so.1: undefined reference to 
`__clock_getcpuclockid@GLIBC_PRIVATE'
/path/to/x86_64-wrlinuxsdk-linux/bin/ld:
/lib/x86_64-linux-gnu/librt.so.1: undefined reference to 
`__clock_nanosleep@GLIBC_PRIVATE'
/path/to/x86_64-wrlinuxsdk-linux/bin/ld:
/lib/x86_64-linux-gnu/librt.so.1: undefined reference to 
`__clock_settime@GLIBC_PRIVATE'
/path/to/x86_64-wrlinuxsdk-linux/bin/ld:
/lib/x86_64-linux-gnu/librt.so.1: undefined reference to 
`__clock_getres@GLIBC_PRIVATE'

Referred to:
https://github.com/linux-test-project/ltp/issues/255

There should be a bug hidden in nativesdk-gcc or other toolchains, but it's
very had to figure it out. The quick workaround is using "-lpthread -lrt"

Signed-off-by: Robert Yang 
---
 ...ts-Makefile.in-Add-lrt-to-EXTRA_LIBS.patch | 47 +++
 meta-oe/recipes-support/nspr/nspr_4.29.bb |  1 +
 2 files changed, 48 insertions(+)
 create mode 100644 
meta-oe/recipes-support/nspr/nspr/0001-nspr-pr-tests-Makefile.in-Add-lrt-to-EXTRA_LIBS.patch

diff --git 
a/meta-oe/recipes-support/nspr/nspr/0001-nspr-pr-tests-Makefile.in-Add-lrt-to-EXTRA_LIBS.patch
 
b/meta-oe/recipes-support/nspr/nspr/0001-nspr-pr-tests-Makefile.in-Add-lrt-to-EXTRA_LIBS.patch
new file mode 100644
index 0..c71871c34
--- /dev/null
+++ 
b/meta-oe/recipes-support/nspr/nspr/0001-nspr-pr-tests-Makefile.in-Add-lrt-to-EXTRA_LIBS.patch
@@ -0,0 +1,47 @@
+From 4441e9c15684623adb3d5cbd6c2f27c1f3d212ac Mon Sep 17 00:00:00 2001
+From: Robert Yang 
+Date: Tue, 29 Dec 2020 03:57:07 +
+Subject: [PATCH] nspr/pr/tests/Makefile.in: Add -lrt to EXTRA_LIBS
+
+Fixed when built with nativesdk-gcc from buildtools-extended-tarball:
+$ bitbake nspr-native
+
+gcc   abstract.o -Xlinker -L../../dist/lib -lplc4 -L../../dist/lib -lnspr4 
-lpthread -o abstract
+/path/to/x86_64-wrlinuxsdk-linux/bin/ld: 
+/lib/x86_64-linux-gnu/librt.so.1: undefined reference to 
`__clock_getcpuclockid@GLIBC_PRIVATE'
+/path/to/x86_64-wrlinuxsdk-linux/bin/ld: 
+/lib/x86_64-linux-gnu/librt.so.1: undefined reference to 
`__clock_nanosleep@GLIBC_PRIVATE'
+/path/to/x86_64-wrlinuxsdk-linux/bin/ld: 
+/lib/x86_64-linux-gnu/librt.so.1: undefined reference to 
`__clock_settime@GLIBC_PRIVATE'
+/path/to/x86_64-wrlinuxsdk-linux/bin/ld: 
+/lib/x86_64-linux-gnu/librt.so.1: undefined reference to 
`__clock_getres@GLIBC_PRIVATE'
+
+Referred to:
+https://github.com/linux-test-project/ltp/issues/255
+
+There should be a bug hidden in nativesdk-gcc or other toolchains, but it's
+very had to figure it out. The quick workaround is using "-lpthread -lrt"
+
+Upstream-Status: Inappropriate [OE specific]
+
+Signed-off-by: Robert Yang 
+---
+ nspr/pr/tests/Makefile.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/pr/tests/Makefile.in b/pr/tests/Makefile.in
+index 2ccb992..45270e9 100644
+--- a/pr/tests/Makefile.in
 b/pr/tests/Makefile.in
+@@ -274,7 +274,7 @@ endif # SunOS
+ ifeq (,$(filter-out Linux GNU GNU_%,$(OS_ARCH)))
+ LDOPTS += -Xlinker
+ ifeq ($(USE_PTHREADS),1)
+-EXTRA_LIBS = -lpthread
++EXTRA_LIBS = -lpthread -lrt
+ endif
+ endif
+ 
+-- 
+2.29.2
+
diff --git a/meta-oe/recipes-support/nspr/nspr_4.29.bb 
b/meta-oe/recipes-support/nspr/nspr_4.29.bb
index 6307c159e..fa05bc022 100644
--- a/meta-oe/recipes-support/nspr/nspr_4.29.bb
+++ b/meta-oe/recipes-support/nspr/nspr_4.29.bb
@@ -13,6 +13,7 @@ SRC_URI = 
"http://ftp.mozilla.org/pub/nspr/releases/v${PV}/src/nspr-${PV}.tar.gz
file://0001-md-Fix-build-with-musl.patch \
file://Makefile.in-remove-_BUILD_STRING-and-_BUILD_TIME.patch \
file://nspr.pc.in \
+   file://0001-nspr-pr-tests-Makefile.in-Add-lrt-to-EXTRA_LIBS.patch \
 "
 
 CACHED_CONFIGUREVARS_append_libc-musl = " CFLAGS='${CFLAGS} 
-D_PR_POLL_AVAILABLE \
-- 
2.17.1


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