public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/kde-connect] rawhide: 26.07.90
@ 2026-07-31 19:48 Steve Cossette
0 siblings, 0 replies; only message in thread
From: Steve Cossette @ 2026-07-31 19:48 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/kde-connect
Branch : rawhide
Commit : 5c6e797bb2bac09171634893d163e6a3dfc89474
Author : Steve Cossette <farchord@gmail.com>
Date : 2026-07-31T15:48:45-04:00
Stats : +12/-67 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/kde-connect/c/5c6e797bb2bac09171634893d163e6a3dfc89474?branch=rawhide
Log:
26.07.90
---
diff --git a/.gitignore b/.gitignore
index 7b8a656..6682bd4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -95,3 +95,4 @@
/kdeconnect-kde-26.04.1.tar.xz
/kdeconnect-kde-26.04.2.tar.xz
/kdeconnect-kde-26.04.3.tar.xz
+/kdeconnect-kde-26.07.90.tar.xz
diff --git a/988.patch b/988.patch
deleted file mode 100644
index 69ef47e..0000000
--- a/988.patch
+++ /dev/null
@@ -1,61 +0,0 @@
-From ccef6f0bea8f09d4fca8f99a2b04223eecbe6f15 Mon Sep 17 00:00:00 2001
-From: Hadi Chokr <hadichokr@icloud.com>
-Date: Tue, 30 Jun 2026 13:32:01 +0200
-Subject: [PATCH] core: fix build against OpenSSL 4.0 (constified
- X509_get_subject_name)
-
----
- core/sslhelper.cpp | 17 +++++++++++------
- 1 file changed, 11 insertions(+), 6 deletions(-)
-
-diff --git a/core/sslhelper.cpp b/core/sslhelper.cpp
-index c3bb90452..34c6d3676 100644
---- a/core/sslhelper.cpp
-+++ b/core/sslhelper.cpp
-@@ -169,32 +169,37 @@ QSslCertificate generateSelfSignedCertificate(const QSslKey &qtPrivateKey, const
- }
-
- // Set the certificate subject and issuer (self-signed).
-- auto name = X509_get_subject_name(x509.get());
-+ auto name = std::unique_ptr<X509_NAME, decltype(&::X509_NAME_free)>(X509_NAME_new(), ::X509_NAME_free);
-+ if (!name) {
-+ qCWarning(KDECONNECT_CORE) << "Generate Self Signed Certificate failed to allocate name structure " << getSslError();
-+ return QSslCertificate();
-+ }
-+
- QByteArray commonNameBytes = commonName.toLatin1();
- const unsigned char *commonNameCStr = reinterpret_cast<const unsigned char *>(commonNameBytes.data());
-- if (!X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC, commonNameCStr, -1, -1, 0)) { // Common Name
-+ if (!X509_NAME_add_entry_by_txt(name.get(), "CN", MBSTRING_ASC, commonNameCStr, -1, -1, 0)) { // Common Name
- qCWarning(KDECONNECT_CORE) << "Generate Self Signed Certificate failed to set common name to " << commonName << " " << getSslError();
- return QSslCertificate();
- }
-
- const unsigned char *organizationCStr = reinterpret_cast<const unsigned char *>("KDE");
-- if (!X509_NAME_add_entry_by_txt(name, "O", MBSTRING_ASC, organizationCStr, -1, -1, 0)) { // Organization
-+ if (!X509_NAME_add_entry_by_txt(name.get(), "O", MBSTRING_ASC, organizationCStr, -1, -1, 0)) { // Organization
- qCWarning(KDECONNECT_CORE) << "Generate Self Signed Certificate failed to set organization " << getSslError();
- return QSslCertificate();
- }
-
- const unsigned char *organizationalUnitCStr = reinterpret_cast<const unsigned char *>("KDE Connect");
-- if (!X509_NAME_add_entry_by_txt(name, "OU", MBSTRING_ASC, organizationalUnitCStr, -1, -1, 0)) { // Organizational Unit
-+ if (!X509_NAME_add_entry_by_txt(name.get(), "OU", MBSTRING_ASC, organizationalUnitCStr, -1, -1, 0)) { // Organizational Unit
- qCWarning(KDECONNECT_CORE) << "Generate Self Signed Certificate failed to set organizational unit " << getSslError();
- return QSslCertificate();
- }
-
-- if (!X509_set_subject_name(x509.get(), name)) {
-+ if (!X509_set_subject_name(x509.get(), name.get())) {
- qCWarning(KDECONNECT_CORE) << "Generate Self Signed Certificate failed to set subject name" << getSslError();
- return QSslCertificate();
- }
-
-- if (!X509_set_issuer_name(x509.get(), name)) {
-+ if (!X509_set_issuer_name(x509.get(), name.get())) {
- qCWarning(KDECONNECT_CORE) << "Generate Self Signed Certificate failed to set issuer name" << getSslError();
- return QSslCertificate();
- }
---
-GitLab
-
diff --git a/kde-connect.spec b/kde-connect.spec
index c9c5586..fe4872c 100644
--- a/kde-connect.spec
+++ b/kde-connect.spec
@@ -1,8 +1,8 @@
%global base_name kdeconnect-kde
Name: kde-connect
-Version: 26.04.3
-Release: 2%{?dist}
+Version: 26.07.90
+Release: 1%{?dist}
License: GPL-2.0-or-later
Summary: KDE Connect client for communication with smartphones
@@ -14,9 +14,6 @@ Source0: https://download.kde.org/%{stable_kf6}/release-service/%{version}/src/%
ExcludeArch: %{ix86}
## upstream patches
-# Fix build against OpenSSL 4.0
-# https://invent.kde.org/network/kdeconnect-kde/-/merge_requests/988
-Patch0: 988.patch
BuildRequires: gcc-c++
BuildRequires: cmake
@@ -181,6 +178,8 @@ done
%{_kf6_plugindir}/kfileitemaction/kdeconnectfileitemaction.so
%{_kf6_plugindir}/kio/kdeconnect.so
%{_qt6_archdatadir}/qml/org/kde/kdeconnect/
+%{_kf6_datadir}/remoteview/kdeconnect-network.desktop
+%{_kf6_datadir}/solid/actions/solid_kdeconnect.desktop
%files -n kdeconnectd
%{_kf6_libdir}/udev/rules.d/40-kdeconnect-uinput.rules
@@ -198,6 +197,12 @@ done
%changelog
+* Fri Jul 31 2026 Steve Cossette <farchord@gmail.com> - 26.07.90-1
+- 26.07.90
+
+* Wed Jul 29 2026 Steve Cossette <farchord@gmail.com> - 26.07.80-1
+- 26.07.80
+
* Thu Jul 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 26.04.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
diff --git a/sources b/sources
index e055edc..dfb8ba8 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (kdeconnect-kde-26.04.3.tar.xz) = f8d575310e48b2daf6bd354a4731618e27c602903e4e7f1b4e9c07c28e7e6c701b3ff4bdc61fc6c7061f790f5996592cf89fe6c527c699fb4c24a800513fc42c
+SHA512 (kdeconnect-kde-26.07.90.tar.xz) = df4e6f8f0eebac94498169cc206acfab9ef1fdf71dcae021751adb6f3829763fda4f7be9c821905a00e49cafb599a288172cd5fcae7070ab236d44c077f67408
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-07-31 19:48 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-31 19:48 [rpms/kde-connect] rawhide: 26.07.90 Steve Cossette
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox