aboutsummaryrefslogtreecommitdiff
path: root/sysutils/plasma5-powerdevil
diff options
context:
space:
mode:
authorTobias C. Berner <tcberner@FreeBSD.org>2020-02-19 18:30:26 +0000
committerTobias C. Berner <tcberner@FreeBSD.org>2020-02-19 18:30:26 +0000
commit859a85de8e97a85107954a40c497003e743ca629 (patch)
tree628a764a3555f1897c1c6d2255b8699171002317 /sysutils/plasma5-powerdevil
parent824fb9995a67d20367fdd38199c860630470f62a (diff)
downloadports-859a85de8e97a85107954a40c497003e743ca629.tar.gz
ports-859a85de8e97a85107954a40c497003e743ca629.zip
Update KDE Plasma Desktop to 5.18.1
Tuesday, 18 February 2020. Today KDE releases a feature update to KDE Plasma 5, versioned 5.18.1. Plasma 5.18 was released in February 2020 with many feature refinements and new modules to complete the desktop experience. This release adds a week's worth of new translations and fixes from KDE's contributors. The bugfixes are typically small but important and include: Changelog: https://kde.org/announcements/plasma-5.18.0-5.18.1-changelog.php
Notes
Notes: svn path=/head/; revision=526524
Diffstat (limited to 'sysutils/plasma5-powerdevil')
-rw-r--r--sysutils/plasma5-powerdevil/distinfo6
-rw-r--r--sysutils/plasma5-powerdevil/files/patch-daemon_backends_upower_backlighthelper.cpp20
2 files changed, 3 insertions, 23 deletions
diff --git a/sysutils/plasma5-powerdevil/distinfo b/sysutils/plasma5-powerdevil/distinfo
index b1b7ca8ee610..3ac01948c4e8 100644
--- a/sysutils/plasma5-powerdevil/distinfo
+++ b/sysutils/plasma5-powerdevil/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1581012794
-SHA256 (KDE/plasma/5.18.0/powerdevil-5.18.0.tar.xz) = 32bd9a3ae0d3836550c2101fc9cb6dadd699ab8e8935d072ccd91c3d12b58489
-SIZE (KDE/plasma/5.18.0/powerdevil-5.18.0.tar.xz) = 597328
+TIMESTAMP = 1582120749
+SHA256 (KDE/plasma/5.18.1/powerdevil-5.18.1.tar.xz) = d2e77be66becaa61d87da269aeaba7d6fcba2bc99276453b527b95c42209516c
+SIZE (KDE/plasma/5.18.1/powerdevil-5.18.1.tar.xz) = 597404
diff --git a/sysutils/plasma5-powerdevil/files/patch-daemon_backends_upower_backlighthelper.cpp b/sysutils/plasma5-powerdevil/files/patch-daemon_backends_upower_backlighthelper.cpp
deleted file mode 100644
index d10e85676d8e..000000000000
--- a/sysutils/plasma5-powerdevil/files/patch-daemon_backends_upower_backlighthelper.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
---- daemon/backends/upower/backlighthelper.cpp.orig 2020-02-03 18:04:25 UTC
-+++ daemon/backends/upower/backlighthelper.cpp
-@@ -135,7 +135,7 @@ void BacklightHelper::initUsingSysctl()
- */
- QStringList types;
- types << QStringLiteral("lcd") << QStringLiteral("out") << QStringLiteral("crt") << QStringLiteral("tv") << QStringLiteral("ext");
-- Q_FOREACH (const QString &type, types) {
-+ for (auto &type : types) {
- for (int i = 0; m_sysctlDevice.isEmpty(); i++) {
- QString device = QStringLiteral("%1%2").arg(type, QString::number(i));
- // We don't care about the value, we only want the sysctl to be there.
-@@ -236,7 +236,7 @@ ActionReply BacklightHelper::setbrightness(const QVari
- int actual_level = -1;
- int d1 = 101;
- // Search for the nearest level.
-- Q_FOREACH (int level, m_sysctlBrightnessLevels) {
-+ for (auto level : m_sysctlBrightnessLevels) {
- int d2 = qAbs(level - actual_brightness);
- /*
- * The list is sorted, so we break when it starts diverging. There may be repeated values,