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: Fri, 17 Mar 2023 10:58:01
Message-Id: 1679050672.0f72f5289f53c73f61663a1d1eab293a55498a1e.mgorny@gentoo
1 commit: 0f72f5289f53c73f61663a1d1eab293a55498a1e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 17 10:52:56 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 17 10:57:52 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f72f528
7
8 xfce-extra/xfce4-systemload-plugin: Remove old
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.3.1.ebuild | 47 ----------------------
14 2 files changed, 48 deletions(-)
15
16 diff --git a/xfce-extra/xfce4-systemload-plugin/Manifest b/xfce-extra/xfce4-systemload-plugin/Manifest
17 index 8320be82647d..3a9e5f22f747 100644
18 --- a/xfce-extra/xfce4-systemload-plugin/Manifest
19 +++ b/xfce-extra/xfce4-systemload-plugin/Manifest
20 @@ -1,2 +1 @@
21 -DIST xfce4-systemload-plugin-1.3.1.tar.bz2 417959 BLAKE2B c9255349cb4f20a8d8165fbf5a124dbffcb4ca3633c32ca7b2cbbebc4770a50a24909158cd3fcaad9f8bab4b756b98b5329b60a1fbbd0ac0be13251bb950d542 SHA512 2b2285c5960a5728dd7818f90605848e462fe5fef8643ff5be64b7087225399395ace5ec8013f6795d410b0acf79ec77c14e2ed0e56007cfe6f13133ba708876
22 DIST xfce4-systemload-plugin-1.3.2.tar.bz2 409767 BLAKE2B 1213c007431318628f4f81026ccdbca2e5b9d34462d66354a1c37999aadc0ef9ed84246bc7f185fd633898364dc0440297dde18288f8beea1d5c7bf6663a6a04 SHA512 f432988f439e5fd7ada16b3e6eaa42b3351531ba3e2b63e2570387bf4d7e605ff9d5a97fde3f5f5eb323ff08aaf3c050f161a5768392b80aa99fabaabda82431
23
24 diff --git a/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-1.3.1.ebuild b/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-1.3.1.ebuild
25 deleted file mode 100644
26 index 68065ccd4f29..000000000000
27 --- a/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-1.3.1.ebuild
28 +++ /dev/null
29 @@ -1,47 +0,0 @@
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="System load plug-in for Xfce panel"
38 -HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-systemload-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 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux"
44 -IUSE="upower"
45 -
46 -RDEPEND=">=xfce-base/libxfce4ui-4.12:=[gtk3(+)]
47 - >=xfce-base/xfce4-panel-4.12:=
48 - >=xfce-base/xfconf-4.14:=
49 - upower? ( >=sys-power/upower-0.9.23 )"
50 -DEPEND=${RDEPEND}
51 -BDEPEND="
52 - dev-util/intltool
53 - virtual/pkgconfig"
54 -
55 -src_configure() {
56 - local myconf=(
57 - # gtop is needed only as fallback when /proc is not available
58 - --disable-libgtop
59 - $(use_enable upower)
60 - )
61 -
62 - econf "${myconf[@]}"
63 -}
64 -
65 -src_install() {
66 - default
67 - find "${D}" -name '*.la' -delete || die
68 -}
69 -
70 -pkg_postinst() {
71 - xdg_icon_cache_update
72 -}
73 -
74 -pkg_postrm() {
75 - xdg_icon_cache_update
76 -}