summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-10-01 20:11:55 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2024-10-01 20:21:50 +0200
commit3233498b721a8374473e2737ea29bb3701feb49b (patch)
treea19a6f110092d463502e19c6cc58b754853a9c6f /kde-misc
parentdev-qt/qtbase: revert upstream commit causing erratic mouse input (diff)
downloadgentoo-3233498b721a8374473e2737ea29bb3701feb49b.tar.gz
gentoo-3233498b721a8374473e2737ea29bb3701feb49b.tar.bz2
gentoo-3233498b721a8374473e2737ea29bb3701feb49b.zip
kde-misc/kio-locate: treeclean
Closes: https://bugs.gentoo.org/759775 (pkgremoved) Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-misc')
-rw-r--r--kde-misc/kio-locate/Manifest1
-rw-r--r--kde-misc/kio-locate/files/kio-locate-0.5.3-gcc-4.7.patch11
-rw-r--r--kde-misc/kio-locate/files/kio-locate-0.5.3-kf5port.patch102
-rw-r--r--kde-misc/kio-locate/kio-locate-0.5.3-r3.ebuild39
-rw-r--r--kde-misc/kio-locate/metadata.xml8
5 files changed, 0 insertions, 161 deletions
diff --git a/kde-misc/kio-locate/Manifest b/kde-misc/kio-locate/Manifest
deleted file mode 100644
index 1c29d60c94db..000000000000
--- a/kde-misc/kio-locate/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST 120965-kio-locate-0.5.3.tar.gz 95081 BLAKE2B 378ee064da5799339d5853ff727573f6ba9f264520c67d12a2c9f9126a2ff625d33d8a72c796b830ba524c720d6b3a903cdab25b500b1889f543cbe580391f1a SHA512 04d80e65fa33b59081c71858efca97c7c53ad91fede6882daa207c6b7b4bc19c9b28056cc701eee5b719dd5cce8263e8d13f6bbf285934640eb2aa8cca676c36
diff --git a/kde-misc/kio-locate/files/kio-locate-0.5.3-gcc-4.7.patch b/kde-misc/kio-locate/files/kio-locate-0.5.3-gcc-4.7.patch
deleted file mode 100644
index 4ce83264d69a..000000000000
--- a/kde-misc/kio-locate/files/kio-locate-0.5.3-gcc-4.7.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/locater.h
-+++ b/locater.h
-@@ -31,6 +31,8 @@
- #ifndef LOCATER_H
- #define LOCATER_H
-
-+#include <unistd.h>
-+
- #include <QObject>
- #include <QStringList>
- #include <KProcess>
diff --git a/kde-misc/kio-locate/files/kio-locate-0.5.3-kf5port.patch b/kde-misc/kio-locate/files/kio-locate-0.5.3-kf5port.patch
deleted file mode 100644
index 65fe2481ce9d..000000000000
--- a/kde-misc/kio-locate/files/kio-locate-0.5.3-kf5port.patch
+++ /dev/null
@@ -1,102 +0,0 @@
-diff -Naur a/CMakeLists.txt b/CMakeLists.txt
---- a/CMakeLists.txt 2010-03-07 02:38:40.000000000 +0800
-+++ b/CMakeLists.txt 2015-10-19 19:28:48.185748034 +0800
-@@ -0,31 +0,40 @@
-+cmake_minimum_required(VERSION 3.16)
-+
- set(KDE_MIN_VERSION "4.4.0")
--find_package(KDE4 4.4.0 REQUIRED)
--include (KDE4Defaults)
-+
-+find_package(ECM 0.0.11 REQUIRED NO_MODULE)
-+set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
-+
-+include(KDEInstallDirs)
-+include(KDECMakeSettings)
-+include(KDECompilerSettings)
-+include(FeatureSummary)
-+
-+find_package(Qt5 REQUIRED COMPONENTS Widgets)
-+find_package(KF5 REQUIRED COMPONENTS KDELibs4Support) #CoreAddons Solid
-
- add_definitions(-DKDE_DEFAULT_DEBUG_AREA=7199)
-
--include_directories( ${KDE4_INCLUDES} )
--include_directories( ${KDE4_KIO_INCLUDES} )
-
--macro_optional_add_subdirectory(doc)
--macro_optional_add_subdirectory(po)
-+add_subdirectory(doc)
-+add_subdirectory(po)
-
- set(kio_locate_PART_SRCS
- pattern.cpp
- kio_locate.cpp
- locater.cpp)
-
--kde4_add_ui_files(kio_locate_PART_SRCS
-+qt5_wrap_ui(kio_locate_PART_SRCS
- klocateconfigfilterwidget.ui
- klocateconfiglocatewidget.ui
- klocateconfigwidget.ui)
-
--kde4_add_kcfg_files(kio_locate_PART_SRCS klocateconfig.kcfgc)
-+kconfig_add_kcfg_files(kio_locate_PART_SRCS klocateconfig.kcfgc)
-
--kde4_add_plugin(kio_locate ${kio_locate_PART_SRCS} ${kio_locate_PART_RCCS})
-+add_library(kio_locate MODULE ${kio_locate_PART_SRCS} ${kio_locate_PART_RCCS})
-
-
--target_link_libraries(kio_locate ${KDE4_KDE3SUPPORT_LIBS})
-+target_link_libraries(kio_locate KF5::KDELibs4Support KF5::KIOCore)
-
- install(TARGETS kio_locate DESTINATION ${PLUGIN_INSTALL_DIR} )
-
-diff -Naur a/doc/CMakeLists.txt b/doc/CMakeLists.txt
---- a/doc/CMakeLists.txt 2010-03-12 01:49:04.000000000 +0800
-+++ b/doc/CMakeLists.txt 2015-10-19 18:47:14.081029481 +0800
-@@ -1 +1 @@
--macro_optional_add_subdirectory(en)
-+add_subdirectory(en)
---- a/kio_locate.cpp 2010-03-20 17:05:46.000000000 +0800
-+++ b/kio_locate.cpp 2015-10-19 18:49:56.251128472 +0800
-@@ -290,7 +290,7 @@
- void LocateProtocol::setUrl(const KUrl& url)
- {
- if (url.protocol() != "locater") {
-- QString pattern = KUrl::decode_string(url.url());
-+ QString pattern = url.toString();
- pattern = pattern.mid(url.protocol().length() + 1);
-
- KUrl newUrl;
-@@ -371,7 +371,7 @@
- /// \todo Is UDS_NAME used for anything in stat? If so we should
- /// at least strip of the protocol part.
- UDSEntry entry;
-- entry.insert(KIO::UDSEntry::UDS_NAME, url.decode_string(url.url()));
-+ entry.insert(KIO::UDSEntry::UDS_NAME, url.toString());
- entry.insert(KIO::UDSEntry::UDS_FILE_TYPE, isDir ? S_IFDIR : S_IFREG);
- statEntry(entry);
- finished();
-@@ -767,7 +767,7 @@
-
- KConfigDialog *dialog = new KConfigDialog(0, "settings", KLocateConfig::self());
- dialog->setFaceType(KPageDialog::List);
-- dialog->setCaption(i18n("Configure - kio-locate"));
-+ dialog->setWindowTitle(i18n("Configure - kio-locate"));
- dialog->setWindowIcon(SmallIcon("edit-find"));
-
- Ui::KLocateConfigWidget w1;
---- a/kio_locate.h 2010-03-20 17:05:46.000000000 +0800
-+++ b/kio_locate.h 2015-10-19 18:51:19.908758859 +0800
-@@ -62,6 +62,10 @@
- #include "locater.h"
- #include "pattern.h"
-
-+#include <KUrl>
-+#include <kicon.h>
-+#define KDE_EXPORT __attribute__ ((visibility("default")))
-+
- class QByteArray;
- class KUrl;
-
diff --git a/kde-misc/kio-locate/kio-locate-0.5.3-r3.ebuild b/kde-misc/kio-locate/kio-locate-0.5.3-r3.ebuild
deleted file mode 100644
index 09421ff4075b..000000000000
--- a/kde-misc/kio-locate/kio-locate-0.5.3-r3.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_HANDBOOK="forceoptional" # not optional until !kdelibs4support
-inherit ecm
-
-DESCRIPTION="KIO worker for the locate command"
-HOMEPAGE="https://www.linux-apps.com/content/show.php/kio-locate?content=120965"
-SRC_URI="https://dl.opendesktop.org/api/files/download/id/1460972255/120965-${P}.tar.gz"
-# See also: https://github.com/reporter123/kio-locate/commits/master
-
-LICENSE="GPL-2"
-SLOT="5"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE=""
-
-DEPEND="
- dev-qt/qtgui:5
- dev-qt/qtwidgets:5
- kde-frameworks/kcompletion:5
- kde-frameworks/kconfig:5
- kde-frameworks/kconfigwidgets:5
- kde-frameworks/kcoreaddons:5
- kde-frameworks/kdelibs4support:5
- kde-frameworks/ki18n:5
- kde-frameworks/kiconthemes:5
- kde-frameworks/kio:5
- kde-frameworks/kwidgetsaddons:5
-"
-RDEPEND="${DEPEND}
- sys-apps/mlocate
-"
-
-PATCHES=(
- "${FILESDIR}/${P}-gcc-4.7.patch"
- "${FILESDIR}/${P}-kf5port.patch"
-)
diff --git a/kde-misc/kio-locate/metadata.xml b/kde-misc/kio-locate/metadata.xml
deleted file mode 100644
index 8641e5bdd399..000000000000
--- a/kde-misc/kio-locate/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>kde@gentoo.org</email>
- <name>Gentoo KDE Project</name>
- </maintainer>
-</pkgmetadata>