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: Fri, 02 Sep 2022 10:52:48
Message-Id: 1662115962.203070baa7d1fb5c1da5af3909d8f891e4852019.mgorny@gentoo
1 commit: 203070baa7d1fb5c1da5af3909d8f891e4852019
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 2 10:51:32 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 2 10:52:42 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=203070ba
7
8 xfce-extra/xfce4-notifyd: Bump to 0.6.4
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.4.ebuild | 46 ++++++++++++++++++++++
14 2 files changed, 47 insertions(+)
15
16 diff --git a/xfce-extra/xfce4-notifyd/Manifest b/xfce-extra/xfce4-notifyd/Manifest
17 index 7dbf6e86c40e..4903be85b82b 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.3.tar.bz2 547511 BLAKE2B 73aba96f6bd2116e87e20928ca74ff985ee74b8f39bca96de81e59ee5677bfacf9a2c78caa42ba43ece7e754fd7a8006ec1d3a507d89e4a2d6b4011d53e21d80 SHA512 9113018c238878c2584cb4221dd5aaaab9d8af5a86fb738f8f9deb863147343c0527582d8e45619bec3b7aaf3bbe045e41a33e306eacc20f946c971a8164935a
22 +DIST xfce4-notifyd-0.6.4.tar.bz2 554776 BLAKE2B f594ee8a841e4074592a6377e79fde8dd89574620a433a9813f4ad106d712361e941b443de481cb9d140a47e7b1b4753116b4f949c39b6834926f0708877fb6e SHA512 644e2e49092892e386a9f82edc6ab3b2b59ba67617d9217fb43dd3cf74ae5cfc9b9bea6ed0fab4c4440eca68613aa996d9f8dc73deb1f60926217b7db18cc73b
23
24 diff --git a/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.6.4.ebuild b/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.6.4.ebuild
25 new file mode 100644
26 index 000000000000..8273e159ed4c
27 --- /dev/null
28 +++ b/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.6.4.ebuild
29 @@ -0,0 +1,46 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
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"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
44 +
45 +DEPEND="
46 + >=dev-libs/glib-2.56: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 +"
54 +RDEPEND="
55 + ${DEPEND}
56 +"
57 +BDEPEND="
58 + dev-util/gdbus-codegen
59 + dev-util/intltool
60 + sys-devel/gettext
61 + virtual/pkgconfig
62 +"
63 +
64 +src_install() {
65 + default
66 + find "${D}" -name '*.la' -delete || die
67 +}
68 +
69 +pkg_postinst() {
70 + xdg_icon_cache_update
71 +}
72 +
73 +pkg_postrm() {
74 + xdg_icon_cache_update
75 +}