public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Steve Cossette <farchord@gmail.com>
To: git-commits@fedoraproject.org
Subject: [rpms/kdeplasma-addons] rawhide: 6.7.90
Date: Sat, 12 Sep 2026 11:55:39 GMT	[thread overview]
Message-ID: <178921413968.1.12309260775323468264.rpms-kdeplasma-addons-6ca2627bab0c@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/kdeplasma-addons
Branch : rawhide
Commit : 6ca2627bab0cd1f737e727f33bc6c1067f580bba
Author : Steve Cossette <farchord@gmail.com>
Date   : 2026-09-12T07:55:33-04:00
Stats  : +8/-102 in 4 file(s)
URL    : https://src.fedoraproject.org/rpms/kdeplasma-addons/c/6ca2627bab0cd1f737e727f33bc6c1067f580bba?branch=rawhide

Log:
6.7.90

---
diff --git a/.gitignore b/.gitignore
index 9f9384d..d752c25 100644
--- a/.gitignore
+++ b/.gitignore
@@ -30,3 +30,4 @@
 /kdeplasma-addons-6.7.3.tar.xz.sig
 /kdeplasma-addons-6.7.4.tar.xz.sig
 /kdeplasma-addons-6.7.5.tar.xz.sig
+/kdeplasma-addons-6.7.90.tar.xz.sig

diff --git a/kdeplasma-addons-6.7.0-qmk-via-api-0.8.patch b/kdeplasma-addons-6.7.0-qmk-via-api-0.8.patch
deleted file mode 100644
index dd5e977..0000000
--- a/kdeplasma-addons-6.7.0-qmk-via-api-0.8.patch
+++ /dev/null
@@ -1,92 +0,0 @@
-From 1dca6f58f662e63efd33b7f592e9fa94f660f424 Mon Sep 17 00:00:00 2001
-From: "Benjamin A. Beasley" <code@musicinmybrain.net>
-Date: Fri, 12 Jun 2026 11:26:56 +0100
-Subject: [PATCH 1/2] Specify SemVer-bounded Rust dependencies for
- `kameleon-qmk-helper`
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Asking for `"0"` means “anything before version 1,” but pre-1.0 minor
-releases may contain breaking changes.
----
- kdeds/kameleon/qmk/kameleon-qmk-helper/Cargo.toml | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/kdeds/kameleon/qmk/kameleon-qmk-helper/Cargo.toml b/kdeds/kameleon/qmk/kameleon-qmk-helper/Cargo.toml
-index 647c1f288..22e14cdad 100644
---- a/kdeds/kameleon/qmk/kameleon-qmk-helper/Cargo.toml
-+++ b/kdeds/kameleon/qmk/kameleon-qmk-helper/Cargo.toml
-@@ -7,9 +7,9 @@ version = "0.1.0"
- edition = "2024"
- 
- [dependencies]
--easy_color = "0"
-+easy_color = "0.1"
- event-listener = "5"
--qmk-via-api = "0"
-+qmk-via-api = "0.7"
- tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
- zbus = { version = "5", default-features = false, features = ["tokio"] }
- zbus_polkit = { version = "5", default-features = false, features = ["tokio"] }
--- 
-GitLab
-
-
-From c46827b1adb7a38998e1e58b48f0e8413c541d99 Mon Sep 17 00:00:00 2001
-From: "Benjamin A. Beasley" <code@musicinmybrain.net>
-Date: Fri, 12 Jun 2026 11:36:13 +0100
-Subject: [PATCH 2/2] Update qmk-via-api to 0.8
-
-Set the newly-supported `KeyboardApi::from_device` timeout to 25
-seconds; this is fairly arbitrary, chosen to be a bit under half of the
-60-second timeout in `main`.
-
-https://github.com/srwi/qmk-via-api/compare/0.7.0...0.8.0
----
- kdeds/kameleon/qmk/kameleon-qmk-helper/Cargo.toml  | 2 +-
- kdeds/kameleon/qmk/kameleon-qmk-helper/src/main.rs | 8 +++++---
- 2 files changed, 6 insertions(+), 4 deletions(-)
-
-diff --git a/kdeds/kameleon/qmk/kameleon-qmk-helper/Cargo.toml b/kdeds/kameleon/qmk/kameleon-qmk-helper/Cargo.toml
-index 22e14cdad..ade00f455 100644
---- a/kdeds/kameleon/qmk/kameleon-qmk-helper/Cargo.toml
-+++ b/kdeds/kameleon/qmk/kameleon-qmk-helper/Cargo.toml
-@@ -9,7 +9,7 @@ edition = "2024"
- [dependencies]
- easy_color = "0.1"
- event-listener = "5"
--qmk-via-api = "0.7"
-+qmk-via-api = "0.8"
- tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
- zbus = { version = "5", default-features = false, features = ["tokio"] }
- zbus_polkit = { version = "5", default-features = false, features = ["tokio"] }
-diff --git a/kdeds/kameleon/qmk/kameleon-qmk-helper/src/main.rs b/kdeds/kameleon/qmk/kameleon-qmk-helper/src/main.rs
-index f7b3e0beb..4509c34d0 100644
---- a/kdeds/kameleon/qmk/kameleon-qmk-helper/src/main.rs
-+++ b/kdeds/kameleon/qmk/kameleon-qmk-helper/src/main.rs
-@@ -57,7 +57,8 @@ impl Helper {
-         let devices = scan_keyboards()
-             .map_err(|e| zbus::fdo::Error::Failed(format!("Failed to scan keyboards: {e}")))?;
-         for device in devices {
--            let api = KeyboardApi::from_device(&device).map_err(|e| {
-+            let timeout_ms: i32 = 25000; // This is fairly arbitrary.
-+            let api = KeyboardApi::from_device(&device, Some(timeout_ms)).map_err(|e| {
-                 zbus::fdo::Error::Failed(format!(
-                     "Failed to create API for device {:?}: {e}",
-                     device.product
-@@ -127,8 +128,9 @@ impl Helper {
-             .map_err(|i| zbus::fdo::Error::Failed(format!("Failed to scan keyboards: {i}")))?
-             .iter()
-             .any(|device| {
--                let api =
--                    KeyboardApi::from_device(&device).expect("Failed to create API for device");
-+                let timeout_ms: i32 = 25000; // This is fairly arbitrary.
-+                let api = KeyboardApi::from_device(&device, Some(timeout_ms))
-+                    .expect("Failed to create API for device");
-                 api.get_rgblight_effect().is_ok() || api.get_rgb_matrix_effect().is_ok()
-             });
-         Ok(any)
--- 
-GitLab
-

diff --git a/kdeplasma-addons.spec b/kdeplasma-addons.spec
index 32fedca..ee2ccdd 100644
--- a/kdeplasma-addons.spec
+++ b/kdeplasma-addons.spec
@@ -1,7 +1,7 @@
 Name:    kdeplasma-addons
 Summary: Additional Plasmoids for Plasma 6
-Version: 6.7.5
-Release: 2%{?dist}
+Version: 6.7.90
+Release: 1%{?dist}
 
 %global source_licenses %{shrink:
     BSD-3-Clause AND
@@ -42,12 +42,6 @@ URL:     https://invent.kde.org/plasma/%{name}
 Source0: http://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz
 Source1: http://download.kde.org/%{stable_kf6}/plasma/%{version}/%{name}-%{version}.tar.xz.sig
 
-# Specify SemVer-bounded Rust dependencies for `kameleon-qmk-helper`; update
-# `qmk-via-api` to 0.8
-# https://invent.kde.org/plasma/kdeplasma-addons/-/merge_requests/1080
-# (Without changes to Cargo.lock, which would only cause merge conflicts.)
-Patch:          kdeplasma-addons-6.7.0-qmk-via-api-0.8.patch
-
 ExcludeArch: %{ix86}
 
 %ifarch %{qt6_qtwebengine_arches}
@@ -227,6 +221,9 @@ cd ../../../../
 %{_libdir}/cmake/PlasmaWeather/
 
 %changelog
+* Thu Sep 10 2026 Steve Cossette <farchord@gmail.com> - 6.7.90-1
+- 6.7.90
+
 * Wed Sep 09 2026 Steve Cossette <farchord@gmail.com> - 6.7.5-2
 - Rebuild for Qt Update
 

diff --git a/sources b/sources
index 00d8b7d..3476db2 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-SHA512 (kdeplasma-addons-6.7.5.tar.xz) = e24b6bf056199079ef94501a8bab3524c009e7d625d0e5c620f8ad37c49853004d17efcf83901166ab752b4fa6f2367a6bdf2e1a0232779eaa5508482f1fb0eb
-SHA512 (kdeplasma-addons-6.7.5.tar.xz.sig) = b7ac787a2bea94026f1ad14dce6e96904254a2a30c703310ee28ef881ce26a05cc2e7afbc5cb464f182d64a8bdc53175ffca978f2eb46511d58da21fab7c8cac
+SHA512 (kdeplasma-addons-6.7.90.tar.xz) = 34ea439fec057fac1d3f4dffc5163d9a9a50739276b05df06d1724259c270161d9cd3c82400ecbec5378e1866d182c4374177f336914955e25de8df73225f9df
+SHA512 (kdeplasma-addons-6.7.90.tar.xz.sig) = 94a41a98ef1d77cc48bf69493b77376df557d9743578442d527d0fb14d9246bb7d8134e0b01456a948778cd46547cedcea79247688a8f062d5b8b7bcf316415c

                 reply	other threads:[~2026-09-12 11:55 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=178921413968.1.12309260775323468264.rpms-kdeplasma-addons-6ca2627bab0c@fedoraproject.org \
    --to=farchord@gmail.com \
    --cc=git-commits@fedoraproject.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox