summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-04-05 17:51:10 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2025-04-05 18:05:22 +0200
commit6571d787307d7b6d146ad6a69e8c18f7540c17e5 (patch)
tree1bc2d5fae983127c4aec2a6346ebda217ca0288a
parent0e67848becf8423376cf19a68b158119ced4ccac (diff)
downloadkde-6571d787307d7b6d146ad6a69e8c18f7540c17e5.tar.gz
kde-6571d787307d7b6d146ad6a69e8c18f7540c17e5.tar.bz2
kde-6571d787307d7b6d146ad6a69e8c18f7540c17e5.zip
kde-frameworks/ki18n: 6.13.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--kde-frameworks/ki18n/Manifest1
-rw-r--r--kde-frameworks/ki18n/ki18n-6.13.0.ebuild44
2 files changed, 45 insertions, 0 deletions
diff --git a/kde-frameworks/ki18n/Manifest b/kde-frameworks/ki18n/Manifest
new file mode 100644
index 00000000000..502a9be7f2f
--- /dev/null
+++ b/kde-frameworks/ki18n/Manifest
@@ -0,0 +1 @@
+DIST ki18n-6.13.0.tar.xz 3113084 BLAKE2B 4e6662ccac49190f9474f3846c615224b0335a97dd37129be69fb73132205a9dbc7ae787d18545ee0c9fdb3ccb2764a259627e99701b4e8a6c4ea6109dfadaca SHA512 f0280af487457fccf069126da753c53668386d40fc0db3285b524860c04afc800a0e15826348036fab8b0efc2c15e93adbab5081e0fd54125c98e85728767515
diff --git a/kde-frameworks/ki18n/ki18n-6.13.0.ebuild b/kde-frameworks/ki18n/ki18n-6.13.0.ebuild
new file mode 100644
index 00000000000..70d27ed5c24
--- /dev/null
+++ b/kde-frameworks/ki18n/ki18n-6.13.0.ebuild
@@ -0,0 +1,44 @@
+# 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 ~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
+)
+
+src_configure() {
+ local mycmakeargs=(
+ -DPython3_EXECUTABLE="${PYTHON}"
+ )
+ ecm_src_configure
+}