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: Mon, 04 Nov 2019 07:54:54
Message-Id: 1572854083.208078cb7d0e799883da855caf96ba6d71496001.mgorny@gentoo
1 commit: 208078cb7d0e799883da855caf96ba6d71496001
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 4 07:23:59 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 4 07:54:43 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=208078cb
7
8 xfce-extra/xfce4-time-out-plugin: Bump to 1.1.0
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.0.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 b5b3c66412e..19a626ac018 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.0.3.tar.bz2 362390 BLAKE2B db7ba33a1d30dca7361d6ab6be5559786891273a36e00a028a0e27084d3fb4760af18f5cecc5c2edfd9a76640130ba4a4412d2228b26154f8b85173df360fa38 SHA512 c2080abef330e9f783b3e9c008a76d11bdbdfe1a666435237b6b06a50e93191a760441a9d343f24234eb4343b550009ed9e2101dbffbec3d8f53c562d4bb3cfc
22 +DIST xfce4-time-out-plugin-1.1.0.tar.bz2 395843 BLAKE2B cd5c49cc6bb31003803cc47b099847dc6d88bed9e36a7372b8d76b25a75bf28079afceda14ee235c724273cde2519fadb701bfd45995b10ea93b3d6b05cb359b SHA512 03d27d98a3968daf93357556a5ca63641ceee3ce9f53db5287ce27a282d3f4a068a2c9be14d7690d4188901245521c03b68bb3fe39e1ed0e1f6a95eecc1dc846
23
24 diff --git a/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.1.0.ebuild b/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.1.0.ebuild
25 new file mode 100644
26 index 00000000000..ffc66edafa2
27 --- /dev/null
28 +++ b/xfce-extra/xfce4-time-out-plugin/xfce4-time-out-plugin-1.1.0.ebuild
29 @@ -0,0 +1,35 @@
30 +# Copyright 1999-2019 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 +}