commit:     c8cf58ece9bfb785238f7e1d49dc3e2de6712985
Author:     Paul Healy <lmiphay <AT> gmail <DOT> com>
AuthorDate: Mon Oct  1 18:53:37 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Oct  4 19:11:51 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8cf58ec

media-sound/pasystray: version bump to 0.7.0

This update includes:

more configurability for notifications
bug fixes, segfault
memory leak fixed

Signed-off-by: Paul Healy <lmiphay <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/10037
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-sound/pasystray/Manifest               |  1 +
 media-sound/pasystray/pasystray-0.7.0.ebuild | 53 ++++++++++++++++++++++++++++
 2 files changed, 54 insertions(+)

diff --git a/media-sound/pasystray/Manifest b/media-sound/pasystray/Manifest
index 7bf1e9caf42..415bc5e8e13 100644
--- a/media-sound/pasystray/Manifest
+++ b/media-sound/pasystray/Manifest
@@ -1,2 +1,3 @@
 DIST pasystray-0.2.1.tar.bz2 100456 BLAKE2B 
8cf7aa97a20062dffac59969a7b8d1d71e6fdaafd4e944b2ed3444f50fc1a70ab07f1c3e9c349115c8e50d1bf11093649ee41300590934bc4f71fd752b5aa1c2
 SHA512 
db7c05c2eb5fd3dada2e3c23f28978497d17a2147078390ab3e8c88654c4bd8ce48d07a15e9a5b3834acffcc2d86fa719ce2403255915bdfb2eb610bd0549041
 DIST pasystray-0.6.0.tar.gz 53835 BLAKE2B 
ef5abab45a17f6445e8cbd1e37c300aa2c1c25bee3d684d05263b02a507badb1d5ce7a1c76bed94d255e4f2d5e2f18bdfd749e83e98273a52d42ffb12a32f115
 SHA512 
51fdb5aab22ad10ffe73f6de68115ee1559f09f58cfe4d5201a2f262323ca3476a8b09c7fc02c4144414f44444661edd25d2d39b3de54ed4c662660867da622c
+DIST pasystray-0.7.0.tar.gz 56014 BLAKE2B 
cba947895fc71a18a43c314486ec3513e844b1df426d0104f321c8ecd28199b6b4adf69f5c10146470a74c5e6f74f505833bd00c4541399a162ddcfb8aac4701
 SHA512 
a98dae85640c0640f921173cf5a794963e974af64a7a972bbc2a53e69060895b55494934bc1fcfd957f0c94ca90e4d52634bf444e841b2a0a57434e05500161b

diff --git a/media-sound/pasystray/pasystray-0.7.0.ebuild 
b/media-sound/pasystray/pasystray-0.7.0.ebuild
new file mode 100644
index 00000000000..6da7af40f6a
--- /dev/null
+++ b/media-sound/pasystray/pasystray-0.7.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit gnome2-utils autotools vcs-snapshot xdg
+
+DESCRIPTION="PulseAudio system tray"
+HOMEPAGE="https://github.com/christophgysin/pasystray";
+SRC_URI="https://github.com/christophgysin/${PN}/archive/${P}.tar.gz";
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="libnotify zeroconf"
+
+RDEPEND="
+       >=dev-libs/glib-2.48.2
+       >=media-sound/pulseaudio-5.0-r3[glib,zeroconf?]
+       zeroconf? ( >=net-dns/avahi-0.6 )
+       x11-libs/gtk+:3
+       x11-libs/libX11
+       libnotify? ( >=x11-libs/libnotify-0.7 )
+"
+DEPEND="${RDEPEND}
+       virtual/pkgconfig"
+
+src_prepare() {
+       default
+       eautoreconf
+}
+
+src_configure() {
+       econf \
+               $(use_enable libnotify notify) \
+               $(use_enable zeroconf avahi)
+}
+
+pkg_preinst() {
+       xdg_pkg_preinst
+       gnome2_icon_savelist
+}
+
+pkg_postinst() {
+       xdg_desktop_database_update
+       xdg_mimeinfo_database_update
+       gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+       xdg_desktop_database_update
+       xdg_mimeinfo_database_update
+       gnome2_icon_cache_update
+}

Reply via email to