summaryrefslogtreecommitdiff
path: root/kde-frameworks
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2022-09-05 23:12:46 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2022-09-05 23:40:46 +0200
commit729ea824f5ef8891662ee3f76ba2578722e16f7c (patch)
tree1edfb48dbed74200485d9bbc3ab80af83f7f5105 /kde-frameworks
parente62bc6d0812081de11ffe77a7444e1234da8f8b2 (diff)
downloadkde-729ea824f5ef8891662ee3f76ba2578722e16f7c.tar.gz
kde-729ea824f5ef8891662ee3f76ba2578722e16f7c.tar.bz2
kde-729ea824f5ef8891662ee3f76ba2578722e16f7c.zip
kde-frameworks/ki18n: 5.98.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-5.98.0.ebuild47
2 files changed, 48 insertions, 0 deletions
diff --git a/kde-frameworks/ki18n/Manifest b/kde-frameworks/ki18n/Manifest
new file mode 100644
index 00000000000..a588b0b8850
--- /dev/null
+++ b/kde-frameworks/ki18n/Manifest
@@ -0,0 +1 @@
+DIST ki18n-5.98.0.tar.xz 955640 BLAKE2B f3ef6a5bae7240c9dcc156ebdd1b97710c9ca03883902b7df4005830e066eba9f935a48e8e3d53b0e05eb3f0755aa691dd832d0efffb4ce86f20a4c3e56abf71 SHA512 33b0694b26735f312d84ee1d1797c850e826a7899486e80dbba00b26a7922e2adf88af5695a600fb95e56e307e9f9ad8cb433204c60ab8fa9c5d7076505b696a
diff --git a/kde-frameworks/ki18n/ki18n-5.98.0.ebuild b/kde-frameworks/ki18n/ki18n-5.98.0.ebuild
new file mode 100644
index 00000000000..20e52f60a9e
--- /dev/null
+++ b/kde-frameworks/ki18n/ki18n-5.98.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+QTMIN=5.15.5
+inherit ecm frameworks.kde.org python-single-r1
+
+DESCRIPTION="Framework based on Gettext for internationalizing user interface text"
+LICENSE="LGPL-2+"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+IUSE=""
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+COMMON_DEPEND="${PYTHON_DEPS}
+ >=dev-qt/qtdeclarative-${QTMIN}:5
+ sys-devel/gettext
+ virtual/libintl
+"
+DEPEND="${COMMON_DEPEND}
+ test? ( >=dev-qt/qtconcurrent-${QTMIN}:5 )
+"
+RDEPEND="${COMMON_DEPEND}
+ app-text/iso-codes
+"
+
+PATCHES=( "${FILESDIR}/${PN}-5.57.0-python.patch" )
+
+pkg_setup() {
+ ecm_pkg_setup
+ python-single-r1_pkg_setup
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DPYTHON_EXECUTABLE="${PYTHON}"
+ )
+ ecm_src_configure
+}
+
+src_test() {
+ # requires LANG fr_CH. bug 823816
+ local myctestargs=( -E "(kcountrytest|kcountrysubdivisiontest)" )
+ ecm_src_test
+}