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/purpose/
Date: Sun, 02 Aug 2020 08:12:01
Message-Id: 1596314204.ddfaa6ae9da4eae39db73bc8477ea7196681ba42.asturm@gentoo
1 commit: ddfaa6ae9da4eae39db73bc8477ea7196681ba42
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 1 20:36:44 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 1 20:36:44 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=ddfaa6ae
7
8 kde-frameworks/purpose: 5.73.0 version bump
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 kde-frameworks/purpose/purpose-5.73.0.ebuild | 58 ++++++++++++++++++++++++++++
13 1 file changed, 58 insertions(+)
14
15 diff --git a/kde-frameworks/purpose/purpose-5.73.0.ebuild b/kde-frameworks/purpose/purpose-5.73.0.ebuild
16 new file mode 100644
17 index 0000000000..53c1c4293f
18 --- /dev/null
19 +++ b/kde-frameworks/purpose/purpose-5.73.0.ebuild
20 @@ -0,0 +1,58 @@
21 +# Copyright 1999-2020 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +ECM_QTHELP="false"
27 +ECM_TEST="forceoptional"
28 +PVCUT=$(ver_cut 1-2)
29 +QTMIN=5.14.2
30 +inherit ecm kde.org
31 +
32 +DESCRIPTION="Library for providing abstractions to get the developer's purposes fulfilled"
33 +LICENSE="LGPL-2.1+"
34 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
35 +IUSE="+dolphin +kaccounts"
36 +
37 +DEPEND="
38 + >=dev-qt/qtdeclarative-${QTMIN}:5
39 + >=dev-qt/qtgui-${QTMIN}:5
40 + >=dev-qt/qtnetwork-${QTMIN}:5
41 + >=dev-qt/qtwidgets-${QTMIN}:5
42 + =kde-frameworks/kcoreaddons-${PVCUT}*:5
43 + =kde-frameworks/ki18n-${PVCUT}*:5
44 + =kde-frameworks/kio-${PVCUT}*:5
45 + =kde-frameworks/kirigami-${PVCUT}*:5
46 + dolphin? ( =kde-frameworks/knotifications-${PVCUT}*:5 )
47 + kaccounts? (
48 + >=kde-apps/kaccounts-integration-19.04.3:5
49 + net-libs/accounts-qt
50 + )
51 +"
52 +RDEPEND="${DEPEND}
53 + >=dev-qt/qtquickcontrols-${QTMIN}:5
54 + >=dev-qt/qtquickcontrols2-${QTMIN}:5
55 + >=kde-frameworks/kdeclarative-${PVCUT}:5
56 + kaccounts? ( net-libs/accounts-qml )
57 +"
58 +
59 +# requires running environment
60 +RESTRICT+=" test"
61 +
62 +src_configure() {
63 + local mycmakeargs=(
64 + $(cmake_use_find_package dolphin KF5Notifications)
65 + $(cmake_use_find_package kaccounts KAccounts)
66 + )
67 +
68 + ecm_src_configure
69 +}
70 +
71 +pkg_postinst(){
72 + ecm_pkg_postinst
73 +
74 + if ! has_version "kde-misc/kdeconnect[app]" ; then
75 + elog "Optional runtime dependency:"
76 + elog "kde-misc/kdeconnect[app] (send through KDE Connect)"
77 + fi
78 +}