Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/uhttpmock/
Date: Sun, 01 Jan 2023 16:20:12
Message-Id: 1672589897.dd274c61489ce2642eab1f64df8319e5d7b13271.soap@gentoo
1 commit: dd274c61489ce2642eab1f64df8319e5d7b13271
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 1 16:18:17 2023 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 1 16:18:17 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd274c61
7
8 net-libs/uhttpmock: move vala deps to BDEPEND
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 ...tpmock-0.5.5.ebuild => uhttpmock-0.5.5-r1.ebuild} | 20 +++++++-------------
13 1 file changed, 7 insertions(+), 13 deletions(-)
14
15 diff --git a/net-libs/uhttpmock/uhttpmock-0.5.5.ebuild b/net-libs/uhttpmock/uhttpmock-0.5.5-r1.ebuild
16 similarity index 91%
17 rename from net-libs/uhttpmock/uhttpmock-0.5.5.ebuild
18 rename to net-libs/uhttpmock/uhttpmock-0.5.5-r1.ebuild
19 index b6283ea2941b..5b8c94ae5da7 100644
20 --- a/net-libs/uhttpmock/uhttpmock-0.5.5.ebuild
21 +++ b/net-libs/uhttpmock/uhttpmock-0.5.5-r1.ebuild
22 @@ -1,4 +1,4 @@
23 -# Copyright 1999-2022 Gentoo Authors
24 +# Copyright 1999-2023 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=8
28 @@ -11,35 +11,29 @@ SRC_URI="https://gitlab.freedesktop.org/pwithnall/${PN}/-/archive/${PV}/${P}.tar
29
30 LICENSE="LGPL-2+"
31 SLOT="0"
32 -
33 +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc x86"
34 IUSE="gtk-doc +introspection vala"
35 REQUIRED_USE="vala? ( introspection )"
36
37 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc x86"
38 -
39 RDEPEND="
40 >=dev-libs/glib-2.38.0:2
41 >=net-libs/libsoup-2.47.3:2.4
42 introspection? ( >=dev-libs/gobject-introspection-0.9.7:= )
43 "
44 -DEPEND="${RDEPEND}
45 - vala? ( $(vala_depend) )
46 -"
47 +DEPEND="${RDEPEND}"
48 BDEPEND="
49 + >=dev-util/gtk-doc-am-1.14
50 + virtual/pkgconfig
51 gtk-doc? (
52 dev-util/gtk-doc
53 app-text/docbook-xml-dtd:4.3
54 )
55 - >=dev-util/gtk-doc-am-1.14
56 - virtual/pkgconfig
57 + vala? ( $(vala_depend) )
58 "
59
60 -src_prepare() {
61 - default
62 +src_configure() {
63 use vala && vala_setup
64 -}
65
66 -src_configure() {
67 local emesonargs=(
68 $(meson_use introspection)
69 $(meson_feature vala vapi)