Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/gssdp/
Date: Sat, 27 Jun 2020 12:46:04
Message-Id: 1593261541.a922024dfc9ad3a391c0d44c77862f57afeaf233.leio@gentoo
1 commit: a922024dfc9ad3a391c0d44c77862f57afeaf233
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 27 12:39:01 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 27 12:39:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a922024d
7
8 net-libs/gssdp: bump to 1.2.3
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
12
13 net-libs/gssdp/Manifest | 1 +
14 net-libs/gssdp/gssdp-1.2.3.ebuild | 61 +++++++++++++++++++++++++++++++++++++++
15 2 files changed, 62 insertions(+)
16
17 diff --git a/net-libs/gssdp/Manifest b/net-libs/gssdp/Manifest
18 index d7903e9e8cd..6296708fc69 100644
19 --- a/net-libs/gssdp/Manifest
20 +++ b/net-libs/gssdp/Manifest
21 @@ -1,2 +1,3 @@
22 DIST gssdp-1.0.3.tar.xz 316740 BLAKE2B 50293e653ec5596a986770f3ea81a244b8f9772e9d0c13df0e48f00ee34445c2fc7250702d7928e7dba081715e6d4e379d7a899905c35da84915e6b4058a3307 SHA512 ef72335c3f796aff0d3dce1781d5a0b015508f614d4a73699ebce411b0593419b40c09839ffb62e50cf9d77e16ec0e31d0e23f92d35abb4d105dea47c00a0506
23 DIST gssdp-1.2.2.tar.xz 61444 BLAKE2B 917936ba61ef6074939a11792ddb4f3baf0bd88475df7e49fd6e598dc2530610f04661a4b5efcb2a024e0d37011bfab32bcffd644d2a3be2eb1325c9020b73bf SHA512 3d962ac5a633492979d49c722bbbbeec88385fdbd063d3b68f6b82edbc62c9e78c556d48a904460dd04328bf7a79668dcf3ee33bf61a271ac926e01e2e645f68
24 +DIST gssdp-1.2.3.tar.xz 62032 BLAKE2B 761a9e0df8289a595d882497bdda6d180f19328d0e97076446286e34e7735d1b1d07fc0299618955f7d92732d11d533a59cf4012f5167c4610c9856583f06770 SHA512 abce2473995a996b0adc74ced77cb2158cc997ed70edb0c25fbddd85fe9e6afc6bf7f996bbba7a6ed5268dfbe9207ae12f2e6989efe2e8e10cc25293df347e82
25
26 diff --git a/net-libs/gssdp/gssdp-1.2.3.ebuild b/net-libs/gssdp/gssdp-1.2.3.ebuild
27 new file mode 100644
28 index 00000000000..dc12c7e1d12
29 --- /dev/null
30 +++ b/net-libs/gssdp/gssdp-1.2.3.ebuild
31 @@ -0,0 +1,61 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI="7"
36 +VALA_USE_DEPEND="vapigen"
37 +
38 +inherit gnome.org meson multilib-minimal vala xdg
39 +
40 +DESCRIPTION="GObject-based API for handling resource discovery and announcement over SSDP"
41 +HOMEPAGE="https://wiki.gnome.org/Projects/GUPnP"
42 +
43 +LICENSE="LGPL-2+"
44 +SLOT="0/1.2-0" # <API version>-<soname>
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
46 +IUSE="gtk-doc +introspection gtk vala"
47 +REQUIRED_USE="vala? ( introspection )"
48 +
49 +RDEPEND="
50 + >=dev-libs/glib-2.54:2[${MULTILIB_USEDEP}]
51 + >=net-libs/libsoup-2.26.1:2.4[${MULTILIB_USEDEP},introspection?]
52 + gtk? ( >=x11-libs/gtk+-3.12:3 )
53 + introspection? ( >=dev-libs/gobject-introspection-1.54:= )
54 +"
55 +DEPEND="${RDEPEND}"
56 +BDEPEND="
57 + gtk-doc? ( >=dev-util/gtk-doc-1.14
58 + app-text/docbook-xml-dtd:4.1.2 )
59 + virtual/pkgconfig
60 + vala? (
61 + $(vala_depend)
62 + net-libs/libsoup:2.4[vala]
63 + )
64 +"
65 +
66 +src_prepare() {
67 + use vala && vala_src_prepare
68 + xdg_src_prepare
69 +}
70 +
71 +multilib_src_configure() {
72 + local emesonargs=(
73 + -Dgtk_doc=$(multilib_native_usex gtk-doc true false)
74 + -Dsniffer=$(multilib_native_usex gtk true false)
75 + -Dintrospection=$(multilib_native_usex introspection true false)
76 + -Dvapi=$(multilib_native_usex vala true false)
77 + -Dexamples=false
78 + )
79 + meson_src_configure
80 +}
81 +
82 +multilib_src_compile() {
83 + meson_src_compile
84 +}
85 +
86 +multilib_src_test() {
87 + meson_src_test
88 +}
89 +
90 +multilib_src_install() {
91 + meson_src_install
92 +}