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-sound/pasystray/
Date: Sun, 03 Feb 2019 19:14:15
Message-Id: 1549221226.446adf335c125dedf3ed9071bb06b5ee6b57eca3.asturm@gentoo
1 commit: 446adf335c125dedf3ed9071bb06b5ee6b57eca3
2 Author: Paul Healy <lmiphay <AT> gmail <DOT> com>
3 AuthorDate: Wed Jan 9 20:58:06 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 3 19:13:46 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=446adf33
7
8 media-sound/pasystray: bump pasystray to 0.7.1
9
10 This version adds a check on stream input/output
11 settings.
12
13 Signed-off-by: Paul Healy <lmiphay <AT> gmail.com>
14 Closes: https://github.com/gentoo/gentoo/pull/10792
15 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
16
17 media-sound/pasystray/Manifest | 1 +
18 media-sound/pasystray/pasystray-0.7.1.ebuild | 51 ++++++++++++++++++++++++++++
19 2 files changed, 52 insertions(+)
20
21 diff --git a/media-sound/pasystray/Manifest b/media-sound/pasystray/Manifest
22 index 0e8ecd55798..a3b0c5299e2 100644
23 --- a/media-sound/pasystray/Manifest
24 +++ b/media-sound/pasystray/Manifest
25 @@ -1,2 +1,3 @@
26 DIST pasystray-0.6.0.tar.gz 53835 BLAKE2B ef5abab45a17f6445e8cbd1e37c300aa2c1c25bee3d684d05263b02a507badb1d5ce7a1c76bed94d255e4f2d5e2f18bdfd749e83e98273a52d42ffb12a32f115 SHA512 51fdb5aab22ad10ffe73f6de68115ee1559f09f58cfe4d5201a2f262323ca3476a8b09c7fc02c4144414f44444661edd25d2d39b3de54ed4c662660867da622c
27 DIST pasystray-0.7.0.tar.gz 56014 BLAKE2B cba947895fc71a18a43c314486ec3513e844b1df426d0104f321c8ecd28199b6b4adf69f5c10146470a74c5e6f74f505833bd00c4541399a162ddcfb8aac4701 SHA512 a98dae85640c0640f921173cf5a794963e974af64a7a972bbc2a53e69060895b55494934bc1fcfd957f0c94ca90e4d52634bf444e841b2a0a57434e05500161b
28 +DIST pasystray-0.7.1.tar.gz 56041 BLAKE2B 5f7cae7a55580bf3dfe294e95bbda372c3a679bec000d222964b4027ced2462dfb4a8446d0683f8910e96ab98e1541b3fa9fafc36da530c92d2285f00a1beb65 SHA512 2af5176e6a5bf6d74baf0a0b52b731b7a3b54f787c4e89d945357aab4e186a35e0f77288d69d66743bf4e21f758e0d961cc1f9b339ce513eb4eb2bcab0d754bb
29
30 diff --git a/media-sound/pasystray/pasystray-0.7.1.ebuild b/media-sound/pasystray/pasystray-0.7.1.ebuild
31 new file mode 100644
32 index 00000000000..b1c33c69dc3
33 --- /dev/null
34 +++ b/media-sound/pasystray/pasystray-0.7.1.ebuild
35 @@ -0,0 +1,51 @@
36 +# Copyright 1999-2019 Gentoo Foundation
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=6
40 +
41 +inherit gnome2-utils autotools xdg
42 +
43 +DESCRIPTION="PulseAudio system tray"
44 +HOMEPAGE="https://github.com/christophgysin/pasystray"
45 +SRC_URI="https://github.com/christophgysin/${PN}/archive/${P}.tar.gz"
46 +
47 +LICENSE="LGPL-2.1+"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~arm ~x86"
50 +IUSE="libnotify zeroconf"
51 +
52 +RDEPEND="
53 + >=dev-libs/glib-2.48.2
54 + >=media-sound/pulseaudio-5.0-r3[glib,zeroconf?]
55 + x11-libs/gtk+:3
56 + x11-libs/libX11
57 + zeroconf? ( >=net-dns/avahi-0.6 )
58 + libnotify? ( >=x11-libs/libnotify-0.7 )
59 +"
60 +DEPEND="${RDEPEND}
61 + virtual/pkgconfig"
62 +
63 +S=${WORKDIR}/${PN}-${P}
64 +
65 +src_prepare() {
66 + default
67 + eautoreconf
68 +}
69 +
70 +src_configure() {
71 + econf \
72 + $(use_enable libnotify notify) \
73 + $(use_enable zeroconf avahi)
74 +}
75 +
76 +pkg_postinst() {
77 + xdg_desktop_database_update
78 + xdg_mimeinfo_database_update
79 + gnome2_icon_cache_update
80 +}
81 +
82 +pkg_postrm() {
83 + xdg_desktop_database_update
84 + xdg_mimeinfo_database_update
85 + gnome2_icon_cache_update
86 +}