summaryrefslogtreecommitdiffstats
path: root/meta-xfce
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@googlemail.com>2017-03-27 23:20:49 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2017-04-18 14:21:47 +0200
commit5dba80cb3e96d99c5d7b391263c7fd9ba6f1dda3 (patch)
treed417aec58fc506d6c11517946c20425d665a97e8 /meta-xfce
parent81ca1e2d7860c7cc92b31b6173d6eb6925fa50cd (diff)
downloadmeta-openembedded-5dba80cb3e96d99c5d7b391263c7fd9ba6f1dda3.tar.gz
xfce4-genmon-plugin: update 3.4.0 -> 4.0.0
Patch was a backport and is now included in tarball Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Diffstat (limited to 'meta-xfce')
-rw-r--r--meta-xfce/recipes-panel-plugins/genmon/files/0001-Allow-timer-period-to-be-set-at-250ms-resolution.-Pa.patch36
-rw-r--r--meta-xfce/recipes-panel-plugins/genmon/xfce4-genmon-plugin_4.0.0.bb (renamed from meta-xfce/recipes-panel-plugins/genmon/xfce4-genmon-plugin_3.4.0.bb)8
2 files changed, 2 insertions, 42 deletions
diff --git a/meta-xfce/recipes-panel-plugins/genmon/files/0001-Allow-timer-period-to-be-set-at-250ms-resolution.-Pa.patch b/meta-xfce/recipes-panel-plugins/genmon/files/0001-Allow-timer-period-to-be-set-at-250ms-resolution.-Pa.patch
deleted file mode 100644
index 28c0eb144..000000000
--- a/meta-xfce/recipes-panel-plugins/genmon/files/0001-Allow-timer-period-to-be-set-at-250ms-resolution.-Pa.patch
+++ /dev/null
@@ -1,36 +0,0 @@
1From 2d5fa307827a7b32af4f7b2ae0604f943e3a6e99 Mon Sep 17 00:00:00 2001
2From: John Lindgren <john.lindgren@aol.com>
3Date: Tue, 21 Aug 2012 19:33:45 -0400
4Subject: [PATCH] Allow timer period to be set at 250ms resolution. Patch
5 from Miguel Guedes. Closes: #9102.
6MIME-Version: 1.0
7Content-Type: text/plain; charset=UTF-8
8Content-Transfer-Encoding: 8bit
9
10Upstream-Status: Applied [1]
11
12[1] http://git.xfce.org/panel-plugins/xfce4-genmon-plugin/commit/?id=2d5fa307827a7b32af4f7b2ae0604f943e3a6e99
13
14Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
15---
16 panel-plugin/config_gui.c | 4 ++--
17 1 files changed, 2 insertions(+), 2 deletions(-)
18
19diff --git a/panel-plugin/config_gui.c b/panel-plugin/config_gui.c
20index a4c891d..90e55c1 100644
21--- a/panel-plugin/config_gui.c
22+++ b/panel-plugin/config_gui.c
23@@ -106,8 +106,8 @@ int genmon_CreateConfigGUI (GtkWidget *vbox1,
24 gtk_widget_show (alignment1);
25 gtk_container_add (GTK_CONTAINER (eventbox1), alignment1);
26
27- wSc_Period_adj = gtk_adjustment_new (15, 1, 60*60*24, 1, 1, 0);
28- wSc_Period = gtk_spin_button_new (GTK_ADJUSTMENT (wSc_Period_adj), 1, 0);
29+ wSc_Period_adj = gtk_adjustment_new (15, .25, 60*60*24, .25, 1, 0);
30+ wSc_Period = gtk_spin_button_new (GTK_ADJUSTMENT (wSc_Period_adj), .25, 2);
31 gtk_widget_show (wSc_Period);
32 gtk_container_add (GTK_CONTAINER (alignment1), wSc_Period);
33 gtk_tooltips_set_tip (tooltips, wSc_Period,
34--
351.7.6.5
36
diff --git a/meta-xfce/recipes-panel-plugins/genmon/xfce4-genmon-plugin_3.4.0.bb b/meta-xfce/recipes-panel-plugins/genmon/xfce4-genmon-plugin_4.0.0.bb
index a13db62a3..0624fe96d 100644
--- a/meta-xfce/recipes-panel-plugins/genmon/xfce4-genmon-plugin_3.4.0.bb
+++ b/meta-xfce/recipes-panel-plugins/genmon/xfce4-genmon-plugin_4.0.0.bb
@@ -5,9 +5,5 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=68ad62c64cc6c620126241fd429e68fe"
5 5
6inherit xfce-panel-plugin 6inherit xfce-panel-plugin
7 7
8SRC_URI += "file://0001-Allow-timer-period-to-be-set-at-250ms-resolution.-Pa.patch" 8SRC_URI[md5sum] = "f28cfbf9c82e758a236c1f5fcbcb8a35"
9 9SRC_URI[sha256sum] = "a7db4f786166643076323dcde99ad12e92383cc29b4b806862d5483ec468c3e3"
10SRC_URI[md5sum] = "24108b339bb040ed360266f53a245224"
11SRC_URI[sha256sum] = "b0a5337b49c85623dc89f3c9e47c7374b1d466af2418033d2d6dfc57a9790387"
12
13S = "${WORKDIR}/xfce4-genmon-plugin-3.4"