Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: kde-misc/kaccounts-integration/
Date: Wed, 25 Feb 2015 22:10:31
Message-Id: 1424902201.5482c33804386648f4a8103f45c301817e57920f.johu@gentoo
1 commit: 5482c33804386648f4a8103f45c301817e57920f
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 25 19:41:38 2015 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 25 22:10:01 2015 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=5482c338
7
8 [kde-misc/kaccounts-integration] QA issues
9
10 Drop SLOT handled by eclass. Rely on eclass tests handling. Update DESCRIPTION.
11 Sort dependencies.
12
13 Package-Manager: portage-2.2.17
14
15 ---
16 .../kaccounts-integration-9999.ebuild | 19 +++++--------------
17 1 file changed, 5 insertions(+), 14 deletions(-)
18
19 diff --git a/kde-misc/kaccounts-integration/kaccounts-integration-9999.ebuild b/kde-misc/kaccounts-integration/kaccounts-integration-9999.ebuild
20 index 7fac4b3..f28eddf 100644
21 --- a/kde-misc/kaccounts-integration/kaccounts-integration-9999.ebuild
22 +++ b/kde-misc/kaccounts-integration/kaccounts-integration-9999.ebuild
23 @@ -4,14 +4,13 @@
24
25 EAPI=5
26
27 +KDE_TEST=true
28 inherit kde5
29
30 -DESCRIPTION="KDE KAccount integration"
31 +DESCRIPTION="Administer web accounts for the sites and services across the KDE desktop"
32 HOMEPAGE="https://community.kde.org/KTp"
33 -
34 LICENSE="LGPL-2.1"
35 -SLOT="5"
36 -IUSE="test"
37 +IUSE=""
38
39 DEPEND="
40 $(add_frameworks_dep kconfig)
41 @@ -23,17 +22,9 @@ DEPEND="
42 $(add_frameworks_dep kio)
43 $(add_frameworks_dep kwallet)
44 $(add_frameworks_dep kwidgetsaddons)
45 - net-libs/accounts-qt
46 - net-libs/signond
47 dev-qt/qtgui:5
48 dev-qt/qtwidgets:5
49 + net-libs/accounts-qt
50 + net-libs/signond
51 "
52 RDEPEND="${DEPEND}"
53 -
54 -src_prepare() {
55 - if ! use test; then
56 - sed -i -e 's/add_subdirectory(tests)//' CMakeLists.txt || die "couldn't disable tests"
57 - fi
58 -
59 - kde5_src_prepare
60 -}