commit:     167c777963a8738088b67b628b846ea64505929d
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Aug  9 20:36:36 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Aug 10 07:56:41 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=167c7779

kde-frameworks/knewstuff: drop 6.4.0-r1

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 kde-frameworks/knewstuff/Manifest                  |  1 -
 .../knewstuff-6.4.0-fix-reference-error.patch      | 38 --------------------
 kde-frameworks/knewstuff/knewstuff-6.4.0-r1.ebuild | 42 ----------------------
 3 files changed, 81 deletions(-)

diff --git a/kde-frameworks/knewstuff/Manifest 
b/kde-frameworks/knewstuff/Manifest
index 9090ef1e3ca5..179a0efe1cb8 100644
--- a/kde-frameworks/knewstuff/Manifest
+++ b/kde-frameworks/knewstuff/Manifest
@@ -1,3 +1,2 @@
 DIST knewstuff-5.116.0.tar.xz 3359252 BLAKE2B 
76df212d33e2ff3a4e47024c8007dcf5e595a892d4ddc5e3579639cc2ec86589392c8a9e53ae5e39d8b71b632a84b1d615291f44635e43514ddb2468c8e4d0d5
 SHA512 
c66f8905c622964a81609d384ea64c0614714b4d760ee908e2efcdaab4ef146fc2af099625e81b83c2e43e4f97a0f5960dae345cbf9d8453a15b465536c06152
-DIST knewstuff-6.4.0.tar.xz 3092488 BLAKE2B 
c33565d331b271f1d2e0eb6054517cf38838f737be4fb9c8282f5581a7c5ee384e2c0f7672484b72a8590d02d18b90c1085770801bd0bf59ba1753b09f1a39b1
 SHA512 
1ed697dc896052c7096ce8711776971447c9414b9d2ea1dd5c70a4cfc316a241af7ae17db6e4daf90edb73f12e16a6da3a7f0e09a2ebf1cb099e6a9d19c95aad
 DIST knewstuff-6.5.0.tar.xz 3092996 BLAKE2B 
f6727258b7d036109badfe54fa2e20cb309ec8befadc3ba85b578af9d115685e448d89214cc8b9da1f0d59833287fe91a1367c161cc9215006d7868e5b08ca47
 SHA512 
a13c62dbd66a0df11c37734a0d9ff68e5f115fc921af74f7df301729e6f7adbe8bc8ee4a58851577516b2c5cdbe560141d6991cd62c29357a5e678ae1945d8af

diff --git 
a/kde-frameworks/knewstuff/files/knewstuff-6.4.0-fix-reference-error.patch 
b/kde-frameworks/knewstuff/files/knewstuff-6.4.0-fix-reference-error.patch
deleted file mode 100644
index 536b8d7533ea..000000000000
--- a/kde-frameworks/knewstuff/files/knewstuff-6.4.0-fix-reference-error.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From f8fb221d6f355c4f0873592fbf7dce358f4f0b40 Mon Sep 17 00:00:00 2001
-From: Akseli Lahtinen <[email protected]>
-Date: Fri, 12 Jul 2024 12:58:53 +0000
-Subject: [PATCH] EntryDetails.qml: Qualify newStuffModel, use downloadItemId
-
-There is no such thing as entryId, change it to downloadItemId
-Otherwise the item wont download anything.
-
-This fixes a bug where in detailed item view, if the list with multiple 
downloads
-appears and user clicks download, nothing would happen and knewstuff would 
report this
-warning in terminal: `qrc:/qt/qml/org/kde/newstuff/EntryDetails.qml:88: 
ReferenceError: entryId is not defined`
-
-After this fix it will download items.
-
-BUG:483659
----
- src/qtquick/qml/EntryDetails.qml | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/qtquick/qml/EntryDetails.qml 
b/src/qtquick/qml/EntryDetails.qml
-index d21e18fc2..94fc88d76 100644
---- a/src/qtquick/qml/EntryDetails.qml
-+++ b/src/qtquick/qml/EntryDetails.qml
-@@ -85,9 +85,9 @@ KCMUtils.SimpleKCM {
-         parent: component.QQC2.Overlay.overlay
- 
-         onItemPicked: (entry, downloadItemId, downloadName) => {
--            const entryName = newStuffModel.data(newStuffModel.index(entryId, 
0), NewStuff.ItemsModel.NameRole);
-+            const entryName = 
component.newStuffModel.data(component.newStuffModel.index(downloadItemId, 0), 
NewStuff.ItemsModel.NameRole);
-             applicationWindow().showPassiveNotification(i18ndc("knewstuff6", 
"A passive notification shown when installation of an item is initiated", 
"Installing %1 from %2", downloadName, entryName), 1500);
--            newStuffModel.engine.install(component.entry, downloadItemId);
-+            component.newStuffModel.engine.install(component.entry, 
downloadItemId);
-         }
-     }
- 
--- 
-GitLab
-

diff --git a/kde-frameworks/knewstuff/knewstuff-6.4.0-r1.ebuild 
b/kde-frameworks/knewstuff/knewstuff-6.4.0-r1.ebuild
deleted file mode 100644
index d79237ebf728..000000000000
--- a/kde-frameworks/knewstuff/knewstuff-6.4.0-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_DESIGNERPLUGIN="true"
-ECM_TEST="false"
-PVCUT=$(ver_cut 1-2)
-QTMIN=6.6.2
-inherit ecm frameworks.kde.org
-
-DESCRIPTION="Framework for downloading and sharing additional application data"
-
-LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
-IUSE="opds"
-
-DEPEND="
-       >=dev-qt/qtbase-${QTMIN}:6[gui,network,widgets,xml]
-       >=dev-qt/qtdeclarative-${QTMIN}:6[widgets]
-       =kde-frameworks/attica-${PVCUT}*:6
-       =kde-frameworks/karchive-${PVCUT}*:6
-       =kde-frameworks/kconfig-${PVCUT}*:6
-       =kde-frameworks/kcoreaddons-${PVCUT}*:6
-       =kde-frameworks/ki18n-${PVCUT}*:6
-       =kde-frameworks/kpackage-${PVCUT}*:6
-       =kde-frameworks/kwidgetsaddons-${PVCUT}*:6
-       opds? ( =kde-frameworks/syndication-${PVCUT}*:6 )
-"
-RDEPEND="${DEPEND}
-       >=kde-frameworks/kirigami-${PVCUT}:6
-"
-
-PATCHES=( "${FILESDIR}/${P}-fix-reference-error.patch" ) # KDE-bug 483659
-
-src_configure() {
-       local mycmakeargs=(
-               $(cmake_use_find_package opds KF6Syndication)
-       )
-
-       ecm_src_configure
-}

Reply via email to