Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmsysmon/
Date: Fri, 05 Jan 2018 23:34:39
Message-Id: 1515195254.397408cace8b1c17e669506d3cfff4d5c1eb7aa9.zlogene@gentoo
1 commit: 397408cace8b1c17e669506d3cfff4d5c1eb7aa9
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 5 23:34:14 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 5 23:34:14 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=397408ca
7
8 x11-plugins/wmsysmon: Drop old (bug #639914)
9
10 Package-Manager: Portage-2.3.13, Repoman-2.3.3
11
12 x11-plugins/wmsysmon/Manifest | 2 --
13 x11-plugins/wmsysmon/metadata.xml | 4 ---
14 x11-plugins/wmsysmon/wmsysmon-0.7.7.ebuild | 49 ------------------------------
15 3 files changed, 55 deletions(-)
16
17 diff --git a/x11-plugins/wmsysmon/Manifest b/x11-plugins/wmsysmon/Manifest
18 index 1ed41e87101..12e312cd5b7 100644
19 --- a/x11-plugins/wmsysmon/Manifest
20 +++ b/x11-plugins/wmsysmon/Manifest
21 @@ -1,3 +1 @@
22 -DIST wmsysmon-0.7.7-s4t4n.patch.bz2 8547 BLAKE2B 7c68524981336630b70a16e4e2935790dc246e40c7c16cedf2487e5145cebec797569042b5234b334988cec836878625ce631de4ff9cb8588e921a7d20c5d904 SHA512 fbf43af697313c1f2c8c5d373b636b92b87140979c47037c214b2af8e0e94faa1df610e9fb94e677bfd6de94320e1e161ac1b1afbfb665fd7e86849ee93d8e1e
23 -DIST wmsysmon-0.7.7.tar.gz 20866 BLAKE2B ddccccf05a5d54214336f58fe3c4cf8631da11098a2a8a42677b51e20414fbeb9dd4a8ec02c92cd8933635973470d56c2837b6ab41bb07348f39946f8b94dcfa SHA512 6f472d132c7b5263c4b62e0972653ceee59743c4e292c0bdd95194e84373f4e7888311b40083691ab5b736c0ba292672d8eb306a220e95d356dd95b6b8519c0c
24 DIST wmsysmon-0.7.8.tar.gz 23533 BLAKE2B 830edc78222e8997c6ee23bdd9fcb28729e9b80d92b07f70a53d841065b7377f5c450024c511b4faa92043bd45aa0cc92e89ff900d7d4a53d3c9f4b57b4e6e7e SHA512 b1afd176851e8f89896e39b55d24d6efeb97eb5fdbb9c181cb030320445f1d8b22d31073edc615e6b47b91fd133b381f00b612901c8b312e7da404a4746bb97c
25
26 diff --git a/x11-plugins/wmsysmon/metadata.xml b/x11-plugins/wmsysmon/metadata.xml
27 index efaca79dc2c..51b9fadadcf 100644
28 --- a/x11-plugins/wmsysmon/metadata.xml
29 +++ b/x11-plugins/wmsysmon/metadata.xml
30 @@ -5,10 +5,6 @@
31 <email>voyageur@g.o</email>
32 <name>Bernard Cafarelli</name>
33 </maintainer>
34 -<use>
35 - <flag name="high-ints">Enable support for monitoring 24 interrupts. Useful
36 - on SMP machines</flag>
37 -</use>
38 <upstream>
39 <remote-id type="github">voyageur/wmsysmon</remote-id>
40 </upstream>
41
42 diff --git a/x11-plugins/wmsysmon/wmsysmon-0.7.7.ebuild b/x11-plugins/wmsysmon/wmsysmon-0.7.7.ebuild
43 deleted file mode 100644
44 index 8da4a8b908e..00000000000
45 --- a/x11-plugins/wmsysmon/wmsysmon-0.7.7.ebuild
46 +++ /dev/null
47 @@ -1,49 +0,0 @@
48 -# Copyright 1999-2014 Gentoo Foundation
49 -# Distributed under the terms of the GNU General Public License v2
50 -
51 -inherit eutils
52 -
53 -IUSE="high-ints"
54 -DESCRIPTION="a dockapp to monitor: CPU, Memory, Uptime, IRQs, Paging and Swap activity"
55 -SRC_URI="http://www.gnugeneration.com/software/wmsysmon/src/${P}.tar.gz
56 - mirror://gentoo/${P}-s4t4n.patch.bz2"
57 -HOMEPAGE="http://www.gnugeneration.com/software/wmsysmon/"
58 -SLOT="0"
59 -LICENSE="GPL-2"
60 -KEYWORDS="alpha amd64 ppc ppc64 sparc x86"
61 -
62 -RDEPEND="x11-libs/libX11
63 - x11-libs/libXext
64 - x11-libs/libXpm"
65 -DEPEND="${RDEPEND}
66 - x11-proto/xextproto
67 - >=sys-apps/sed-4.1.5-r1"
68 -
69 -src_unpack()
70 -{
71 - unpack ${A}
72 - cd "${S}"
73 -
74 - # bug 48851
75 - epatch "${WORKDIR}"/${P}-s4t4n.patch
76 -
77 - # Monitor all the 24 interrupts on alpha and x86 SMP machines
78 - if use alpha || use high-ints; then
79 - cd src
80 - epatch "${FILESDIR}"/${PN}-high-ints.patch
81 - fi
82 -
83 - # Do no strip binaries during compilation, see bug #252113
84 - sed -i 's/LDFLAGS += -lXpm -lXext -lX11 -lm -s/LDFLAGS += -lXpm -lXext -lX11 -lm/' "src/Makefile"
85 -}
86 -
87 -src_compile()
88 -{
89 - GENTOO_CFLAGS="${CFLAGS}" make -C src
90 -}
91 -
92 -src_install ()
93 -{
94 - dobin src/wmsysmon
95 - dodoc ChangeLog README
96 -}