Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/frameworkintegration/
Date: Sat, 06 Nov 2021 17:43:51
Message-Id: 1636210723.0a908261bf5a4145eb378d5f8f20570b3e15ca2c.asturm@gentoo
1 commit: 0a908261bf5a4145eb378d5f8f20570b3e15ca2c
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 6 14:54:25 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 6 14:58:43 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=0a908261
7
8 kde-frameworks/frameworkintegration: 5.88.0 version bump
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 .../frameworkintegration-5.88.0.ebuild | 43 ++++++++++++++++++++++
14 1 file changed, 43 insertions(+)
15
16 diff --git a/kde-frameworks/frameworkintegration/frameworkintegration-5.88.0.ebuild b/kde-frameworks/frameworkintegration/frameworkintegration-5.88.0.ebuild
17 new file mode 100644
18 index 0000000000..d52fad5013
19 --- /dev/null
20 +++ b/kde-frameworks/frameworkintegration/frameworkintegration-5.88.0.ebuild
21 @@ -0,0 +1,43 @@
22 +# Copyright 1999-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=8
26 +
27 +ECM_QTHELP="false"
28 +PVCUT=$(ver_cut 1-2)
29 +QTMIN=5.15.2
30 +VIRTUALX_REQUIRED="test"
31 +inherit ecm kde.org
32 +
33 +DESCRIPTION="Framework for integrating Qt applications with KDE Plasma workspaces"
34 +
35 +LICENSE="LGPL-2+"
36 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
37 +IUSE=""
38 +
39 +# requires running Plasma environment
40 +RESTRICT="test"
41 +
42 +RDEPEND="
43 + >=dev-qt/qtgui-${QTMIN}:5
44 + >=dev-qt/qtwidgets-${QTMIN}:5
45 + =kde-frameworks/kconfig-${PVCUT}*:5
46 + =kde-frameworks/kconfigwidgets-${PVCUT}*:5
47 + =kde-frameworks/ki18n-${PVCUT}*:5
48 + =kde-frameworks/kiconthemes-${PVCUT}*:5
49 + =kde-frameworks/knewstuff-${PVCUT}*:5
50 + =kde-frameworks/knotifications-${PVCUT}*:5
51 +"
52 +DEPEND="${RDEPEND}
53 + =kde-frameworks/kpackage-${PVCUT}*:5
54 + =kde-frameworks/kwidgetsaddons-${PVCUT}*:5
55 +"
56 +
57 +src_configure() {
58 + local mycmakeargs=(
59 + -DCMAKE_DISABLE_FIND_PACKAGE_AppStreamQt=ON
60 + -DCMAKE_DISABLE_FIND_PACKAGE_packagekitqt5=ON
61 + )
62 +
63 + ecm_src_configure
64 +}