All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/7] libgtop: tidy up recipe
@ 2021-05-11  2:07 Andreas Müller
  2021-05-11  2:07 ` [PATCH 2/7] xfce4-systemload-plugin: upgrade 1.3.0 -> 1.3.1 / introduce PACKAGECONFIGs Andreas Müller
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Andreas Müller @ 2021-05-11  2:07 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 meta-gnome/recipes-gnome/libgtop/libgtop_2.40.0.bb | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/meta-gnome/recipes-gnome/libgtop/libgtop_2.40.0.bb b/meta-gnome/recipes-gnome/libgtop/libgtop_2.40.0.bb
index f0c9cdb0e..63615e433 100644
--- a/meta-gnome/recipes-gnome/libgtop/libgtop_2.40.0.bb
+++ b/meta-gnome/recipes-gnome/libgtop/libgtop_2.40.0.bb
@@ -1,4 +1,4 @@
-SUMMARY = "LibGTop2"
+SUMMARY = "A library for collecting system monitoring data"
 LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
 
@@ -8,9 +8,6 @@ inherit gnomebase lib_package gtk-doc gobject-introspection gettext upstream-ver
 inherit features_check
 REQUIRED_DISTRO_FEATURES = "x11"
 
-SRC_URI[archive.md5sum] = "c6d67325cd97b2208b41e07e6cc7b947"
 SRC_URI[archive.sha256sum] = "78f3274c0c79c434c03655c1b35edf7b95ec0421430897fb1345a98a265ed2d4"
 
 DEPENDS = "glib-2.0 libxau"
-
-EXTRA_OEMAKE += "LIBGTOP_LIBS="
-- 
2.30.2


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

* [PATCH 2/7] xfce4-systemload-plugin: upgrade 1.3.0 -> 1.3.1 / introduce PACKAGECONFIGs
  2021-05-11  2:07 [PATCH 1/7] libgtop: tidy up recipe Andreas Müller
@ 2021-05-11  2:07 ` Andreas Müller
  2021-05-11  2:07 ` [PATCH 3/7] xfce4-clipman-plugin: upgrade 1.6.1 -> 1.6.2 Andreas Müller
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Andreas Müller @ 2021-05-11  2:07 UTC (permalink / raw)
  To: openembedded-devel

* Both dependencies upower/libgtop are optional so add PACKAGECONFIG and enable
  both because they are worth it.
* The term '(uses libgtop as a fallback)' below is a bit misleading: In
  xfce4-systemload-plugin-1.3.1/panel-plugin/network.c we find whole code
  wrapped by #ifdef HAVE_LIBGTOP / #endif. So in case libgtop is not found
  nothing of value is compiled.

1.3.1 (2021-03-22)
=====
- Update README.md
- Update and sort the list of authors
- Add a simple network bandwidth monitor (uses libgtop as a fallback)
- Remove 4-valued history
- Fix initial progress bar value
- Fix system-monitor-command setting (Fixes #15)
- Distinguish uptime from the appearance of a digital real-time clock
- Replace "Options" with "Label" in the properties dialog
- Finish porting to xfconf
- Update docs URL
- Code cleanups
- Translation Updates

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 ...oad-plugin_1.3.0.bb => xfce4-systemload-plugin_1.3.1.bb} | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
 rename meta-xfce/recipes-panel-plugins/systemload/{xfce4-systemload-plugin_1.3.0.bb => xfce4-systemload-plugin_1.3.1.bb} (62%)

diff --git a/meta-xfce/recipes-panel-plugins/systemload/xfce4-systemload-plugin_1.3.0.bb b/meta-xfce/recipes-panel-plugins/systemload/xfce4-systemload-plugin_1.3.1.bb
similarity index 62%
rename from meta-xfce/recipes-panel-plugins/systemload/xfce4-systemload-plugin_1.3.0.bb
rename to meta-xfce/recipes-panel-plugins/systemload/xfce4-systemload-plugin_1.3.1.bb
index e6a5ec0b2..151ce3849 100644
--- a/meta-xfce/recipes-panel-plugins/systemload/xfce4-systemload-plugin_1.3.0.bb
+++ b/meta-xfce/recipes-panel-plugins/systemload/xfce4-systemload-plugin_1.3.1.bb
@@ -5,6 +5,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=9acb172a93ff6c43cce2aff790a8aef8"
 
 inherit xfce-panel-plugin
 
-DEPENDS += "upower"
+PACKAGECONFIG ?= "network power"
+PACKAGECONFIG[power] = ",,upower"
+PACKAGECONFIG[network] = ",,libgtop"
 
-SRC_URI[sha256sum] = "1148f8e90cc53cae9b3aa32e10df4bd9fdc2f06db09d8429f88fbdd874fc171d"
+SRC_URI[sha256sum] = "56d1007801d52d7c2b5a13bb54745f6d7f06fda28b49ce936145633068817652"
-- 
2.30.2


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

* [PATCH 3/7] xfce4-clipman-plugin: upgrade 1.6.1 -> 1.6.2
  2021-05-11  2:07 [PATCH 1/7] libgtop: tidy up recipe Andreas Müller
  2021-05-11  2:07 ` [PATCH 2/7] xfce4-systemload-plugin: upgrade 1.3.0 -> 1.3.1 / introduce PACKAGECONFIGs Andreas Müller
@ 2021-05-11  2:07 ` Andreas Müller
  2021-05-11  2:07 ` [PATCH 4/7] xfce4-panel: upgrade 4.16.2 -> 4.16.3 Andreas Müller
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Andreas Müller @ 2021-05-11  2:07 UTC (permalink / raw)
  To: openembedded-devel

Release notes for 1.6.2
=======================
This stable release targets Xfce 4.16, as it relies on the same GLib
version.

- Add G_GNUC_FALLTHROUGH definition if GLib < 2.60
- Remove obsolete GTK_CHECK_VERSION checks
- Fix function prototypes
- Remove GSourceFunc casts
- Fix compilation warnings
- automake: Enable subdir-objects
- autoconf: Some updates
- Check for `locale.h` required in release mode
- Update `.gitignore`
- Require gtk 3.22.29
- Fix GCC warnings
- Fix return type of grab_keyboard
- Add README.md
- Avoid deprecated warnings with Gdk >= 3.22
- Add basic GitLab pipeline
- Bug #16717: Move from exo-csource to xdt-csource
- Make settings window title translateable (Bug #16625)
- history: Re-enable singleton
- menu: Indicate primary and clipboard content
- menu: Indicate the primary clipboard item
- Speed up shutdown and paste
- Correct location of appstream info
- Fix a couple of grammatical errors
- Translation Updates

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 ...clipman-plugin_1.6.1.bb => xfce4-clipman-plugin_1.6.2.bb} | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
 rename meta-xfce/recipes-panel-plugins/clipman/{xfce4-clipman-plugin_1.6.1.bb => xfce4-clipman-plugin_1.6.2.bb} (70%)

diff --git a/meta-xfce/recipes-panel-plugins/clipman/xfce4-clipman-plugin_1.6.1.bb b/meta-xfce/recipes-panel-plugins/clipman/xfce4-clipman-plugin_1.6.2.bb
similarity index 70%
rename from meta-xfce/recipes-panel-plugins/clipman/xfce4-clipman-plugin_1.6.1.bb
rename to meta-xfce/recipes-panel-plugins/clipman/xfce4-clipman-plugin_1.6.2.bb
index f2a145f5c..631702667 100644
--- a/meta-xfce/recipes-panel-plugins/clipman/xfce4-clipman-plugin_1.6.1.bb
+++ b/meta-xfce/recipes-panel-plugins/clipman/xfce4-clipman-plugin_1.6.2.bb
@@ -8,10 +8,9 @@ inherit xfce-panel-plugin
 
 DEPENDS += "xfconf xorgproto libxtst"
 
-SRC_URI[md5sum] = "c9306940c0ca7abd838a14c9d19b3a7e"
-SRC_URI[sha256sum] = "b3e8317796289196fa78c4526626fe061fd35d11e848cf300ca1ace47febceb4"
+SRC_URI[sha256sum] = "ab8a5fe6f68fb1789190e498243a1d1385de3f64e984f470cbd3d1eb779399b8"
 
 PACKAGECONFIG ??= ""
 PACKAGECONFIG[qrencode] = "--enable-libqrencode,--disable-libqrencode,qrencode"
 
-FILES_${PN} += "${datadir}/appdata"
+FILES_${PN} += "${datadir}/metainfo"
-- 
2.30.2


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

* [PATCH 4/7] xfce4-panel: upgrade 4.16.2 -> 4.16.3
  2021-05-11  2:07 [PATCH 1/7] libgtop: tidy up recipe Andreas Müller
  2021-05-11  2:07 ` [PATCH 2/7] xfce4-systemload-plugin: upgrade 1.3.0 -> 1.3.1 / introduce PACKAGECONFIGs Andreas Müller
  2021-05-11  2:07 ` [PATCH 3/7] xfce4-clipman-plugin: upgrade 1.6.1 -> 1.6.2 Andreas Müller
@ 2021-05-11  2:07 ` Andreas Müller
  2021-05-11  2:07 ` [PATCH 5/7] fluidsynth: upgrade 2.2.0 -> 2.2.1 Andreas Müller
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Andreas Müller @ 2021-05-11  2:07 UTC (permalink / raw)
  To: openembedded-devel

Release notes for 4.16.3
========================
- panel: Change width of default panel-2 to 1% (Fixes #454)
- panel: Fix xfce4-panel-CRITICAL
- panel: Fix xfce4-panel-CRITICAL when already running
- libxfce4panel: Do not destroy context menu if popped up (Fixes #442)
- launcher: Check for menu item initialization
- launcher: Fix garcon-CRITICAL at startup
- systray: Fix GObject-CRITICAL
- systray: Fix Gtk-CRITICAL at startup/shutdown
- systray: Fix libsystray-CRITICAL
- tasklist: Fix Gtk-CRITICAL
- Silent `-Wcast-align` from Clang
- Translation Updates

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

diff --git a/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.16.2.bb b/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.16.3.bb
similarity index 94%
rename from meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.16.2.bb
rename to meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.16.3.bb
index 7e54022ff..d478e0ffa 100644
--- a/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.16.2.bb
+++ b/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.16.3.bb
@@ -8,7 +8,7 @@ inherit xfce gtk-doc gobject-introspection features_check remove-libtool mime-xd
 
 REQUIRED_DISTRO_FEATURES = "x11"
 
-SRC_URI[sha256sum] = "8634166e6f14318daec363f7e2371d49b98986f9bce313a7dd1554f30b48b5cf"
+SRC_URI[sha256sum] = "5934eaed8a76da52c29b734ccd79600255420333dd6ebd8fd9f066379af1e092"
 SRC_URI += " \
     file://0001-windowmenu-do-not-display-desktop-icon-when-no-windo.patch \
     file://0002-use-lxdm-to-replace-dm-tool.patch \
-- 
2.30.2


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

* [PATCH 5/7] fluidsynth: upgrade 2.2.0 -> 2.2.1
  2021-05-11  2:07 [PATCH 1/7] libgtop: tidy up recipe Andreas Müller
                   ` (2 preceding siblings ...)
  2021-05-11  2:07 ` [PATCH 4/7] xfce4-panel: upgrade 4.16.2 -> 4.16.3 Andreas Müller
@ 2021-05-11  2:07 ` Andreas Müller
  2021-05-11  2:07 ` [PATCH 6/7] gparted: upgrade 1.2.0 -> 1.3.0 Andreas Müller
  2021-05-11  2:07 ` [PATCH 7/7] poppler: upgrade 21.04.0 -> 21.05.0 Andreas Müller
  5 siblings, 0 replies; 7+ messages in thread
From: Andreas Müller @ 2021-05-11  2:07 UTC (permalink / raw)
  To: openembedded-devel

* Make ALSA the default driver on Linux (#878)
* Coreaudio driver failed to initialize on MacOS 11 (#803, thanks to @ringoz)
* WaveOut driver failed to initialize (#873, thanks to @carlo-bramini)
* COM initialization in WASAPI driver is no longer performed in the caller's
  context (#839, thanks to @pedrolcl)
* WASPI driver now supports reverb and chorus (#836, thanks to @chirs241097)
* Handle SysEx GM/GM2 mode on, GS reset, and XG reset (#877, thanks to @kode54)
* Old behaviour of fluid_player_join has been restored to prevent infinite loop
  in client code (#872)
* The Soundfont loader code has been refactored, illegal generators will now be
  skipped more consequently (#823, thanks to @mawe42)

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

diff --git a/meta-multimedia/recipes-multimedia/fluidsynth/fluidsynth.inc b/meta-multimedia/recipes-multimedia/fluidsynth/fluidsynth.inc
index 63ba54c34..a8c8b4cd3 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"
-SRCREV = "8413c35aca641567baf13e9b16e9839019ebf99d"
+SRCREV = "90a6c52e1c347d1c4283b0de9f860ed2fbc413bc"
 S = "${WORKDIR}/git"
-PV = "2.2.0"
+PV = "2.2.1"
 
 inherit cmake pkgconfig lib_package
-- 
2.30.2


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

* [PATCH 6/7] gparted: upgrade 1.2.0 -> 1.3.0
  2021-05-11  2:07 [PATCH 1/7] libgtop: tidy up recipe Andreas Müller
                   ` (3 preceding siblings ...)
  2021-05-11  2:07 ` [PATCH 5/7] fluidsynth: upgrade 2.2.0 -> 2.2.1 Andreas Müller
@ 2021-05-11  2:07 ` Andreas Müller
  2021-05-11  2:07 ` [PATCH 7/7] poppler: upgrade 21.04.0 -> 21.05.0 Andreas Müller
  5 siblings, 0 replies; 7+ messages in thread
From: Andreas Müller @ 2021-05-11  2:07 UTC (permalink / raw)
  To: openembedded-devel

The GParted 1.3.0 release includes some new features in addition to bug
fixes, and language translation updates.

Key changes include:
     - Support resizing open LUKS2 encryption mappings
     - Improve exFAT support such as read FS usage and set UUID
     - Fix crash in Create New Partition dialog when changing type
     - Avoid GParted hanging when non-named device is hung

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../gparted/{gparted_1.2.0.bb => gparted_1.3.0.bb}              | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-gnome/recipes-extended/gparted/{gparted_1.2.0.bb => gparted_1.3.0.bb} (91%)

diff --git a/meta-gnome/recipes-extended/gparted/gparted_1.2.0.bb b/meta-gnome/recipes-extended/gparted/gparted_1.3.0.bb
similarity index 91%
rename from meta-gnome/recipes-extended/gparted/gparted_1.2.0.bb
rename to meta-gnome/recipes-extended/gparted/gparted_1.3.0.bb
index d0a499e6e..4eb383bbf 100644
--- a/meta-gnome/recipes-extended/gparted/gparted_1.2.0.bb
+++ b/meta-gnome/recipes-extended/gparted/gparted_1.3.0.bb
@@ -11,7 +11,7 @@ SRC_URI = " \
     ${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}/${BPN}-${PV}/${BPN}-${PV}.tar.gz \
     file://0001-Install-polkit-action-unconditionally-executable-pke.patch \
 "
-SRC_URI[sha256sum] = "6c90715d254d7a7ec0208b29007b64160dd9fb7df4c4aa7f8ec2c9d23114c719"
+SRC_URI[sha256sum] = "8dc180245dd9ea45e6e2f4bc69512f187e08be7f799c98a825a0b04c161cbd2a"
 
 DEPENDS += " \
     glib-2.0-native \
-- 
2.30.2


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

* [PATCH 7/7] poppler: upgrade 21.04.0 -> 21.05.0
  2021-05-11  2:07 [PATCH 1/7] libgtop: tidy up recipe Andreas Müller
                   ` (4 preceding siblings ...)
  2021-05-11  2:07 ` [PATCH 6/7] gparted: upgrade 1.2.0 -> 1.3.0 Andreas Müller
@ 2021-05-11  2:07 ` Andreas Müller
  5 siblings, 0 replies; 7+ messages in thread
From: Andreas Müller @ 2021-05-11  2:07 UTC (permalink / raw)
  To: openembedded-devel

Release 21.05.0

core:
 * Fix crashes in malformed files
 * Export SplashFont* symbols used by Scribus
 * Minor code improvements

qt5/qt6:
 * Make sure new signatures are always properly oriented
 * Allow to pass the border width when signing

glib:
 * Enhance find to support multi-line matching

utils:
 * pdftoppm: Fix regression when using single scaleTo. Issue #1062

build system:
 * Allow to disable building manual tests

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
---
 .../poppler/{poppler_21.04.0.bb => poppler_21.05.0.bb}          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-support/poppler/{poppler_21.04.0.bb => poppler_21.05.0.bb} (96%)

diff --git a/meta-oe/recipes-support/poppler/poppler_21.04.0.bb b/meta-oe/recipes-support/poppler/poppler_21.05.0.bb
similarity index 96%
rename from meta-oe/recipes-support/poppler/poppler_21.04.0.bb
rename to meta-oe/recipes-support/poppler/poppler_21.05.0.bb
index de5f38036..4cfc5bd86 100644
--- a/meta-oe/recipes-support/poppler/poppler_21.04.0.bb
+++ b/meta-oe/recipes-support/poppler/poppler_21.05.0.bb
@@ -7,7 +7,7 @@ SRC_URI = "http://poppler.freedesktop.org/${BP}.tar.xz \
            file://0001-Do-not-overwrite-all-our-build-flags.patch \
            file://basename-include.patch \
            "
-SRC_URI[sha256sum] = "5e2219656c6bbd36154133fef2e12b7d0938464518827098b29a10b1697ea79c"
+SRC_URI[sha256sum] = "dafd537b680fad1215bc40fc53d1f38e8449d7c185bc60d5a89e1d26c90dbd8c"
 
 DEPENDS = "fontconfig zlib cairo lcms glib-2.0"
 
-- 
2.30.2


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

end of thread, other threads:[~2021-05-11  2:07 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-11  2:07 [PATCH 1/7] libgtop: tidy up recipe Andreas Müller
2021-05-11  2:07 ` [PATCH 2/7] xfce4-systemload-plugin: upgrade 1.3.0 -> 1.3.1 / introduce PACKAGECONFIGs Andreas Müller
2021-05-11  2:07 ` [PATCH 3/7] xfce4-clipman-plugin: upgrade 1.6.1 -> 1.6.2 Andreas Müller
2021-05-11  2:07 ` [PATCH 4/7] xfce4-panel: upgrade 4.16.2 -> 4.16.3 Andreas Müller
2021-05-11  2:07 ` [PATCH 5/7] fluidsynth: upgrade 2.2.0 -> 2.2.1 Andreas Müller
2021-05-11  2:07 ` [PATCH 6/7] gparted: upgrade 1.2.0 -> 1.3.0 Andreas Müller
2021-05-11  2:07 ` [PATCH 7/7] poppler: upgrade 21.04.0 -> 21.05.0 Andreas Müller

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