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-cpugraph-plugin/
Date: Sun, 23 Jun 2019 03:39:28
Message-Id: 1561261154.8e66bffdb4365c5ef15d8d335f15b0bd6b5bd8de.mgorny@gentoo
1 commit: 8e66bffdb4365c5ef15d8d335f15b0bd6b5bd8de
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 23 03:35:40 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 23 03:39:14 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e66bffd
7
8 xfce-extra/xfce4-cpugraph-plugin: Bump to 1.0.91
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-extra/xfce4-cpugraph-plugin/Manifest | 1 +
13 .../xfce4-cpugraph-plugin-1.0.91.ebuild | 35 ++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/xfce-extra/xfce4-cpugraph-plugin/Manifest b/xfce-extra/xfce4-cpugraph-plugin/Manifest
17 index 99230cd3b0d..1784b4ef0dc 100644
18 --- a/xfce-extra/xfce4-cpugraph-plugin/Manifest
19 +++ b/xfce-extra/xfce4-cpugraph-plugin/Manifest
20 @@ -1,2 +1,3 @@
21 DIST xfce4-cpugraph-plugin-1.0.5.tar.bz2 328972 BLAKE2B 7c39aa6fd9d0d6ecc5bedce1d99d330765c329d1fa673b61282fdea654ebd997caa118f57dd0776008584eaa2dbe0a6ae7df532ed3b941b03b111f5ae753d2e8 SHA512 3d1246958dd30638104f14a8b0078e25c05b67b42da953a97cb51d2b04e70d3f1da9d42ca4f4575b7114bce5abc4cb94d598737631536c0575b55d9a391e210a
22 DIST xfce4-cpugraph-plugin-1.0.90.tar.bz2 386127 BLAKE2B ec1809f64fa2fc142aa6efec315e2c138b7b49261ecce4735cc0dce225c24c69013f4b2a4250dcdf1513029765d81cb757e0bb38ebb3bd024b5b07fe2e0475d0 SHA512 7f2be5b41948ba4c730e6fd58038e96044ef8d007ae55f107a434308bfffc99071706c92854e41a589a807913fb98b9b216c141fc1d37c744275d5a3944aee09
23 +DIST xfce4-cpugraph-plugin-1.0.91.tar.bz2 377694 BLAKE2B da75c1295dc190923e1a16c2627fcb36517b00ded3a358c198152705ac220720b97db36a9e6b43c1efee11cbd95249acec38a0aa8985ce6b7d1e3c35a6d93d26 SHA512 513fdec6ed9c00b1f979c3ca9223667d7b50ccb55e9be9506497eade4d4495547e60e53507bf114aabd23af911a477f997c6f7c2944c1761125a12227c67ccf5
24
25 diff --git a/xfce-extra/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin-1.0.91.ebuild b/xfce-extra/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin-1.0.91.ebuild
26 new file mode 100644
27 index 00000000000..684e97eec64
28 --- /dev/null
29 +++ b/xfce-extra/xfce4-cpugraph-plugin/xfce4-cpugraph-plugin-1.0.91.ebuild
30 @@ -0,0 +1,35 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit xdg-utils
37 +
38 +DESCRIPTION="A system load plug-in for the Xfce panel"
39 +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-cpugraph-plugin"
40 +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
41 +
42 +LICENSE="BSD-2 GPL-2+"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
45 +
46 +RDEPEND=">=x11-libs/gtk+-3.22:3
47 + >=xfce-base/libxfce4ui-4.12:=
48 + >=xfce-base/xfce4-panel-4.12:="
49 +DEPEND="${RDEPEND}
50 + dev-util/intltool
51 + sys-devel/gettext
52 + virtual/pkgconfig"
53 +
54 +src_install() {
55 + default
56 + find "${ED}" -name '*.la' -delete || die
57 +}
58 +
59 +pkg_postinst() {
60 + xdg_icon_cache_update
61 +}
62 +
63 +pkg_postrm() {
64 + xdg_icon_cache_update
65 +}