summaryrefslogtreecommitdiff
path: root/kde-frameworks
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-09-08 22:15:00 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2025-09-08 22:26:45 +0200
commit9d9e0dc89e3a1cb28d3512a06295038d3272b87f (patch)
tree3e2833c839d70ac6044fcfd27f469627da276176 /kde-frameworks
parentd2b4bd67b776085887240b26fcb46691f573cbb7 (diff)
downloadkde-9d9e0dc89e3a1cb28d3512a06295038d3272b87f.tar.gz
kde-9d9e0dc89e3a1cb28d3512a06295038d3272b87f.tar.bz2
kde-9d9e0dc89e3a1cb28d3512a06295038d3272b87f.zip
kde-frameworks/ki18n: 6.18.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks')
-rw-r--r--kde-frameworks/ki18n/Manifest1
-rw-r--r--kde-frameworks/ki18n/ki18n-6.18.0.ebuild46
2 files changed, 47 insertions, 0 deletions
diff --git a/kde-frameworks/ki18n/Manifest b/kde-frameworks/ki18n/Manifest
new file mode 100644
index 00000000000..cb9088a6437
--- /dev/null
+++ b/kde-frameworks/ki18n/Manifest
@@ -0,0 +1 @@
+DIST ki18n-6.18.0.tar.xz 3090192 BLAKE2B 176d032d2a7dd9c58ed12ce8f3bab59f3e3a655c4f7fcbeb2da16ec17da9e00a32de102ab17d50e61297e924780aa09301469aebaf5f9a76f02d6ead7018db98 SHA512 03039b6afb84b688c448cd750850e9752600351df772f744006d12981d4389d55936c48dfece059717186f46bb888994ffcdb3a30936c9cab7db972e2053914b
diff --git a/kde-frameworks/ki18n/ki18n-6.18.0.ebuild b/kde-frameworks/ki18n/ki18n-6.18.0.ebuild
new file mode 100644
index 00000000000..abd7bb0450c
--- /dev/null
+++ b/kde-frameworks/ki18n/ki18n-6.18.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..13} )
+QTMIN=6.7.2
+inherit ecm frameworks.kde.org python-single-r1
+
+DESCRIPTION="Framework based on Gettext for internationalizing user interface text"
+
+LICENSE="LGPL-2+"
+KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
+IUSE=""
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+COMMON_DEPEND="${PYTHON_DEPS}
+ >=dev-qt/qtbase-${QTMIN}:6[widgets]
+ >=dev-qt/qtdeclarative-${QTMIN}:6
+ sys-devel/gettext
+ virtual/libintl
+"
+DEPEND="${COMMON_DEPEND}
+ test? ( >=dev-qt/qtbase-${QTMIN}:6[concurrent] )
+"
+RDEPEND="${COMMON_DEPEND}
+ app-text/iso-codes
+"
+
+CMAKE_SKIP_TESTS=(
+ # bug 876496
+ kcatalogtest
+ # requires LANG fr_CH. bugs 823816
+ kcountrytest
+ kcountrysubdivisiontest
+ # flaky, bug 948895
+ ki18n-klocalizedstringtest
+)
+
+src_configure() {
+ local mycmakeargs=(
+ -DPython3_EXECUTABLE="${PYTHON}"
+ )
+ ecm_src_configure
+}