Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/gsound/
Date: Sun, 05 Sep 2021 19:11:34
Message-Id: 1630869019.0a52f0684a41d5758beaf3388fb07f331df25806.mattst88@gentoo
1 commit: 0a52f0684a41d5758beaf3388fb07f331df25806
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 5 19:09:20 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 5 19:10:19 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a52f068
7
8 media-libs/gsound: Version bump to 1.0.3
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 media-libs/gsound/Manifest | 1 +
13 media-libs/gsound/gsound-1.0.3.ebuild | 42 +++++++++++++++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/media-libs/gsound/Manifest b/media-libs/gsound/Manifest
17 index fd012cfb541..dae323c5850 100644
18 --- a/media-libs/gsound/Manifest
19 +++ b/media-libs/gsound/Manifest
20 @@ -1 +1,2 @@
21 DIST gsound-1.0.2.tar.xz 282068 BLAKE2B b85aa42c82c346b4541b38c971be46a35f0276d6cc34420cfc1a0e0ab0b4e25aa02829c17e8cb1d4258acc32d1d9c70a51dfac576046820f84e9ce9821c203ce SHA512 3525598aade28129d605e745cd6e8ef292220c446d59b34129056fa2aba7b4aa808c3efd29f4916056e20d5e4046b0edf2a6c9b97c272c95e59af7f8ef62e6b0
22 +DIST gsound-1.0.3.tar.xz 22592 BLAKE2B 01c61e859aa6b726ba6f49a4791b22d769b495d589d6d8b1c15c92d217433e6dc9a1e17ee2741f451b3ef32b4252677b47d46e149635ad4a58a5b323639c4ecb SHA512 5d7c4f17154b840abb94b432c33ba950929ddc5aba8c2795b54834d6c6b0280d3d8846acebb1e4e02688045bfb44cfac7dbb96fef44af5a73a12a70f3ece84eb
23
24 diff --git a/media-libs/gsound/gsound-1.0.3.ebuild b/media-libs/gsound/gsound-1.0.3.ebuild
25 new file mode 100644
26 index 00000000000..713f009ada3
27 --- /dev/null
28 +++ b/media-libs/gsound/gsound-1.0.3.ebuild
29 @@ -0,0 +1,42 @@
30 +# Copyright 1999-2021 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="Thin GObject wrapper around the libcanberra sound event library"
39 +HOMEPAGE="https://wiki.gnome.org/Projects/GSound"
40 +
41 +LICENSE="LGPL-2.1+"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~x86"
44 +IUSE="gtk-doc +introspection +vala"
45 +REQUIRED_USE="vala? ( introspection )"
46 +
47 +RDEPEND="
48 + >=dev-libs/glib-2.36:2
49 + media-libs/libcanberra
50 + introspection? ( >=dev-libs/gobject-introspection-1.2.9:= )
51 +"
52 +DEPEND="${RDEPEND}"
53 +BDEPEND="
54 + virtual/pkgconfig
55 + gtk-doc? ( dev-util/gtk-doc )
56 + vala? ( $(vala_depend) )
57 +"
58 +
59 +src_prepare() {
60 + use vala && vala_src_prepare
61 + default
62 +}
63 +
64 +src_configure() {
65 + local emesonargs=(
66 + $(meson_use gtk-doc gtk_doc)
67 + $(meson_use introspection)
68 + $(meson_use vala enable_vala)
69 + )
70 + meson_src_configure
71 +}