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-diskperf-plugin/
Date: Sat, 05 Mar 2022 08:44:19
Message-Id: 1646469851.76496eab1951b7d01402033d85907b6bd533e73b.mgorny@gentoo
1 commit: 76496eab1951b7d01402033d85907b6bd533e73b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 5 08:20:08 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 5 08:44:11 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76496eab
7
8 xfce-extra/xfce4-diskperf-plugin: Bump to 2.7.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-extra/xfce4-diskperf-plugin/Manifest | 1 +
13 .../xfce4-diskperf-plugin-2.7.0.ebuild | 40 ++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/xfce-extra/xfce4-diskperf-plugin/Manifest b/xfce-extra/xfce4-diskperf-plugin/Manifest
17 index b246c12bd141..bb6632a87c7d 100644
18 --- a/xfce-extra/xfce4-diskperf-plugin/Manifest
19 +++ b/xfce-extra/xfce4-diskperf-plugin/Manifest
20 @@ -1 +1,2 @@
21 DIST xfce4-diskperf-plugin-2.6.3.tar.bz2 384330 BLAKE2B c7e9d885f42d7f007570c54bd26c7b85aac1054cdb9a0ca0119267b89387ab731807090bea49f7be05b6bae314efd2a87845c4005cd7cf31aa41f1b2b5ee4519 SHA512 fb7ffeaca14f67bb8a2423529f7040d3e51a0184a552f4636acfb4aec914da5fef95db2c710cad8cb1a3b96ef9abc308ad072b03f6e2ccc49793c0edb73dc116
22 +DIST xfce4-diskperf-plugin-2.7.0.tar.bz2 342471 BLAKE2B c70d3468d1274632414064ae7709717c3e75fe4b9583007b85b66f711d86ff85cbe6819d9b6f606da3994deea190f4f2b4a932e48245a636a2706ee7caededb3 SHA512 8d9dde5534ff2ff99955e7d19b9fd1a0ca6e481f978462578c246c30febc9c2d16c97362014c05b53bd2e895199dbfaa2bdee459b84de3df94f86791d9b07b4f
23
24 diff --git a/xfce-extra/xfce4-diskperf-plugin/xfce4-diskperf-plugin-2.7.0.ebuild b/xfce-extra/xfce4-diskperf-plugin/xfce4-diskperf-plugin-2.7.0.ebuild
25 new file mode 100644
26 index 000000000000..569b0326b740
27 --- /dev/null
28 +++ b/xfce-extra/xfce4-diskperf-plugin/xfce4-diskperf-plugin-2.7.0.ebuild
29 @@ -0,0 +1,40 @@
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="A panel plug-in for disk usage and performance statistics"
38 +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-diskperf-plugin"
39 +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
40 +
41 +LICENSE="BSD-2"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
44 +
45 +RDEPEND="
46 + >=x11-libs/gtk+-3.16.0:3
47 + >=xfce-base/libxfce4ui-4.14:=[gtk3(+)]
48 + >=xfce-base/libxfce4util-4.14:=[gtk3(+)]
49 + >=xfce-base/xfce4-panel-4.14:=
50 +"
51 +DEPEND="${RDEPEND}"
52 +BDEPEND="
53 + dev-util/intltool
54 + sys-devel/gettext
55 + virtual/pkgconfig
56 +"
57 +
58 +src_install() {
59 + default
60 + find "${D}" -name '*.la' -delete || die
61 +}
62 +
63 +pkg_postinst() {
64 + xdg_icon_cache_update
65 +}
66 +
67 +pkg_postrm() {
68 + xdg_icon_cache_update
69 +}