Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-statusnotifier-plugin/
Date: Thu, 02 Nov 2017 12:29:12
Message-Id: 1509625725.f71b6ed312f653ce800362f46a57a2706a6a5ee9.mgorny@gentoo
1 commit: f71b6ed312f653ce800362f46a57a2706a6a5ee9
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 2 11:39:22 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 2 12:28:45 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f71b6ed3
7
8 xfce-extra/xfce4-statusnotifier-plugin: Bump to 0.2.1
9
10 xfce-extra/xfce4-statusnotifier-plugin/Manifest | 1 +
11 .../xfce4-statusnotifier-plugin-0.2.1.ebuild | 40 ++++++++++++++++++++++
12 2 files changed, 41 insertions(+)
13
14 diff --git a/xfce-extra/xfce4-statusnotifier-plugin/Manifest b/xfce-extra/xfce4-statusnotifier-plugin/Manifest
15 index 331af8d6825..6e024c20667 100644
16 --- a/xfce-extra/xfce4-statusnotifier-plugin/Manifest
17 +++ b/xfce-extra/xfce4-statusnotifier-plugin/Manifest
18 @@ -1,2 +1,3 @@
19 DIST xfce4-statusnotifier-plugin-0.1.0.tar.bz2 361454 SHA256 22ad14101df914e79d4dbd8e5d96382b1d3f52e326d2acd7760bfbf9795ea6d5 SHA512 23c84700bd538115237c525f416ea545b10b6ea4e674c3e136ccf8f7a48370b978e99dac6c69ed694c3dd495027825bc9e74504e0222c6a3923f52e4b9d4f097 WHIRLPOOL fdb205e8a38692ac4ee37e54342704bcdff7c8d01a918553ecf1d1ab67ff37d1cee04e72b415b4747d3d29aa284babfe558b0f947bf8cef87aac92e9aeb354fa
20 DIST xfce4-statusnotifier-plugin-0.2.0.tar.bz2 379900 SHA256 65c8af58f24a44fbd2e9186c57295641be3ed2a816dc86405fb7380ec69360c1 SHA512 5e19e29bffc92be0e501c59b35376a59fb2946e270d3db67e620c7c5efdf455cebc235d0e87a518abed15d42be236eb7f7c14013f073956d71aa7b575f2f9374 WHIRLPOOL d6d39de619498dad60d79d4ae902f2ecc63d3e09d1ab3e65bad7501e607307e3c0b21cb2b0e7b74beefad8c7c1872e6864cbb250d127b014a677cab5c65b9227
21 +DIST xfce4-statusnotifier-plugin-0.2.1.tar.bz2 384119 SHA256 524314c05cf19e59c3b1ab928ef025b7bba62b228cf4bdc18072d17a13068b94 SHA512 508614543716a64f2fd45909c4a2acfbd4f41f9e494a48b97dd51a83171eec44811a8a2925d39ba8a5b5dba1f9faedddade0e5b7bf2ae08f494954637cf2209f WHIRLPOOL d8e005aef1bf66b1b3ba83b42b5cca4929c2828ac17eba816bbc19dfa6c8dbc5546a954ffa5af14e34005a9f4f4c3f332be678f8ec4c4ffe790518274b9dac33
22
23 diff --git a/xfce-extra/xfce4-statusnotifier-plugin/xfce4-statusnotifier-plugin-0.2.1.ebuild b/xfce-extra/xfce4-statusnotifier-plugin/xfce4-statusnotifier-plugin-0.2.1.ebuild
24 new file mode 100644
25 index 00000000000..01a0cd1f11a
26 --- /dev/null
27 +++ b/xfce-extra/xfce4-statusnotifier-plugin/xfce4-statusnotifier-plugin-0.2.1.ebuild
28 @@ -0,0 +1,40 @@
29 +# Copyright 1999-2017 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +
32 +EAPI=6
33 +
34 +inherit gnome2-utils
35 +
36 +DESCRIPTION="A panel area for fd.o Status Notifiers (systray replacement)"
37 +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-statusnotifier-plugin"
38 +SRC_URI="mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
39 +
40 +LICENSE="GPL-2"
41 +SLOT="0"
42 +KEYWORDS="~amd64"
43 +IUSE=""
44 +
45 +RDEPEND="
46 + >=dev-libs/glib-2.24:=
47 + >=dev-libs/libdbusmenu-16.04.0:=[gtk3]
48 + >=x11-libs/gtk+-3.18:3=
49 + x11-libs/libX11:=
50 + >=xfce-base/libxfce4ui-4.12:=
51 + >=xfce-base/libxfce4util-4.12:=
52 + >=xfce-base/xfce4-panel-4.12:=
53 + >=xfce-base/xfconf-4.12:="
54 +DEPEND="${RDEPEND}
55 + dev-util/gdbus-codegen"
56 +
57 +src_install() {
58 + default
59 + find "${D}" -name '*.la' -delete || die
60 +}
61 +
62 +pkg_postinst() {
63 + gnome2_icon_cache_update
64 +}
65 +
66 +pkg_postrm() {
67 + gnome2_icon_cache_update
68 +}