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-systemload-plugin/
Date: Tue, 13 Aug 2019 12:11:02
Message-Id: 1565698244.0b072a0a18cc1c3d61a843a38cc98f5015217638.mgorny@gentoo
1 commit: 0b072a0a18cc1c3d61a843a38cc98f5015217638
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 13 11:24:38 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 13 12:10:44 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b072a0a
7
8 xfce-extra/xfce4-systemload-plugin: Bump to 1.2.3
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-extra/xfce4-systemload-plugin/Manifest | 1 +
13 .../xfce4-systemload-plugin-1.2.3.ebuild | 29 ++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/xfce-extra/xfce4-systemload-plugin/Manifest b/xfce-extra/xfce4-systemload-plugin/Manifest
17 index 71d63ca1df1..58cc6306e59 100644
18 --- a/xfce-extra/xfce4-systemload-plugin/Manifest
19 +++ b/xfce-extra/xfce4-systemload-plugin/Manifest
20 @@ -1 +1,2 @@
21 DIST xfce4-systemload-plugin-1.2.2.tar.bz2 344197 BLAKE2B c83a55c3262f313c432947dbc240953e54a719bab6ba3714014624addab9b54b5172963792afab4d53c44d30590d9fef6f8b9712eddd7e57906cbe8e9dec35a8 SHA512 92930431383c128e449545b15a6d50aa6e236685619cc1abf0b60979f8a25010eb82ac4428f3e0e7eaac1468c3b101d6a0ef5d39e556346e74f4dddfffaa446b
22 +DIST xfce4-systemload-plugin-1.2.3.tar.bz2 349074 BLAKE2B 74cdc8f759824222faf5da04fd3189210883db1ad1ed138978e8cb31075a390d17f32ffa4648cace7745faadfc818878601c70b89a8da9d7e7961768a3f9caac SHA512 98985b2250bfff3ae8314f5671ec4438f4c53702cf9e1b76563cdc5d1b4b62174d6cfa559603294c1fc8fbbd5e15a833cc112c75b106a85b1e11788ded4da538
23
24 diff --git a/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-1.2.3.ebuild b/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-1.2.3.ebuild
25 new file mode 100644
26 index 00000000000..b3017c6bba0
27 --- /dev/null
28 +++ b/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-1.2.3.ebuild
29 @@ -0,0 +1,29 @@
30 +# Copyright 1999-2019 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +DESCRIPTION="System load plug-in for Xfce panel"
36 +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-systemload-plugin"
37 +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
38 +
39 +LICENSE="BSD-2"
40 +SLOT="0"
41 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
42 +IUSE="upower"
43 +
44 +RDEPEND=">=xfce-base/libxfce4ui-4.12:=[gtk3(+)]
45 + >=xfce-base/xfce4-panel-4.12:=
46 + upower? ( >=sys-power/upower-0.9.23 )"
47 +DEPEND="${RDEPEND}
48 + dev-util/intltool
49 + virtual/pkgconfig"
50 +
51 +src_configure() {
52 + econf $(use_enable upower)
53 +}
54 +
55 +src_install() {
56 + default
57 + find "${D}" -name '*.la' -delete || die
58 +}