Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/gupnp-av/
Date: Sat, 04 Jun 2022 10:45:50
Message-Id: 1654339537.c30801005e5c7ab2516b72dde5d792ec092d0a6e.mattst88@gentoo
1 commit: c30801005e5c7ab2516b72dde5d792ec092d0a6e
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 4 10:45:12 2022 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 4 10:45:37 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3080100
7
8 net-libs/gupnp-av: Version bump to 0.14.1
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 net-libs/gupnp-av/Manifest | 1 +
13 net-libs/gupnp-av/gupnp-av-0.14.1.ebuild | 42 ++++++++++++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/net-libs/gupnp-av/Manifest b/net-libs/gupnp-av/Manifest
17 index dfb79ffb1988..affcedc7cbad 100644
18 --- a/net-libs/gupnp-av/Manifest
19 +++ b/net-libs/gupnp-av/Manifest
20 @@ -1 +1,2 @@
21 DIST gupnp-av-0.14.0.tar.xz 93128 BLAKE2B d66ba820aabf82be37a8c19a64adbacc863b495cb6a68849ee236cbe6956cc94fc992a3d4f351d165efaa8257ece2f3173dd845d2a9313bc9ff1a97a178d9632 SHA512 b357b5413d3e01e4ecaf9dbdf5f5f15555506aed662154d03c6232f0c82c4a49543deddf34350a204d467c1a33fed04e406500fd51d6e412d32ac909e974e041
22 +DIST gupnp-av-0.14.1.tar.xz 93484 BLAKE2B 5e4c070bc7f0dd1a1b67f58fb178ee575df5f9f3920c8c40f8975ac79c61f707df39a243d4783ff79f691dd42553c3a6eb89715be79bb7683910785afdd83b19 SHA512 b17b38c32fe068b0b74a7ee357be5f3a0df3320fd04338b5f6b04231c601d6cc57d2770c6e6ca42ded5e1be28a6b2746d16417eb322889ffe6a975ec58205655
23
24 diff --git a/net-libs/gupnp-av/gupnp-av-0.14.1.ebuild b/net-libs/gupnp-av/gupnp-av-0.14.1.ebuild
25 new file mode 100644
26 index 000000000000..4c2317e33e7a
27 --- /dev/null
28 +++ b/net-libs/gupnp-av/gupnp-av-0.14.1.ebuild
29 @@ -0,0 +1,42 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +VALA_USE_DEPEND="vapigen"
35 +
36 +inherit gnome.org meson vala
37 +
38 +DESCRIPTION="Utility library aiming to ease the handling UPnP A/V profiles"
39 +HOMEPAGE="https://wiki.gnome.org/Projects/GUPnP https://gitlab.gnome.org/GNOME/gupnp-av"
40 +
41 +LICENSE="LGPL-2"
42 +SLOT="0/3" # subslot: soname version
43 +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
44 +IUSE="gtk-doc +introspection"
45 +
46 +RDEPEND="
47 + >=dev-libs/glib-2.58:2
48 + >=net-libs/libsoup-2.28.2:2.4[introspection?]
49 + dev-libs/libxml2
50 + introspection? ( >=dev-libs/gobject-introspection-1.36:= )
51 +"
52 +DEPEND="${RDEPEND}"
53 +BDEPEND="
54 + virtual/pkgconfig
55 + gtk-doc? ( dev-util/gtk-doc )
56 + introspection? ( $(vala_depend) )
57 +"
58 +
59 +src_prepare() {
60 + use introspection && vala_src_prepare
61 + default
62 +}
63 +
64 +src_configure() {
65 + local emesonargs=(
66 + $(meson_use introspection)
67 + $(meson_use introspection vapi)
68 + $(meson_use gtk-doc gtk_doc)
69 + )
70 + meson_src_configure
71 +}