diff options
author | 2022-05-14 13:10:24 +0200 | |
---|---|---|
committer | 2022-05-14 13:31:12 +0200 | |
commit | d8c21c9c31c14554b060e6ae0dd460bd7629b5dd (patch) | |
tree | 628e2b3230791a116f86dde3f393258b813a7921 | |
parent | kde-frameworks/kholidays: 5.94.0 version bump (diff) | |
download | gentoo-d8c21c9c31c14554b060e6ae0dd460bd7629b5dd.tar.gz gentoo-d8c21c9c31c14554b060e6ae0dd460bd7629b5dd.tar.bz2 gentoo-d8c21c9c31c14554b060e6ae0dd460bd7629b5dd.zip |
kde-frameworks/ki18n: 5.94.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r-- | kde-frameworks/ki18n/Manifest | 1 | ||||
-rw-r--r-- | kde-frameworks/ki18n/ki18n-5.94.0.ebuild | 47 |
2 files changed, 48 insertions, 0 deletions
diff --git a/kde-frameworks/ki18n/Manifest b/kde-frameworks/ki18n/Manifest index f5f1dd7aa9f7..cb35df52cf60 100644 --- a/kde-frameworks/ki18n/Manifest +++ b/kde-frameworks/ki18n/Manifest @@ -1,2 +1,3 @@ DIST ki18n-5.92.0.tar.xz 956048 BLAKE2B 451f091aa44c6845a7aae509c8e13ca3c707ad1858330ad97edbe94ded6646a02dcaa6d2d852686633f62539c332dab6189502ebedfd40b8374144c43930c946 SHA512 0eba368abe4ff385594e22e808d30b5d4a9af95e8bb2a3f4379518b374aab8ddabef18ebdfc2afd121ebb5f8865a427a49c8abf9c59b126cecf78a48640439e7 DIST ki18n-5.93.0.tar.xz 955916 BLAKE2B 5c8817259d560dfc1d9a3b2c51d95f6821ae8da61e8aeb4d45178771221459702aa9304af377c3b021cf051aa5a190eebeda4b4d93b0c947b2a14b085a803321 SHA512 ce34151080eeb99fe52995463cd0a29a6be0b10c500f24451c058fcedf291618d0d6c578f402a9d1326e60e4a1b19eb87c0ac148826e6aaaf6e4501d8e36a13a +DIST ki18n-5.94.0.tar.xz 955304 BLAKE2B 75c5cb3e26648cc20ff9bcf957103c787f19b02a6e5c3e8a804a211a2c184fb59d38d3920d316009321695a607e8c3e8366b7b70d4c35191fae8b0dbc0166515 SHA512 ff00a56f1d6e5a425d025320be6f6e1559e329f56e68975df9d7c1ecdc0108f2118af37373db583d7760f34877bd0f18bef47080a70dfca628d958f35e8f9e15 diff --git a/kde-frameworks/ki18n/ki18n-5.94.0.ebuild b/kde-frameworks/ki18n/ki18n-5.94.0.ebuild new file mode 100644 index 000000000000..da8b02fe7d75 --- /dev/null +++ b/kde-frameworks/ki18n/ki18n-5.94.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..10} ) +QTMIN=5.15.3 +inherit ecm kde.org python-single-r1 + +DESCRIPTION="Framework based on Gettext for internationalizing user interface text" +LICENSE="LGPL-2+" +KEYWORDS="~amd64 ~arm ~arm64 ~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 +} |