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-notifyd/
Date: Tue, 01 Sep 2020 06:00:56
Message-Id: 1598938441.375525884014eaed8e52fd1951c37ca6dcc1d352.mgorny@gentoo
1 commit: 375525884014eaed8e52fd1951c37ca6dcc1d352
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 1 05:34:01 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 1 05:34:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37552588
7
8 xfce-extra/xfce4-notifyd: Bump to 0.6.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-extra/xfce4-notifyd/Manifest | 1 +
13 .../xfce4-notifyd/xfce4-notifyd-0.6.2.ebuild | 41 ++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/xfce-extra/xfce4-notifyd/Manifest b/xfce-extra/xfce4-notifyd/Manifest
17 index b48319ef79c..1b69d64668c 100644
18 --- a/xfce-extra/xfce4-notifyd/Manifest
19 +++ b/xfce-extra/xfce4-notifyd/Manifest
20 @@ -1 +1,2 @@
21 DIST xfce4-notifyd-0.6.1-r1.tar.bz2 539209 BLAKE2B 58dedc9091b1a2f5f58c4f095596f266056ef6ad735460617b6821192d2310024b27f08767c5fc7700a250c471cc77d3a0cd2655fda65e0d1ba489380d3e0ecb SHA512 d48752cd4e02e515e4c5d147b7bce678a56f47f0bd336e3b9db4e14fc2b0355e0582816957fc43c313a5779b5495c836ee5da4f0cb83616a0164d692a169415f
22 +DIST xfce4-notifyd-0.6.2-r1.tar.bz2 548415 BLAKE2B 8f5abdb7dd35353e551af7a436bd8dc71e082ecc1ae90302ccd35a2bae6022950160828d43722ab2033f71e83bf14fbf4ab50cfd223c7b300e4745c76a9e9eb4 SHA512 13fdbcd5031ad44a89327eb65356a4d2c45315e0c8c507e457eee4cc95898794679163de9603a2059d9aaf20d62df317f8a09e0353f6adb526970a21d580b325
23
24 diff --git a/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.6.2.ebuild b/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.6.2.ebuild
25 new file mode 100644
26 index 00000000000..6d7684102cf
27 --- /dev/null
28 +++ b/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.6.2.ebuild
29 @@ -0,0 +1,41 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit xdg-utils
36 +
37 +DESCRIPTION="Notification daemon for the Xfce desktop environment"
38 +HOMEPAGE="https://goodies.xfce.org/projects/applications/xfce4-notifyd"
39 +SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2 -> ${P}-r1.tar.bz2"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
44 +IUSE=""
45 +
46 +RDEPEND=">=dev-libs/glib-2.42:2=
47 + >=x11-libs/gtk+-3.14:3=
48 + >=x11-libs/libnotify-0.7:=
49 + >=xfce-base/libxfce4ui-4.12:=[gtk3(+)]
50 + >=xfce-base/libxfce4util-4.12:=
51 + >=xfce-base/xfce4-panel-4.12:=
52 + >=xfce-base/xfconf-4.10:="
53 +DEPEND="${RDEPEND}
54 + dev-util/gdbus-codegen
55 + dev-util/intltool
56 + sys-devel/gettext
57 + virtual/pkgconfig"
58 +
59 +src_install() {
60 + default
61 + find "${D}" -name '*.la' -delete || die
62 +}
63 +
64 +pkg_postinst() {
65 + xdg_icon_cache_update
66 +}
67 +
68 +pkg_postrm() {
69 + xdg_icon_cache_update
70 +}