Compare commits
27 Commits
Author | SHA256 | Date | |
---|---|---|---|
b795aa9a11 | |||
|
89eb2c2e6b | ||
424ab9aec3 | |||
|
fe2e8d4950 | ||
7f2b411be1 | |||
|
b32ad27e32 | ||
|
f1690196ce | ||
08160e39bd | |||
|
ae5713a7fe | ||
21e4bf490d | |||
|
7d83852153 | ||
|
4d7a84d2d7 | ||
|
778f323c77 | ||
9360bf1696 | |||
|
c1b1ac0dc5 | ||
2c43a3b377 | |||
|
15b30bddbe | ||
9563a81973 | |||
|
76ee1829a8 | ||
0290136e8b | |||
|
950e6157e2 | ||
|
32b7c799b0 | ||
|
1552031033 | ||
7e32ae9b7f | |||
|
8f6dd621cb | ||
43b51808eb | |||
|
ae6a0edcc5 |
26
0001-Fix-build-with-GPGME-2.0.patch
Normal file
26
0001-Fix-build-with-GPGME-2.0.patch
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
From 6254c0cefa17fe82f44842bc21f5e5c241f66aec Mon Sep 17 00:00:00 2001
|
||||||
|
From: Antonio Rojas <arojas@archlinux.org>
|
||||||
|
Date: Tue, 3 Jun 2025 23:13:39 +0200
|
||||||
|
Subject: [PATCH] Fix build with GPGME++ 2.0
|
||||||
|
|
||||||
|
GpgME::Error is no longer implicitly converted to a string
|
||||||
|
---
|
||||||
|
ui/signaturedlg.cpp | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/ui/signaturedlg.cpp b/ui/signaturedlg.cpp
|
||||||
|
index 7c4a97f1..0b6a0785 100644
|
||||||
|
--- a/ui/signaturedlg.cpp
|
||||||
|
+++ b/ui/signaturedlg.cpp
|
||||||
|
@@ -185,7 +185,7 @@ void SignatureDlg::updateData()
|
||||||
|
QByteArray fingerprint = fingerprintString.toLatin1();
|
||||||
|
const GpgME::Key key = context->key(fingerprint.constData(), err);
|
||||||
|
if (err || key.isNull() || !key.numUserIDs() || !key.numSubkeys()) {
|
||||||
|
- qCDebug(KGET_DEBUG) << "There was an error while loading the key:" << err;
|
||||||
|
+ qCDebug(KGET_DEBUG) << "There was an error while loading the key:" << err.asStdString();
|
||||||
|
} else {
|
||||||
|
static const QStringList OWNERTRUST = QStringList()
|
||||||
|
<< i18nc("trust level", "Unknown") << i18nc("trust level", "Undefined") << i18nc("trust level", "Never") << i18nc("trust level", "Marginal")
|
||||||
|
--
|
||||||
|
2.49.0
|
||||||
|
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:1af81db90b0db5350bab10c9664d0e3123a3635d2c7a0ef583939773a9a68804
|
|
||||||
size 4912880
|
|
@@ -1,16 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
|
|
||||||
iQIzBAABCgAdFiEE2BwMs463Je9mkcOFu0YzUNbvMe8FAmbf+3AACgkQu0YzUNbv
|
|
||||||
Me+zFA//e6UljF+/bxTeilF5VcUpDnoNR03AVZrepwrSepEq9CyGZ0ae+R7cyLyu
|
|
||||||
Dn2c7eEu0eKy7+P4f4E1TwDrtglIkSaxhyUfayOCslO3x/0sPUz973e6734Ct9cz
|
|
||||||
gYNF5SqfMeNBbyYP9m1iGuq6rgYvIEmn1w8ZNxoa2lKP3hAyizrWUfH6hZTI/1hJ
|
|
||||||
WPyTQlLtOI0zAEgFt/IcQrCSTgkfK/NZX9xLWEm5ylIhjhFd8/c2+aohFPV/CtRy
|
|
||||||
y+QJF/0xgqOqJseLCXuQrU5ItePdRe98/lmFqvbvPZ7gzXC/iKTjBy6xe/v4knhB
|
|
||||||
EVyzlHinYtboF8mpeH6DsUq8+d8GlXrmE66wsG5f2zl5RHxuk+CejAfoYgxNyBSf
|
|
||||||
UVowuDParsSwEkhgoA9jwQPcEw4tBKuR10rI+zw+q0Yg1Q3fmuQZ5GYdnAC6knXM
|
|
||||||
swPPkNfB5+EPfAbfMPMsyiULm/2hd8e+yynLfaZr8Zl7A5nCa9bbVZOSTVmXjO9X
|
|
||||||
RqAlHYZsixu8SydDLadbrgaYPD12cCgfM5vzPVd1ehZLe15RKzDpqXc7R9XUKtJC
|
|
||||||
8ogPqSKeZ0XM5daWpJ+fPCHXUq5sRqrmAVu7lQt+bXsONgwCv70yQdehW2Td6l7I
|
|
||||||
byM0ZGe1wurC0xU0IhNNgGNOk6R1FySwC+Oac5LxVGYwQ2NlB3A=
|
|
||||||
=8PjD
|
|
||||||
-----END PGP SIGNATURE-----
|
|
3
kget-25.04.3.tar.xz
Normal file
3
kget-25.04.3.tar.xz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:4b74aaecfd730208488f480bc75f977e8b489cc1fe5737627f26c486e2909544
|
||||||
|
size 4853416
|
16
kget-25.04.3.tar.xz.sig
Normal file
16
kget-25.04.3.tar.xz.sig
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iQIzBAABCgAdFiEE2BwMs463Je9mkcOFu0YzUNbvMe8FAmhjcTIACgkQu0YzUNbv
|
||||||
|
Me9t0A/9HhjxXBZZJQVin6cnG1QZcM7FKB5Odyf5fPSY3nMjVvPiPYYnatj7d18Q
|
||||||
|
rlt3bkTN2SrytA9NHOlRGS7LLuV3h0mhj9O9rVnnamv4Pfk4AzBsaCfslgSmS8op
|
||||||
|
UyAhToYg6/Fj8iIqF677zV8Y5wIND5n0eitOtUlQWaLnJThpaeTU9vWWNPYM2Pke
|
||||||
|
xCz3Dz29SCS//SyZVlGg1o3oc9SnrxjLkTsmViI3qtZDk+ezvDR17hrCRVpRrMi3
|
||||||
|
EWkqCifAmJse9rBW1o+jY23ruYrclGDrL0VK8EEoGPXv3uxhxcv66gBV839aPltP
|
||||||
|
E0rqKVJmm8qHbZXwRLsvFHc2Bg2iigf9lXQ7IT9XSLFjIk3LEOdmAW4HEdG+6XBS
|
||||||
|
ouxB1zollNoDpLIHwlLQiabW3ZKL6OLEM504x2W5F+5Y9Cq0SzCQEnp+da+x4TXl
|
||||||
|
sy6p9qT89lvC7F7shTeHQx9szza9fwZnlJruAoHLjvl2jG3MxBRf48ZVHVFpUriQ
|
||||||
|
7thkPlT6r8+PFDCwnfQr04mZQgJMgSQqLSKBYvqTi+fU/0y16emiI4cG97HMrN70
|
||||||
|
19ZCyEqMzYe76gpmynOx0nPGYXJLV1tgg7z1yNEmXUj7Yr8+ZudBxlie68EwgjdZ
|
||||||
|
oMi6mXP+TBPnn1lYUhctWjjfndPgVe4AJAqf09Wo6O8dNpF9RkI=
|
||||||
|
=6udY
|
||||||
|
-----END PGP SIGNATURE-----
|
132
kget.changes
132
kget.changes
@@ -1,3 +1,133 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jul 1 15:26:56 UTC 2025 - Christophe Marin <christophe@krop.fr>
|
||||||
|
|
||||||
|
- Update to 25.04.3
|
||||||
|
* New bugfix release
|
||||||
|
* For more details please see:
|
||||||
|
* https://kde.org/announcements/gear/25.04.3/
|
||||||
|
- Changes since 25.04.2:
|
||||||
|
* flatpak: Use libktorrent from the stable branch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 16 11:41:19 UTC 2025 - Christophe Marin <christophe@krop.fr>
|
||||||
|
|
||||||
|
- Add gpgme 2.0 build fix (boo#1244636)
|
||||||
|
* 0001-Fix-build-with-GPGME-2.0.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 3 21:12:21 UTC 2025 - Christophe Marin <christophe@krop.fr>
|
||||||
|
|
||||||
|
- Update to 25.04.2
|
||||||
|
* New bugfix release
|
||||||
|
* For more details please see:
|
||||||
|
* https://kde.org/announcements/gear/25.04.2/
|
||||||
|
- No code change since 25.04.1
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 7 21:00:09 UTC 2025 - Christophe Marin <christophe@krop.fr>
|
||||||
|
|
||||||
|
- Update to 25.04.1
|
||||||
|
* New bugfix release
|
||||||
|
* For more details please see:
|
||||||
|
* https://kde.org/announcements/gear/25.04.1/
|
||||||
|
- Changes since 25.04.0:
|
||||||
|
* flatpak: Update runtime version
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Apr 14 07:06:44 UTC 2025 - Christophe Marin <christophe@krop.fr>
|
||||||
|
|
||||||
|
- Update to 25.04.0
|
||||||
|
* New feature release
|
||||||
|
* For more details please see:
|
||||||
|
* https://kde.org/announcements/gear/25.04.0/
|
||||||
|
- No code change since 25.03.90
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Mar 29 08:42:28 UTC 2025 - Christophe Marin <christophe@krop.fr>
|
||||||
|
|
||||||
|
- Update to 25.03.90
|
||||||
|
* New feature release
|
||||||
|
- Too many changes to list here.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 4 13:01:00 UTC 2025 - Christophe Marin <christophe@krop.fr>
|
||||||
|
|
||||||
|
- Update to 24.12.3
|
||||||
|
* New bugfix release
|
||||||
|
* For more details please see:
|
||||||
|
* https://kde.org/announcements/gear/24.12.3/
|
||||||
|
- No code change since 24.12.2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 4 12:29:37 UTC 2025 - Christophe Marin <christophe@krop.fr>
|
||||||
|
|
||||||
|
- Update to 24.12.2
|
||||||
|
* New bugfix release
|
||||||
|
* For more details please see:
|
||||||
|
* https://kde.org/announcements/gear/24.12.2/
|
||||||
|
- No code change since 24.12.1
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jan 7 18:52:59 UTC 2025 - Christophe Marin <christophe@krop.fr>
|
||||||
|
|
||||||
|
- Update to 24.12.1
|
||||||
|
* New bugfix release
|
||||||
|
* For more details please see:
|
||||||
|
* https://kde.org/announcements/gear/24.12.1/
|
||||||
|
- Changes since 24.12.0:
|
||||||
|
* Switch to a working boost mirror.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Dec 8 09:27:35 UTC 2024 - Christophe Marin <christophe@krop.fr>
|
||||||
|
|
||||||
|
- Update to 24.12.0
|
||||||
|
* New feature release
|
||||||
|
* For more details please see:
|
||||||
|
* https://kde.org/announcements/gear/24.12.0/
|
||||||
|
- No code change since 24.11.90
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Dec 2 08:43:02 UTC 2024 - Christophe Marin <christophe@krop.fr>
|
||||||
|
|
||||||
|
- Update to 24.11.90
|
||||||
|
* New feature release
|
||||||
|
- No code change since 24.11.80
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Nov 16 17:29:41 UTC 2024 - Christophe Marin <christophe@krop.fr>
|
||||||
|
|
||||||
|
- Update to 24.11.80
|
||||||
|
* New feature release
|
||||||
|
- Changes since 24.08.3:
|
||||||
|
* fix clang-format
|
||||||
|
* Modernize code using initializer lists
|
||||||
|
* Use standardized plugin macros from KPluginFactory
|
||||||
|
* Use CMake variable for debug sources instead of relative path
|
||||||
|
* Small formatting fixes
|
||||||
|
* Move CMake logic to core subfile
|
||||||
|
* Remove desktop file with property defs that is obsolete in KF6
|
||||||
|
* Remove plugintype from metadata
|
||||||
|
* Clean up ServiceTypes from metadata
|
||||||
|
* Set up crash handling
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 5 10:43:17 UTC 2024 - Christophe Marin <christophe@krop.fr>
|
||||||
|
|
||||||
|
- Update to 24.08.3
|
||||||
|
* New bugfix release
|
||||||
|
* For more details please see:
|
||||||
|
* https://kde.org/announcements/gear/24.08.3/
|
||||||
|
- No code change since 24.08.2
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 8 12:01:30 UTC 2024 - Christophe Marin <christophe@krop.fr>
|
||||||
|
|
||||||
|
- Update to 24.08.2
|
||||||
|
* New bugfix release
|
||||||
|
* For more details please see:
|
||||||
|
* https://kde.org/announcements/gear/24.08.2/
|
||||||
|
- No code change since 24.08.1
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Sep 10 14:10:40 UTC 2024 - Christophe Marin <christophe@krop.fr>
|
Tue Sep 10 14:10:40 UTC 2024 - Christophe Marin <christophe@krop.fr>
|
||||||
|
|
||||||
@@ -2033,7 +2163,7 @@ Wed Dec 22 11:39:28 CET 2010 - dmueller@suse.de
|
|||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Dec 8 19:18:53 UCT 2010 - toddrme2178@gmail.com
|
Fri Dec 8 19:18:53 UTC 2010 - toddrme2178@gmail.com
|
||||||
|
|
||||||
- Add optional dependencies
|
- Add optional dependencies
|
||||||
* KDE4Workspace -- Allows 'shutdown after downloads completed' in kget
|
* KDE4Workspace -- Allows 'shutdown after downloads completed' in kget
|
||||||
|
11
kget.spec
11
kget.spec
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package kget
|
# spec file for package kget
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -16,11 +16,11 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define kf6_version 6.3.0
|
%define kf6_version 6.6.0
|
||||||
%define qt6_version 6.6.0
|
%define qt6_version 6.6.0
|
||||||
%bcond_without released
|
%bcond_without released
|
||||||
Name: kget
|
Name: kget
|
||||||
Version: 24.08.1
|
Version: 25.04.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Download Manager
|
Summary: Download Manager
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
@@ -30,6 +30,8 @@ Source0: https://download.kde.org/stable/release-service/%{version}/src/%
|
|||||||
Source1: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz.sig
|
Source1: https://download.kde.org/stable/release-service/%{version}/src/%{name}-%{version}.tar.xz.sig
|
||||||
Source2: applications.keyring
|
Source2: applications.keyring
|
||||||
%endif
|
%endif
|
||||||
|
# PATCH-FIX-UPSTREAM
|
||||||
|
Patch0: 0001-Fix-build-with-GPGME-2.0.patch
|
||||||
BuildRequires: kf6-extra-cmake-modules >= %{kf6_version}
|
BuildRequires: kf6-extra-cmake-modules >= %{kf6_version}
|
||||||
BuildRequires: libboost_headers-devel
|
BuildRequires: libboost_headers-devel
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
@@ -101,7 +103,7 @@ An advanced download manager by KDE
|
|||||||
%{_kf6_bindir}/kget
|
%{_kf6_bindir}/kget
|
||||||
%{_kf6_configkcfgdir}/kget*.kcfg
|
%{_kf6_configkcfgdir}/kget*.kcfg
|
||||||
%{_kf6_debugdir}/kget.categories
|
%{_kf6_debugdir}/kget.categories
|
||||||
%{_kf6_iconsdir}/hicolor/*/apps/kget.*
|
%{_kf6_iconsdir}/hicolor/scalable/apps/org.kde.kget.svg
|
||||||
%{_kf6_libdir}/libkgetcore.so*
|
%{_kf6_libdir}/libkgetcore.so*
|
||||||
%{_kf6_notificationsdir}/kget.notifyrc
|
%{_kf6_notificationsdir}/kget.notifyrc
|
||||||
%dir %{_kf6_plugindir}/kget_kcms/
|
%dir %{_kf6_plugindir}/kget_kcms/
|
||||||
@@ -112,7 +114,6 @@ An advanced download manager by KDE
|
|||||||
%dir %{_kf6_sharedir}/kio
|
%dir %{_kf6_sharedir}/kio
|
||||||
%dir %{_kf6_sharedir}/kio/servicemenus
|
%dir %{_kf6_sharedir}/kio/servicemenus
|
||||||
%{_kf6_sharedir}/kio/servicemenus/kget_download.desktop
|
%{_kf6_sharedir}/kio/servicemenus/kget_download.desktop
|
||||||
%{_kf6_sharedir}/kio/servicemenus/kget_plugin.desktop
|
|
||||||
|
|
||||||
%files lang -f %{name}.lang
|
%files lang -f %{name}.lang
|
||||||
%exclude %{_kf6_htmldir}/en/kget
|
%exclude %{_kf6_htmldir}/en/kget
|
||||||
|
Reference in New Issue
Block a user