public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmdf/, x11-plugins/wmdf/files/
@ 2018-01-05 22:37 Mikle Kolyada
  0 siblings, 0 replies; only message in thread
From: Mikle Kolyada @ 2018-01-05 22:37 UTC (permalink / raw
  To: gentoo-commits

commit:     7febdafde0f29ac7a4f946b3bc8357de37e3ccaf
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  5 22:36:27 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Jan  5 22:37:26 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7febdafd

x11-plugins/wmdf: remove last rited package (bug #639914)

 x11-plugins/wmdf/Manifest                       |  1 -
 x11-plugins/wmdf/files/wmdf_cmd_line_args.patch | 11 -------
 x11-plugins/wmdf/files/wmdf_sys-fs.patch        | 42 -------------------------
 x11-plugins/wmdf/metadata.xml                   |  8 -----
 x11-plugins/wmdf/wmdf-0.1.6-r1.ebuild           | 36 ---------------------
 5 files changed, 98 deletions(-)

diff --git a/x11-plugins/wmdf/Manifest b/x11-plugins/wmdf/Manifest
deleted file mode 100644
index dcfc343c5c9..00000000000
--- a/x11-plugins/wmdf/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST wmdf-0.1.6.tar.gz 119388 BLAKE2B 8df35c6fb9625f6a204107e68f71aded4411856a880b599fb97b68b16f1ca86e62eca80f6350078d7f566f6669642d870c9686f57229dd171d980ebff63f4034 SHA512 5b732f035862493dbc37608389f1c9ec0d5ec32de30650ca444ecf6e847b899aaa7a3f8153d11dbd66ac5e08c24b7d946819a3b48c29b8a3b03651e8c5f8b46d

diff --git a/x11-plugins/wmdf/files/wmdf_cmd_line_args.patch b/x11-plugins/wmdf/files/wmdf_cmd_line_args.patch
deleted file mode 100644
index 5c506d47d21..00000000000
--- a/x11-plugins/wmdf/files/wmdf_cmd_line_args.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- wmdf.c	2005-07-06 10:05:19.000000000 +0200
-+++ wmdf.c.new	2005-07-06 10:06:24.000000000 +0200
-@@ -986,8 +986,6 @@
-            "  -i,  --interval <number>       number of secs between updates (1 is default)\n"
-            "  -h,  --help                    show this help text and exit\n"
-            "  -v,  --version                 show program version and exit\n"
--           "  -w,  --windowed                run the application in windowed mode\n"
--           "  -bw, --broken-wm               activate broken window manager fix\n"
-            "  -at, --alarm_threshold         set the disk usage percent to sound alarm at (95 is default)\n",
-            prog, prog);
-     /* OPTIONS SUPP :

diff --git a/x11-plugins/wmdf/files/wmdf_sys-fs.patch b/x11-plugins/wmdf/files/wmdf_sys-fs.patch
deleted file mode 100644
index eefa3f1301c..00000000000
--- a/x11-plugins/wmdf/files/wmdf_sys-fs.patch
+++ /dev/null
@@ -1,42 +0,0 @@
---- wmdf.c.orig	2005-07-06 10:03:10.000000000 +0200
-+++ wmdf.c	2005-07-06 10:05:19.000000000 +0200
-@@ -332,9 +332,10 @@
- 	FILE *fp,*fd;
- 	char mountpoint[255], dummy[255],devnme[255],fstype[255],options[255];
- 	char s[255];
--
-+	char *ref[] ={"none","proc","sysfs","usbfs","udev","devpts"};
- 	unsigned int rio = 0,wio = 0,temprio = 0,tempwio = 0;
- 	int i = 0;
-+	int j=0;
- 	int pos = 0;
- 	int x;
- 
-@@ -342,13 +343,20 @@
- 
- 	if((fp = fopen("/etc/mtab","r")) != NULL) {
- 
--	   while(!feof(fp)) {
--		   fscanf(fp,"%s %s %s %s %s %s\n",devnme,mountpoint,fstype,options,dummy,dummy);
--		   if((x = strcmp("none",devnme)) != 0) {
--			  add_disk(&cur_disk_infos,mountpoint,devnme,i);
--			   i++;
--		   }
--	   }
-+	while(!feof(fp)) {
-+		x=0;
-+		fscanf(fp,"%s %s %s %s %s %s\n",devnme,mountpoint,fstype,options,dummy,dummy);
-+		for (j=0;j<6;j++){
-+			if(strcmp(ref[j],devnme)==0) {
-+				x=1;
-+				break;
-+			}
-+		}
-+		if(x==0) {
-+			add_disk(&cur_disk_infos,mountpoint,devnme,i);
-+			i++;
-+		}
-+	}
- 	} else { 
- 		fprintf(stderr,"Error opening /etc/mtab\n");
- 		return;

diff --git a/x11-plugins/wmdf/metadata.xml b/x11-plugins/wmdf/metadata.xml
deleted file mode 100644
index 7d273a80ff6..00000000000
--- a/x11-plugins/wmdf/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="person">
-		<email>voyageur@gentoo.org</email>
-		<name>Bernard Cafarelli</name>
-	</maintainer>
-</pkgmetadata>

diff --git a/x11-plugins/wmdf/wmdf-0.1.6-r1.ebuild b/x11-plugins/wmdf/wmdf-0.1.6-r1.ebuild
deleted file mode 100644
index ac0689e0e3f..00000000000
--- a/x11-plugins/wmdf/wmdf-0.1.6-r1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils
-
-DESCRIPTION="An app to monitor disk space on partitions"
-SRC_URI="http://dockapps.windowmaker.org/download.php/id/359/${P}.tar.gz"
-HOMEPAGE="http://dockapps.windowmaker.org/file.php/id/175"
-
-RDEPEND="x11-libs/libX11
-	x11-libs/libXext
-	x11-libs/libXt
-	x11-libs/libXpm"
-DEPEND="${RDEPEND}
-	x11-proto/xextproto"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 sparc x86 ~x86-linux"
-IUSE=""
-
-src_unpack() {
-	unpack ${A}
-	cd "${S}"/src
-
-	# Remove special filesystem entries, see bug #97856
-	epatch "${FILESDIR}"/wmdf_sys-fs.patch
-
-	# Remove non-implemented command line args from 'wmdf -h' listing
-	epatch "${FILESDIR}"/wmdf_cmd_line_args.patch
-}
-
-src_install() {
-	emake DESTDIR="${D}" install || die "Install failed"
-	dodoc README AUTHORS ChangeLog NEWS THANKS TODO
-}


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2018-01-05 22:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-05 22:37 [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmdf/, x11-plugins/wmdf/files/ Mikle Kolyada

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox