kde-apps/kate: 26.08.0 version bump

Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2026-08-20 22:09:02 +02:00
parent 08ffdab100
commit a493f02a12
2 changed files with 62 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST kate-26.04.3.tar.xz 8619908 BLAKE2B bb8277e7b6cdd7662fd71b9fa060e931bae8c21865cb708358285ff887b4b9b77af0d6c31954b8e6fb753f112ca476e27352c5b7f83c585d87342b389c12d107 SHA512 9d5f293292d8827c469a5ff499b409b75ee33b6428b6826b64aa661e6e6ef55d38108a4215fcbf43224cf988c1cb93347261bf511791fd1e72c758140c6b34c4
DIST kate-26.08.0.tar.xz 8703532 BLAKE2B c44007c0e19b07fc34bd69a1d9f5fe213db82e4f140ca7b9691dbd3560d9434213b22c6902151886ada2316bfc223f591caceded7c6b54cd08ae216c5a4ea91a SHA512 6c4a03de7c265dad7a5148db1e293fad81f8a121f4487ad3cf9a26c79e29814bd61c104d65e5ad83f5b5d7fea335f6911efd5a464c7e81476bb97f4a6de4dfb7

View File

@@ -0,0 +1,61 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
ECM_HANDBOOK="forceoff"
KFMIN=6.27.0
QTMIN=6.11.2
inherit ecm flag-o-matic gear.kde.org xdg
DESCRIPTION="Multi-document editor with network transparency, Plasma integration and more"
HOMEPAGE="https://kate-editor.org/ https://apps.kde.org/kate/"
LICENSE="GPL-2" # TODO: CHECK
SLOT="6"
KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
IUSE=""
# slot op: Uses Qt6::GuiPrivate for qtx11extras_p.h
# kde-frameworks/kwindowsystem[X]: Unconditional use of KX11Extras
# TODO: replace HAVE_X11 and __has_include with explicit WITH_X11 option
DEPEND="
>=dev-qt/qtbase-${QTMIN}:6=[dbus,gui,network,widgets,X]
~kde-apps/kate-lib-${PV}:6
>=kde-frameworks/kcoreaddons-${KFMIN}:6
>=kde-frameworks/kdbusaddons-${KFMIN}:6
>=kde-frameworks/ki18n-${KFMIN}:6
>=kde-frameworks/kwindowsystem-${KFMIN}:6[X]
virtual/libintl
"
RDEPEND="${DEPEND}
~kde-apps/kate-addons-${PV}:6
>=kde-apps/kate-common-${PV}
"
src_prepare() {
ecm_src_prepare
ecm_punt_po_install
# these tests are run in kde-apps/kate-lib; don't build kio plugin
cmake_comment_add_subdirectory -f apps/lib autotests io
}
src_configure() {
local mycmakeargs=(
-DBUILD_addons=FALSE
-DBUILD_kwrite=FALSE
)
# provided by kde-apps/kate-lib
append-libs -lkateprivate
ecm_src_configure
}
src_install() {
ecm_src_install
# provided by kde-apps/kate-lib
rm -v "${ED}"/usr/$(get_libdir)/libkateprivate.so.* || die
rm -v "${ED}"/usr/bin/exec_inspect.sh || die
}