commit:     9c5c13f1815ee87e1db8538959a1057eaf011896
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 25 10:52:26 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jan 25 11:05:33 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c5c13f1

xfce-extra/xfce4-systemload-plugin: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 xfce-extra/xfce4-systemload-plugin/Manifest        |  1 -
 .../files/xfce4-systemload-plugin-1.3.2-x86.patch  | 22 --------
 .../xfce4-systemload-plugin-1.3.2-r1.ebuild        | 60 ----------------------
 3 files changed, 83 deletions(-)

diff --git a/xfce-extra/xfce4-systemload-plugin/Manifest 
b/xfce-extra/xfce4-systemload-plugin/Manifest
index ce348d75ebb7..2a4949cee3ab 100644
--- a/xfce-extra/xfce4-systemload-plugin/Manifest
+++ b/xfce-extra/xfce4-systemload-plugin/Manifest
@@ -1,2 +1 @@
-DIST xfce4-systemload-plugin-1.3.2.tar.bz2 409767 BLAKE2B 
1213c007431318628f4f81026ccdbca2e5b9d34462d66354a1c37999aadc0ef9ed84246bc7f185fd633898364dc0440297dde18288f8beea1d5c7bf6663a6a04
 SHA512 
f432988f439e5fd7ada16b3e6eaa42b3351531ba3e2b63e2570387bf4d7e605ff9d5a97fde3f5f5eb323ff08aaf3c050f161a5768392b80aa99fabaabda82431
 DIST xfce4-systemload-plugin-1.3.3.tar.bz2 519937 BLAKE2B 
ec9398341b04fa40876c613ea76fd2cef26b0505bc7409d1f0d5e8965c743e708b3dc0fa82d60d8f5b1a1af499f4414eda56b1414b25d3550a5d508a4609b43d
 SHA512 
5dd74af41df01af1cf064effd33e13f26f530ffe0a043cce7b6519187393099a4da7e8c8e035c50796d1d19f09e38d2d75966e1e4fa5d1db8cb44d0e020a802c

diff --git 
a/xfce-extra/xfce4-systemload-plugin/files/xfce4-systemload-plugin-1.3.2-x86.patch
 
b/xfce-extra/xfce4-systemload-plugin/files/xfce4-systemload-plugin-1.3.2-x86.patch
deleted file mode 100644
index 027aea406823..000000000000
--- 
a/xfce-extra/xfce4-systemload-plugin/files/xfce4-systemload-plugin-1.3.2-x86.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-https://bugs.gentoo.org/905084
-https://gitlab.xfce.org/panel-plugins/xfce4-systemload-plugin/-/issues/25
-https://gitlab.xfce.org/panel-plugins/xfce4-systemload-plugin/-/commit/13a2e3ecb4b6cf6aad26c6b1d2388ef6922a5c92
-
-From 13a2e3ecb4b6cf6aad26c6b1d2388ef6922a5c92 Mon Sep 17 00:00:00 2001
-From: Akbarkhon Variskhanov <[email protected]>
-Date: Tue, 20 Dec 2022 13:50:40 +0500
-Subject: [PATCH] build: Fix failure due to wrong var type (Fixes #25)
-
---- a/panel-plugin/network.cc
-+++ b/panel-plugin/network.cc
-@@ -114,7 +114,7 @@ read_netload_proc (gulong *bytes)
- gint
- read_netload (gulong *net, gulong *NTotal)
- {
--    static guint64 bytes[2];
-+    static gulong bytes[2];
-     static gint64 time[2];
- 
-     *net = 0;
--- 
-GitLab

diff --git 
a/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-1.3.2-r1.ebuild 
b/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-1.3.2-r1.ebuild
deleted file mode 100644
index 7862905ed978..000000000000
--- a/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-1.3.2-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit xdg-utils
-
-DESCRIPTION="System load plug-in for Xfce panel"
-HOMEPAGE="
-       https://docs.xfce.org/panel-plugins/xfce4-systemload-plugin/start
-       https://gitlab.xfce.org/panel-plugins/xfce4-systemload-plugin/
-"
-SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2";
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux"
-IUSE="upower"
-
-DEPEND="
-       >=xfce-base/libxfce4ui-4.16:=[gtk3(+)]
-       >=xfce-base/libxfce4util-4.17.2:=
-       >=xfce-base/xfce4-panel-4.16:=
-       >=xfce-base/xfconf-4.14:=
-       upower? ( >=sys-power/upower-0.9.23 )
-"
-RDEPEND="
-       ${DEPEND}
-"
-BDEPEND="
-       dev-util/intltool
-       virtual/pkgconfig
-"
-
-PATCHES=(
-       "${FILESDIR}"/${P}-x86.patch
-)
-
-src_configure() {
-       local myconf=(
-               # gtop is needed only as fallback when /proc is not available
-               --disable-libgtop
-               $(use_enable upower)
-       )
-
-       econf "${myconf[@]}"
-}
-
-src_install() {
-       default
-       find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-       xdg_icon_cache_update
-}
-
-pkg_postrm() {
-       xdg_icon_cache_update
-}

Reply via email to