Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/frameworkintegration/
Date: Fri, 24 May 2019 19:26:12
Message-Id: 1558725944.589c618900bf7a5652e35c2fc49f9cf06f9afb8d.asturm@gentoo
1 commit: 589c618900bf7a5652e35c2fc49f9cf06f9afb8d
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 24 18:05:10 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri May 24 19:25:44 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=589c6189
7
8 kde-frameworks/frameworkintegration: 5.58.2 version bump
9
10 See also: https://mail.kde.org/pipermail/release-team/2019-May/011378.html
11
12 Package-Manager: Portage-2.3.66, Repoman-2.3.12
13 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14
15 kde-frameworks/frameworkintegration/Manifest | 1 +
16 .../frameworkintegration-5.58.2.ebuild | 53 ++++++++++++++++++++++
17 2 files changed, 54 insertions(+)
18
19 diff --git a/kde-frameworks/frameworkintegration/Manifest b/kde-frameworks/frameworkintegration/Manifest
20 index 4f43c9c0d00..71f4f5d103d 100644
21 --- a/kde-frameworks/frameworkintegration/Manifest
22 +++ b/kde-frameworks/frameworkintegration/Manifest
23 @@ -1,2 +1,3 @@
24 DIST frameworkintegration-5.57.0.tar.xz 1753224 BLAKE2B 533532e20231e4d1d4bee8d5964c791a62f5d91a4e458b720e7d8086e92204b234846269f3ae6c23492bb77e0d42ae39da6d2dae85a1e034c0bd67be04639b88 SHA512 e8aadd2d4ead08ada18809b0a54879415dbf699885ec74c56dd689226a235fe6a034600a0b357162eee475c8798863ef0b50ea1384c603756b3dbfbf3425df1b
25 DIST frameworkintegration-5.58.1.tar.xz 1753724 BLAKE2B 1162037b803e3f1780eccc8517409a6e9df33b20580e6c8355514197ae011fe38c7523dd9514bb6df21ec4b748d5e530de2740bdd67b5f879b56c5a7f7aa2571 SHA512 a9ed9edd85b4305d9b9a88b41f8ac2d50d18146fe74744b789dcdfb896f24ae6efdb9fb877155106c05222e9144e268692ddb15eb3930f3ed9ba713e0d493dfe
26 +DIST frameworkintegration-5.58.2.tar.xz 1753508 BLAKE2B e8f647b58f87adf2f3bd1813f8bc22c5b87e07ec8020dc07a65de31b970ab048111575f529055e46d3b9601abb250e03e6ebe9c2799ccc057f795e5daf5a7a6f SHA512 ebcb1be8cc103a24d8f76d3f007a9040ec18fad6b65a8c6afbeb51232eb31ddafd903008e1831259f2f5d915f16894c56e384a8ed625c32f172ae6368e3e0e99
27
28 diff --git a/kde-frameworks/frameworkintegration/frameworkintegration-5.58.2.ebuild b/kde-frameworks/frameworkintegration/frameworkintegration-5.58.2.ebuild
29 new file mode 100644
30 index 00000000000..abb6426a7b4
31 --- /dev/null
32 +++ b/kde-frameworks/frameworkintegration/frameworkintegration-5.58.2.ebuild
33 @@ -0,0 +1,53 @@
34 +# Copyright 1999-2019 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +KDE_QTHELP="false"
40 +VIRTUALX_REQUIRED="test"
41 +inherit kde5
42 +
43 +DESCRIPTION="Framework for integrating Qt applications with KDE Plasma workspaces"
44 +LICENSE="LGPL-2+"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
46 +IUSE="appstream X"
47 +
48 +DEPEND="
49 + $(add_frameworks_dep kconfig)
50 + $(add_frameworks_dep kconfigwidgets)
51 + $(add_frameworks_dep ki18n)
52 + $(add_frameworks_dep kiconthemes)
53 + $(add_frameworks_dep knewstuff)
54 + $(add_frameworks_dep knotifications)
55 + $(add_frameworks_dep kpackage)
56 + $(add_frameworks_dep kwidgetsaddons)
57 + $(add_qt_dep qtgui)
58 + $(add_qt_dep qtwidgets)
59 + appstream? (
60 + app-admin/packagekit-qt
61 + dev-libs/appstream[qt5]
62 + )
63 + X? (
64 + $(add_qt_dep qtx11extras)
65 + x11-libs/libxcb
66 + )
67 +"
68 +RDEPEND="${DEPEND}"
69 +
70 +# requires running kde environment
71 +RESTRICT+=" test"
72 +
73 +src_prepare() {
74 + punt_bogus_dep Qt5 DBus
75 + kde5_src_prepare
76 +}
77 +
78 +src_configure() {
79 + local mycmakeargs=(
80 + $(cmake-utils_use_find_package appstream AppStreamQt)
81 + $(cmake-utils_use_find_package appstream packagekitqt5)
82 + $(cmake-utils_use_find_package X XCB)
83 + )
84 +
85 + kde5_src_configure
86 +}