Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libmygpo-qt/
Date: Sun, 28 Feb 2021 12:26:48
Message-Id: 1614515174.c7e05289e545c212584279036b658cbeab60e392.asturm@gentoo
1 commit: c7e05289e545c212584279036b658cbeab60e392
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 28 09:51:17 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 28 12:26:14 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7e05289
7
8 media-libs/libmygpo-qt: Switch to cmake.eclass, EAPI-7 bump
9
10 Package-Manager: Portage-3.0.16, Repoman-3.0.2
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-libs/libmygpo-qt/libmygpo-qt-1.1.0.ebuild | 12 +++++++-----
14 media-libs/libmygpo-qt/libmygpo-qt-9999.ebuild | 4 ++--
15 2 files changed, 9 insertions(+), 7 deletions(-)
16
17 diff --git a/media-libs/libmygpo-qt/libmygpo-qt-1.1.0.ebuild b/media-libs/libmygpo-qt/libmygpo-qt-1.1.0.ebuild
18 index cda56925c14..336d3d38225 100644
19 --- a/media-libs/libmygpo-qt/libmygpo-qt-1.1.0.ebuild
20 +++ b/media-libs/libmygpo-qt/libmygpo-qt-1.1.0.ebuild
21 @@ -1,9 +1,9 @@
22 # Copyright 1999-2021 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI=6
26 +EAPI=7
27
28 -inherit cmake-utils
29 +inherit cmake
30
31 DESCRIPTION="Qt/C++ library wrapping the gpodder.net webservice"
32 HOMEPAGE="http://wiki.gpodder.org/wiki/Libmygpo-qt"
33 @@ -21,12 +21,14 @@ SLOT="0"
34 IUSE="test"
35 RESTRICT="!test? ( test )"
36
37 +BDEPEND="
38 + virtual/pkgconfig
39 +"
40 RDEPEND="
41 dev-qt/qtcore:5
42 dev-qt/qtnetwork:5
43 "
44 DEPEND="${RDEPEND}
45 - virtual/pkgconfig
46 test? ( dev-qt/qttest:5 )
47 "
48
49 @@ -38,7 +40,7 @@ src_configure() {
50 -DMYGPO_BUILD_TESTS=$(usex test)
51 )
52
53 - cmake-utils_src_configure
54 + cmake_src_configure
55 }
56
57 src_test() {
58 @@ -47,5 +49,5 @@ src_test() {
59 -E "(JsonCreatorTest-test)"
60 )
61
62 - cmake-utils_src_test
63 + cmake_src_test
64 }
65
66 diff --git a/media-libs/libmygpo-qt/libmygpo-qt-9999.ebuild b/media-libs/libmygpo-qt/libmygpo-qt-9999.ebuild
67 index 55b84538167..ce97b231929 100644
68 --- a/media-libs/libmygpo-qt/libmygpo-qt-9999.ebuild
69 +++ b/media-libs/libmygpo-qt/libmygpo-qt-9999.ebuild
70 @@ -1,4 +1,4 @@
71 -# Copyright 1999-2019 Gentoo Authors
72 +# Copyright 1999-2021 Gentoo Authors
73 # Distributed under the terms of the GNU General Public License v2
74
75 EAPI=7
76 @@ -13,7 +13,7 @@ if [[ ${PV} == *9999* ]]; then
77 inherit git-r3
78 else
79 SRC_URI="https://github.com/gpodder/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
80 - KEYWORDS="~amd64 ~x86"
81 + KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
82 fi
83
84 LICENSE="LGPL-2.1"