diff options
author | Andreas Müller <schnitzeltony@gmail.com> | 2021-05-11 04:07:20 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-05-11 08:27:27 -0700 |
commit | c6574d7ef9a4d9993eaf6b467822d2304799ded4 (patch) | |
tree | 45748866f7f829d768bef8c3783a0f03f9572bcb /meta-xfce | |
parent | 55c0d740bc3553005b8a9e79b172231142c30d20 (diff) | |
download | meta-openembedded-c6574d7ef9a4d9993eaf6b467822d2304799ded4.tar.gz |
xfce4-systemload-plugin: upgrade 1.3.0 -> 1.3.1 / introduce PACKAGECONFIGs
* 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>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-xfce')
-rw-r--r-- | meta-xfce/recipes-panel-plugins/systemload/xfce4-systemload-plugin_1.3.1.bb (renamed from meta-xfce/recipes-panel-plugins/systemload/xfce4-systemload-plugin_1.3.0.bb) | 6 |
1 files changed, 4 insertions, 2 deletions
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 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" | |||
5 | 5 | ||
6 | inherit xfce-panel-plugin | 6 | inherit xfce-panel-plugin |
7 | 7 | ||
8 | DEPENDS += "upower" | 8 | PACKAGECONFIG ?= "network power" |
9 | PACKAGECONFIG[power] = ",,upower" | ||
10 | PACKAGECONFIG[network] = ",,libgtop" | ||
9 | 11 | ||
10 | SRC_URI[sha256sum] = "1148f8e90cc53cae9b3aa32e10df4bd9fdc2f06db09d8429f88fbdd874fc171d" | 12 | SRC_URI[sha256sum] = "56d1007801d52d7c2b5a13bb54745f6d7f06fda28b49ce936145633068817652" |