summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-03-04 18:02:59 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2025-03-04 20:17:08 +0100
commitc0b44669f6474cc53b3b99401c9fbbfcd9916a72 (patch)
tree1b3bbf07efb55910b68d3f2d2aa3dba79985cc52
parentd5b0e143a112cd6f45233b4aa0cfdbf55056e65a (diff)
downloadkde-c0b44669f6474cc53b3b99401c9fbbfcd9916a72.tar.gz
kde-c0b44669f6474cc53b3b99401c9fbbfcd9916a72.tar.bz2
kde-c0b44669f6474cc53b3b99401c9fbbfcd9916a72.zip
kde-apps/lokalize: 24.12.3 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--kde-apps/lokalize/Manifest1
-rw-r--r--kde-apps/lokalize/lokalize-24.12.3.ebuild66
2 files changed, 67 insertions, 0 deletions
diff --git a/kde-apps/lokalize/Manifest b/kde-apps/lokalize/Manifest
new file mode 100644
index 00000000000..419c1924bbc
--- /dev/null
+++ b/kde-apps/lokalize/Manifest
@@ -0,0 +1 @@
+DIST lokalize-24.12.3.tar.xz 2059676 BLAKE2B a54f06615f0caa9d58955c98d0b59baefb0099b3dc03bbbf01cd7c9046578a813ab6a977538d7fda0aa103689b2bb89c908a3bf10a8556f9c36a2d1cb954ed02 SHA512 ec82f4195bbfebcb488257b42eb8f75cf37c044adb6df4574c2e0a0bb7d90922ba36f310a42944fcb32139a3028376ece8602aa9b22ccd5d2d8383e9e1a0b5cb
diff --git a/kde-apps/lokalize/lokalize-24.12.3.ebuild b/kde-apps/lokalize/lokalize-24.12.3.ebuild
new file mode 100644
index 00000000000..2d99a935e2e
--- /dev/null
+++ b/kde-apps/lokalize/lokalize-24.12.3.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ECM_HANDBOOK="forceoptional"
+ECM_TEST="forceoptional"
+PYTHON_COMPAT=( python3_{10..12} )
+KFMIN=6.7.0
+QTMIN=6.7.2
+inherit python-single-r1 ecm gear.kde.org optfeature
+
+DESCRIPTION="Localization tool for KDE software and other free and open source software"
+HOMEPAGE="https://apps.kde.org/lokalize/ https://l10n.kde.org/tools/"
+
+LICENSE="GPL-2" # TODO: CHECK
+SLOT="6"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE=""
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+RESTRICT="test" # tests are broken, bug 739734
+
+DEPEND="${PYTHON_DEPS}
+ >=app-text/hunspell-1.2.8:=
+ >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,sql,widgets,xml]
+ >=kde-frameworks/kcompletion-${KFMIN}:6
+ >=kde-frameworks/kconfig-${KFMIN}:6
+ >=kde-frameworks/kconfigwidgets-${KFMIN}:6
+ >=kde-frameworks/kcoreaddons-${KFMIN}:6
+ >=kde-frameworks/kcrash-${KFMIN}:6
+ >=kde-frameworks/kdbusaddons-${KFMIN}:6
+ >=kde-frameworks/ki18n-${KFMIN}:6
+ >=kde-frameworks/kio-${KFMIN}:6
+ >=kde-frameworks/kitemviews-${KFMIN}:6
+ >=kde-frameworks/knotifications-${KFMIN}:6
+ >=kde-frameworks/kparts-${KFMIN}:6
+ >=kde-frameworks/ktextwidgets-${KFMIN}:6
+ >=kde-frameworks/kwidgetsaddons-${KFMIN}:6
+ >=kde-frameworks/kxmlgui-${KFMIN}:6
+ >=kde-frameworks/sonnet-${KFMIN}:6
+"
+RDEPEND="${DEPEND}
+ $(python_gen_cond_dep '
+ dev-python/translate-toolkit[${PYTHON_USEDEP}]
+ ')
+"
+
+pkg_setup() {
+ python-single-r1_pkg_setup
+ ecm_pkg_setup
+}
+
+src_install() {
+ ecm_src_install
+ rm "${ED}"/usr/share/lokalize/scripts/msgmerge.{py,rc} || die
+ python_fix_shebang "${ED}"/usr/share/${PN}
+}
+
+pkg_postinst() {
+ if [[ -z "${REPLACING_VERSIONS}" ]]; then
+ optfeature "autofetch kde.org translations in new project wizard" dev-vcs/subversion
+ optfeature "spell and grammar checking" app-text/languagetool
+ fi
+ ecm_pkg_postinst
+}