All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Andreas Müller" <schnitzeltony@gmail.com>
To: openembedded-devel@lists.openembedded.org
Subject: [PATCH 21/28] xfce4-sensors-plugin: upgrade 1.3.92 -> 1.3.95
Date: Wed,  6 Jan 2021 16:17:10 +0100	[thread overview]
Message-ID: <20210106151717.1779543-21-schnitzeltony@gmail.com> (raw)
In-Reply-To: <20210106151717.1779543-1-schnitzeltony@gmail.com>

First version compatible to xfce 4.16

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

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

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


  parent reply	other threads:[~2021-01-06 15:17 UTC|newest]

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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210106151717.1779543-21-schnitzeltony@gmail.com \
    --to=schnitzeltony@gmail.com \
    --cc=openembedded-devel@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.