From 36665abda6f05681e59bd4e846453d05c41c9ced Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Thu, 11 Jan 2024 17:08:40 +0100 Subject: Move {app-doc → app-text}/zeal MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Per the category metadata, app-doc/ is reserved for documentation *files* and not software. Move it to app-text/ where it seems a better fit. Signed-off-by: Michał Górny Closes: https://github.com/gentoo/gentoo/pull/34762 Signed-off-by: Michał Górny --- app-doc/zeal/Manifest | 1 - ...s-disable-checking-for-updates-by-default.patch | 26 ----------- ...al-0.6.1_p20200815-fix-sidebar-static-lib.patch | 25 ---------- app-doc/zeal/metadata.xml | 8 ---- app-doc/zeal/zeal-0.6.1_p20200815-r1.ebuild | 53 ---------------------- 5 files changed, 113 deletions(-) delete mode 100644 app-doc/zeal/Manifest delete mode 100644 app-doc/zeal/files/0002-settings-disable-checking-for-updates-by-default.patch delete mode 100644 app-doc/zeal/files/zeal-0.6.1_p20200815-fix-sidebar-static-lib.patch delete mode 100644 app-doc/zeal/metadata.xml delete mode 100644 app-doc/zeal/zeal-0.6.1_p20200815-r1.ebuild (limited to 'app-doc') diff --git a/app-doc/zeal/Manifest b/app-doc/zeal/Manifest deleted file mode 100644 index ff4a3054c4af..000000000000 --- a/app-doc/zeal/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST zeal-0.6.1_p20200815.tar.gz 1180048 BLAKE2B 22a6ee7985516f2204de0603374944c101fa77339a6c83b8a33633fa51e25890f39d672f3d804adb8c41b9ffc2ad7971ce16f90dacb1160f1868ed3f8768aad2 SHA512 fa08c88a40f2f75847db4950c2b027262304bb8b63b95d497786fa2c3a90aa0c488fc3ebe494afe70353a2dd93a181bf2d8fa752a7241e572045c6728ea99f2d diff --git a/app-doc/zeal/files/0002-settings-disable-checking-for-updates-by-default.patch b/app-doc/zeal/files/0002-settings-disable-checking-for-updates-by-default.patch deleted file mode 100644 index 977412c47339..000000000000 --- a/app-doc/zeal/files/0002-settings-disable-checking-for-updates-by-default.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 3d499c8391e36b7fb1780815d04e533f26333145 Mon Sep 17 00:00:00 2001 -From: Henning Schild -Date: Sat, 9 Mar 2019 10:29:54 +0100 -Subject: [PATCH 2/2] settings: disable checking for updates by default - -Signed-off-by: Henning Schild ---- - src/libs/core/settings.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/libs/core/settings.cpp b/src/libs/core/settings.cpp -index 8922bc4..549ddff 100644 ---- a/src/libs/core/settings.cpp -+++ b/src/libs/core/settings.cpp -@@ -72,7 +72,7 @@ void Settings::load() - - // TODO: Put everything in groups - startMinimized = settings->value(QStringLiteral("start_minimized"), false).toBool(); -- checkForUpdate = settings->value(QStringLiteral("check_for_update"), true).toBool(); -+ checkForUpdate = settings->value(QStringLiteral("check_for_update"), false).toBool(); - - showSystrayIcon = settings->value(QStringLiteral("show_systray_icon"), true).toBool(); - minimizeToSystray = settings->value(QStringLiteral("minimize_to_systray"), false).toBool(); --- -2.19.2 - diff --git a/app-doc/zeal/files/zeal-0.6.1_p20200815-fix-sidebar-static-lib.patch b/app-doc/zeal/files/zeal-0.6.1_p20200815-fix-sidebar-static-lib.patch deleted file mode 100644 index 0a5a8f69be2d..000000000000 --- a/app-doc/zeal/files/zeal-0.6.1_p20200815-fix-sidebar-static-lib.patch +++ /dev/null @@ -1,25 +0,0 @@ -From b48ee895ce7fc1db1dce20dac5115ec4c60f75fa Mon Sep 17 00:00:00 2001 -From: Andreas Sturmlechner -Date: Tue, 18 Aug 2020 15:03:59 +0200 -Subject: [PATCH] sidebar: Add missing STATIC keyword (similar to #1085) - -Fixes unresolved soname dependency after install. - -Signed-off-by: Andreas Sturmlechner ---- - src/libs/sidebar/CMakeLists.txt | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/libs/sidebar/CMakeLists.txt b/src/libs/sidebar/CMakeLists.txt -index 4332b8f..dc6be0e 100644 ---- a/src/libs/sidebar/CMakeLists.txt -+++ b/src/libs/sidebar/CMakeLists.txt -@@ -1,4 +1,4 @@ --add_library(Sidebar -+add_library(Sidebar STATIC - container.cpp - proxyview.cpp - view.cpp --- -2.28.0 - diff --git a/app-doc/zeal/metadata.xml b/app-doc/zeal/metadata.xml deleted file mode 100644 index af3ff4b585c0..000000000000 --- a/app-doc/zeal/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - zealdocs/zeal - - diff --git a/app-doc/zeal/zeal-0.6.1_p20200815-r1.ebuild b/app-doc/zeal/zeal-0.6.1_p20200815-r1.ebuild deleted file mode 100644 index de70b12dcde9..000000000000 --- a/app-doc/zeal/zeal-0.6.1_p20200815-r1.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -COMMIT=994cc5f6b6bfffddd5faaaafdb4fed483c38188f -inherit cmake xdg-utils - -DESCRIPTION="Offline documentation browser inspired by Dash" -HOMEPAGE="https://zealdocs.org/" -SRC_URI="https://github.com/zealdocs/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${PN}-${COMMIT}" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND=" - app-arch/libarchive:= - dev-db/sqlite:3 - dev-qt/qtconcurrent:5 - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtsql:5[sqlite] - dev-qt/qtwebchannel:5 - dev-qt/qtwebengine:5[widgets] - dev-qt/qtwidgets:5 - dev-qt/qtx11extras:5 - x11-libs/libX11 - x11-libs/libxcb:= - >=x11-libs/xcb-util-keysyms-0.3.9 -" -RDEPEND="${DEPEND} - x11-themes/hicolor-icon-theme -" -BDEPEND="kde-frameworks/extra-cmake-modules:0" - -PATCHES=( - "${FILESDIR}/0002-settings-disable-checking-for-updates-by-default.patch" - "${FILESDIR}/${P}-fix-sidebar-static-lib.patch" -) - -pkg_postinst() { - xdg_icon_cache_update - xdg_desktop_database_update -} - -pkg_postrm() { - xdg_icon_cache_update - xdg_desktop_database_update -} -- cgit v1.2.3-65-gdbad