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-time-out-plugin/
Date: Sun, 28 Feb 2021 22:10:51
Message-Id: 1614550244.192df901c43bc541322b48283b76fa36f4909d4b.mgorny@gentoo
1 commit: 192df901c43bc541322b48283b76fa36f4909d4b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 28 22:09:49 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 28 22:10:44 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=192df901
7
8 xfce-extra/xfce4-time-out-plugin: Bump to 1.1.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-extra/xfce4-time-out-plugin/Manifest | 1 +
13 .../xfce4-time-out-plugin-1.1.2.ebuild | 35 ++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/xfce-extra/xfce4-time-out-plugin/Manifest b/xfce-extra/xfce4-time-out-plugin/Manifest
17 index f0cabf32412..ef8374f81b6 100644
18 --- a/xfce-extra/xfce4-time-out-plugin/Manifest
19 +++ b/xfce-extra/xfce4-time-out-plugin/Manifest
20 @@ -1 +1,2 @@
21 DIST xfce4-time-out-plugin-1.1.1.tar.bz2 405970 BLAKE2B 0e0d94bdb80e3cd8aa3304489d8122f9e0161db57c77c80893f97bc2dc2d578d89e190c56891abcebd95cd7cf9d58e2ba768540af8817b861dded381c6550a74 SHA512 463d210eb6cfaa79c3470b44e7fb42ab44ce8fec0e403d8c71344a5bbc68af29e0da0fe759471ed873637114adf947699ecbaea1129f36e2dd6dc56db0c2ca87
22 +DIST xfce4-time-out-plugin-1.1.2.tar.bz2 409221 BLAKE2B 75a6f646badb936a803d8e6a8c9c25c85fa76f96fa82bae742724d3b52a68c49f81f58600a91de6ceb0f85220aa2d6b3a3ae2525a38e4f8a5fd78d4fbc6f0dfc SHA512 08e50db9daafd9a2ba60e9d5767cddba83df34d8a261df71b7bb9ae632576f4dfd6252c2a83ec8f9a037284b0adc65751ba36d54ea9d14b85906fdc85d5b86ff
23
24 diff --git a/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.1.2.ebuild b/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.1.2.ebuild
25 new file mode 100644
26 index 00000000000..c98032bc3cc
27 --- /dev/null
28 +++ b/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.1.2.ebuild
29 @@ -0,0 +1,35 @@
30 +# Copyright 1999-2021 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="A panel plug-in to take periodical breaks from the computer"
38 +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-time-out-plugin"
39 +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
40 +
41 +LICENSE="GPL-2+"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
44 +IUSE=""
45 +
46 +RDEPEND="x11-libs/libX11
47 + >=xfce-base/libxfce4ui-4.12:=
48 + >=xfce-base/xfce4-panel-4.12:="
49 +DEPEND="${RDEPEND}
50 + dev-util/intltool
51 + virtual/pkgconfig"
52 +
53 +src_install() {
54 + default
55 + find "${D}" -name '*.la' -delete || die
56 +}
57 +
58 +pkg_postinst() {
59 + xdg_icon_cache_update
60 +}
61 +
62 +pkg_postrm() {
63 + xdg_icon_cache_update
64 +}