public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Orphaned Packages Process <packaging-reports@fedoraproject.org>
To: git-commits@fedoraproject.org
Subject: [rpms/rwho] rawhide: Orphaned for 6+ weeks
Date: Fri, 19 Jun 2026 20:34:24 GMT	[thread overview]
Message-ID: <178190126452.1.5318351471340671420.rpms-rwho-45637289ca7c@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/rwho
Branch : rawhide
Commit : 45637289ca7c8a5f763949b20bbe7244dd81987f
Author : Orphaned Packages Process <packaging-reports@fedoraproject.org>
Date   : 2026-06-19T15:34:18-05:00
Stats  : +1/-1025 in 19 file(s)
URL    : https://src.fedoraproject.org/rpms/rwho/c/45637289ca7c8a5f763949b20bbe7244dd81987f?branch=rawhide

Log:
Orphaned for 6+ weeks

---
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index ea5f741..0000000
--- a/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-netkit-rwho-0.17.tar.gz

diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..5204a84
--- /dev/null
+++ b/dead.package
@@ -0,0 +1 @@
+Orphaned for 6+ weeks

diff --git a/rwho-0.15-alpha.patch b/rwho-0.15-alpha.patch
deleted file mode 100644
index 2a0efc3..0000000
--- a/rwho-0.15-alpha.patch
+++ /dev/null
@@ -1,133 +0,0 @@
---- netkit-rwho-0.15/ruptime/ruptime.c.alpha	Sun Aug  1 16:44:17 1999
-+++ netkit-rwho-0.15/ruptime/ruptime.c	Thu Aug 26 16:06:43 1999
-@@ -91,7 +91,7 @@
- 	struct dirent *dp;
- 	int aflg, cc, ch, f, maxloadav;
- 	unsigned i;
--	char buf[sizeof(struct whod)];
-+	struct whod buf;
- 	int (*cmp)(const void *, const void *) = hscmp;
- 	time_t correction;
- 
-@@ -134,7 +134,7 @@
- 			    dp->d_name, strerror(errno));
- 			continue;
- 		}
--		cc = read(f, buf, sizeof(struct whod));
-+		cc = read(f, &buf, sizeof(buf));
- 		(void)close(f);
- 		if (cc < WHDRSIZE)
- 			continue;
-@@ -142,7 +142,7 @@
- 			morehosts();
- 			hsp = hs + nhosts;
- 		}
--		wd = (struct whod *)buf;
-+		wd = &buf;
- 		snprintf(hsp->hs_hostname, sizeof(hsp->hs_hostname),
- 			 "%s", wd->wd_hostname);
- 		/*
-@@ -168,7 +168,8 @@
- 		for (i = 0; i < 2; i++)
- 			if (wd->wd_loadav[i] > maxloadav)
- 				maxloadav = wd->wd_loadav[i];
--		we = (struct whoent *)(buf+cc);
-+		cc -= WHDRSIZE;
-+		we = &buf.wd_we[cc/sizeof(buf.wd_we[0])];
- 		while (--we >= wd->wd_we)
- 			if (aflg || we->we_idle < 3600)
- 				hsp->hs_nusers++;
---- netkit-rwho-0.15/rwho/Makefile.alpha	Sun Aug  1 02:00:13 1999
-+++ netkit-rwho-0.15/rwho/Makefile	Thu Aug 26 15:59:23 1999
-@@ -3,8 +3,6 @@
- include ../MCONFIG
- include ../MRULES
- 
--CFLAGS += -I../include
--
- rwho: rwho.o
- 	$(CC) $(LDFLAGS) $^ $(LIBS) -o $@
- 
---- netkit-rwho-0.15/rwhod/rwhod.c.alpha	Sun Aug  1 17:03:21 1999
-+++ netkit-rwho-0.15/rwhod/rwhod.c	Thu Aug 26 15:59:23 1999
-@@ -106,7 +106,7 @@
- struct	neighbor {
- 	struct	neighbor *n_next;
- 	char	*n_name;		/* interface name */
--	char	*n_addr;		/* who to send to */
-+	struct in_addr *n_addr;		/* who to send to */
- 	int	n_addrlen;		/* size of address */
- 	int	n_flags;		/* should forward?, interface flags */
- };
-@@ -219,7 +219,7 @@
- 	for (;;) {
- 		struct whod wd;
- 		int cc, whod;
--		size_t len = sizeof(from);
-+		int len = sizeof(from);
- 
- 		memset(&wd, 0, sizeof(wd));
- 		cc = recvfrom(sk, (char *)&wd, sizeof(struct whod), 0,
-@@ -495,15 +495,15 @@
- static int
- configure(int s)
- {
--	char buf[BUFSIZ], *cp, *cplim;
-+	struct ifreq buf[BUFSIZ/sizeof(struct ifreq)];
-+	struct ifreq ifreq, *cp, *cplim, *ifr;
- 	struct ifconf ifc;
--	struct ifreq ifreq, *ifr;
- 	struct sockaddr_in *sn;
- 	register struct neighbor *np;
- 
- 	ifc.ifc_len = sizeof (buf);
--	ifc.ifc_buf = buf;
--	if (ioctl(s, SIOCGIFCONF, (char *)&ifc) < 0) {
-+	ifc.ifc_buf = (char *)buf;
-+	if (ioctl(s, SIOCGIFCONF, &ifc) < 0) {
- 		syslog(LOG_ERR, "ioctl (get interface configuration)");
- 		return (0);
- 	}
-@@ -514,10 +514,9 @@
- #else
- #define size(p) (sizeof (p))
- #endif
--	cplim = buf + ifc.ifc_len; /*skip over if's with big ifr_addr's */
--	for (cp = buf; cp < cplim;
--			cp += sizeof (ifr->ifr_name) + size(ifr->ifr_addr)) {
--		ifr = (struct ifreq *)cp;
-+	cplim = buf + ifc.ifc_len/sizeof( *cplim); /*skip over if's with big ifr_addr's */
-+	for (cp = buf; cp < cplim; ++cp) {
-+		ifr = cp;
- 		for (np = neighbors; np != NULL; np = np->n_next)
- 			if (np->n_name &&
- 			    strcmp(ifr->ifr_name, np->n_name) == 0)
-@@ -541,8 +540,8 @@
- 			free((char *)np);
- 			continue;
- 		}
--		bcopy((char *)&ifr->ifr_addr, np->n_addr, np->n_addrlen);
--		if (ioctl(s, SIOCGIFFLAGS, (char *)&ifreq) < 0) {
-+		bcopy(&ifr->ifr_addr, np->n_addr, np->n_addrlen);
-+		if (ioctl(s, SIOCGIFFLAGS, &ifreq) < 0) {
- 			syslog(LOG_ERR, "ioctl (get interface flags)");
- 			free((char *)np);
- 			continue;
-@@ -554,7 +553,7 @@
- 		}
- 		np->n_flags = ifreq.ifr_flags;
- 		if (np->n_flags & IFF_POINTOPOINT) {
--			if (ioctl(s, SIOCGIFDSTADDR, (char *)&ifreq) < 0) {
-+			if (ioctl(s, SIOCGIFDSTADDR, &ifreq) < 0) {
- 				syslog(LOG_ERR, "ioctl (get dstaddr)");
- 				free(np);
- 				continue;
-@@ -568,7 +567,7 @@
- 			  np->n_addr, np->n_addrlen);
- 		}
- 		if (np->n_flags & IFF_BROADCAST) {
--			if (ioctl(s, SIOCGIFBRDADDR, (char *)&ifreq) < 0) {
-+			if (ioctl(s, SIOCGIFBRDADDR, &ifreq) < 0) {
- 				syslog(LOG_ERR, "ioctl (get broadaddr)");
- 				free(np);
- 				continue;

diff --git a/rwho-0.17-bug22014.patch b/rwho-0.17-bug22014.patch
deleted file mode 100644
index 9d183a8..0000000
--- a/rwho-0.17-bug22014.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- netkit-rwho-0.17-pre20000412/ruptime/Makefile.bug22014	Wed Dec 27 20:19:07 2000
-+++ netkit-rwho-0.17-pre20000412/ruptime/Makefile	Wed Dec 27 20:19:13 2000
-@@ -3,8 +3,6 @@
- include ../MCONFIG
- include ../MRULES
- 
--CFLAGS += -I../include
--
- ruptime: ruptime.o
- 	$(CC) $(LDFLAGS) $^ $(LIBS) -o $@
- 

diff --git a/rwho-0.17-fixbcast.patch b/rwho-0.17-fixbcast.patch
deleted file mode 100644
index 0010d4b..0000000
--- a/rwho-0.17-fixbcast.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- netkit-rwho-0.17-pre20000412/rwhod/rwhod.c.fixbcast	Fri Feb  2 17:03:03 2001
-+++ netkit-rwho-0.17-pre20000412/rwhod/rwhod.c	Fri Feb  2 17:03:38 2001
-@@ -533,6 +533,11 @@
- 			continue;
- 		}
- 		strcpy(np->n_name, ifr->ifr_name);
-+		if (strchr(np->n_name, ':')) {
-+		  /* virtual interface found */
-+		  free((char *) np);
-+		  continue;
-+		}
- 		np->n_addrlen = sizeof (ifr->ifr_addr);
- 		np->n_addr = malloc(np->n_addrlen);
- 		if (np->n_addr == NULL) {

diff --git a/rwho-0.17-fixhostname.patch b/rwho-0.17-fixhostname.patch
deleted file mode 100644
index 7ed44b7..0000000
--- a/rwho-0.17-fixhostname.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- netkit-rwho-0.17/rwhod/rwhod.c.fixhostname	Tue Feb 13 13:37:02 2001
-+++ netkit-rwho-0.17/rwhod/rwhod.c	Tue Feb 13 13:37:35 2001
-@@ -361,7 +361,7 @@
- 	if (mynamelen > sizeof(mywd.wd_hostname)) 
- 		mynamelen = sizeof(mywd.wd_hostname);
- 	strncpy(mywd.wd_hostname, myname, mynamelen);
--	mywd.wd_hostname[sizeof(mywd.wd_hostname)-1] = 0;
-+	mywd.wd_hostname[mynamelen] = '\0';
- 
- 	getboottime(&mywd);
- 

diff --git a/rwho-0.17-gcc4.patch b/rwho-0.17-gcc4.patch
deleted file mode 100644
index e5bffdd..0000000
--- a/rwho-0.17-gcc4.patch
+++ /dev/null
@@ -1,103 +0,0 @@
---- netkit-rwho-0.17/rwhod/rwhod.c.gcc4	2005-03-17 17:03:36.000000000 +0100
-+++ netkit-rwho-0.17/rwhod/rwhod.c	2005-03-17 17:03:36.000000000 +0100
-@@ -96,7 +96,7 @@
- static void	broadcaster(void);
- static int	configure(int s);
- static int	verify(const char *name);
--static int	getloadavg(double ptr[3], int n);
-+static int	mygetloadavg(double ptr[3], int n);
- 
- /*
-  * We communicate with each neighbor in
-@@ -182,7 +182,10 @@
- 		exit(1);
- 	}
- #ifndef DEBUG
--	daemon(1, 0);
-+	if (daemon(1, 0) == -1) {
-+		fprintf(stderr, "rwhod: unable to start daemon\n");
-+		exit(1);
-+	}
- #endif
- 	if (chdir(_PATH_RWHODIR) < 0) {
- 		(void)fprintf(stderr, "rwhod: %s: %s\n",
-@@ -247,8 +250,9 @@
- 
- 	for (;;) {
- 		struct whod wd;
--		int cc, whod;
--		int len = sizeof(from);
-+		ssize_t cc;
-+		int whod;
-+		socklen_t len = sizeof(from);
- 
- 		memset(&wd, 0, sizeof(wd));
- 		cc = recvfrom(sk, (char *)&wd, sizeof(struct whod), 0,
-@@ -273,8 +277,8 @@
- 		 */
- 		wd.wd_hostname[sizeof(wd.wd_hostname)-1] = 0;
- 		if (!verify(wd.wd_hostname)) {
--			syslog(LOG_WARNING, "malformed host name from %x",
--				from.sin_addr);
-+			syslog(LOG_WARNING, "malformed host name from %s",
-+				inet_ntoa(from.sin_addr));
- 			continue;
- 		}
- 		snprintf(path, sizeof(path), "whod.%s", wd.wd_hostname);
-@@ -307,9 +311,11 @@
- 		}
- #endif
- 		wd.wd_recvtime = time(NULL);
--		write(whod, (char *)&wd, cc);
-+		if (write(whod, (char *)&wd, cc) == -1)
-+			perror("Error writing to whod file");
- 		if (fstat(whod, &st) < 0 || st.st_size > cc)
--			ftruncate(whod, cc);
-+			if (ftruncate(whod, cc) == -1)
-+				perror("Error truncating whod file");
- 		(void) close(whod);
- 	}
- }
-@@ -453,7 +459,7 @@
- 			we->we_idle = htonl(now - stb.st_atime);
- 		we++;
- 	}
--	getloadavg(avenrun, sizeof(avenrun)/sizeof(avenrun[0]));
-+	mygetloadavg(avenrun, sizeof(avenrun)/sizeof(avenrun[0]));
- 	for (i = 0; i < 3; i++)
- 		wd->wd_loadav[i] = htonl((u_long)(avenrun[i] * 100));
- 	cc = (char *)we - (char *)wd;
-@@ -502,7 +508,7 @@
-  *
-  * Send comments/bug reports/fixes to: pen@signum.se or pen@lysator.liu.se
-  */
--int getloadavg(double ptr[3], int n)
-+int mygetloadavg(double ptr[3], int n)
- {
- 	FILE *fp;
- 
-@@ -530,7 +536,8 @@
- 	FILE *fp = fopen("/proc/uptime", "r");
- 	if (!fp) return /* -1 */;
- 
--	fscanf(fp, "%ld", &uptime);
-+	if (fscanf(fp, "%ld", &uptime) <= 0)
-+		syslog(LOG_WARNING, "couldn't parse /proc/uptime correctly");
- 
- 	curtime = time(NULL);
- 	curtime -= uptime;
---- netkit-rwho-0.17/rwhod/daemon.c.gcc4	2005-03-17 17:04:03.000000000 +0100
-+++ netkit-rwho-0.17/rwhod/daemon.c	2005-03-17 17:06:15.000000000 +0100
-@@ -57,7 +57,11 @@
- 	}
- 
- 	if (setsid() == -1) return -1;
--	if (!nochdir) chdir("/");
-+	if (!nochdir)
-+		if (chdir("/") == -1) {
-+			perror("Couldn't chdir to /");
-+			return -1;
-+		}
- 	if (noclose) return 0;
- 
- 	fd = open(_PATH_DEVNULL, O_RDWR, 0);

diff --git a/rwho-0.17-hostnamelen.patch b/rwho-0.17-hostnamelen.patch
deleted file mode 100644
index d8846b9..0000000
--- a/rwho-0.17-hostnamelen.patch
+++ /dev/null
@@ -1,84 +0,0 @@
-diff -up netkit-rwho-0.17/ruptime/ruptime.1.hostnamelen netkit-rwho-0.17/ruptime/ruptime.1
---- netkit-rwho-0.17/ruptime/ruptime.1.hostnamelen	2000-07-31 01:57:06.000000000 +0200
-+++ netkit-rwho-0.17/ruptime/ruptime.1	2011-12-07 15:41:10.009068689 +0100
-@@ -41,6 +41,7 @@
- .Sh SYNOPSIS
- .Nm ruptime
- .Op Fl alrtu
-+.Op Fl n=length
- .Sh DESCRIPTION
- .Nm Ruptime
- gives a status line like
-@@ -65,6 +66,8 @@ Reverses the sort order.
- Sort by uptime.
- .It Fl u
- Sort by number of users.
-+.It Fl n=length
-+Specify hostname length in output.
- .El
- .Pp
- The default listing is sorted by host name.
-diff -up netkit-rwho-0.17/ruptime/ruptime.c.hostnamelen netkit-rwho-0.17/ruptime/ruptime.c
---- netkit-rwho-0.17/ruptime/ruptime.c.hostnamelen	2011-12-07 15:40:54.566069745 +0100
-+++ netkit-rwho-0.17/ruptime/ruptime.c	2011-12-07 15:40:54.690069736 +0100
-@@ -66,6 +66,7 @@ struct hs {
- 
- #define	ISDOWN(h)	(now - (h)->hs_recvtime > 11 * 60)
- #define	WHDRSIZE	((int)(sizeof (awhod) - sizeof (awhod.wd_we)))
-+#define HOSTNAMELEN 12
- 
- static size_t nhosts, hspace = 20;
- static struct hs *hs;
-@@ -93,10 +94,11 @@ main(int argc, char **argv)
- 	unsigned i;
- 	struct whod buf;
- 	int (*cmp)(const void *, const void *) = hscmp;
-+	int hostnamelen = HOSTNAMELEN;
- 	time_t correction;
- 
- 	aflg = 0;
--	while ((ch = getopt(argc, argv, "alrut")) != -1)
-+	while ((ch = getopt(argc, argv, "alrutn:")) != -1)
- 		switch((char)ch) {
- 		case 'a':
- 			aflg = 1;
-@@ -113,8 +115,15 @@ main(int argc, char **argv)
- 		case 'u':
- 			cmp = ucmp;
- 			break;
-+		case 'n':
-+			hostnamelen = atoi(optarg+1);
-+			if(hostnamelen < 0){
-+				fprintf(stderr,"Error, hostname length can't be negative number!\n");
-+				exit(1);
-+			}
-+			break;
- 		default: 
--			(void)fprintf(stderr, "usage: ruptime [-alrut]\n");
-+			(void)fprintf(stderr, "usage: ruptime [-alrutn]\n");
- 			exit(1);
- 		}
- 
-@@ -182,15 +191,20 @@ main(int argc, char **argv)
- 	}
- 	(void)time(&now);
- 	qsort(hs, nhosts, sizeof(hs[0]), cmp);
-+	char output_format[512];
-+	char *down_pattern = "%%-%i.%is%%s\n";
-+	char *up_pattern = "%%-%i.%is%%s,  %%4d user%%s  load %%*.2f, %%*.2f, %%*.2f\n";
- 	for (i = 0; i < nhosts; i++) {
- 		hsp = &hs[i];
- 		if (ISDOWN(hsp)) {
--			(void)printf("%-12.12s%s\n", hsp->hs_hostname,
-+			sprintf(output_format, down_pattern, hostnamelen,hostnamelen);
-+			(void)printf(output_format, hsp->hs_hostname,
- 			    interval(now - hsp->hs_recvtime, "down"));
- 			continue;
- 		}
-+		sprintf(output_format, up_pattern, hostnamelen,hostnamelen);
- 		(void)printf(
--		    "%-12.12s%s,  %4d user%s  load %*.2f, %*.2f, %*.2f\n",
-+		    output_format,
- 		    hsp->hs_hostname,
- 		    interval((time_t)hsp->hs_sendtime -
- 			(time_t)hsp->hs_boottime, "  up"),

diff --git a/rwho-0.17-include.patch b/rwho-0.17-include.patch
deleted file mode 100644
index 435d16b..0000000
--- a/rwho-0.17-include.patch
+++ /dev/null
@@ -1,69 +0,0 @@
---- netkit-rwho-0.17/include/protocols/rwhod.h.include	2000-06-03 12:43:06.000000000 -0400
-+++ netkit-rwho-0.17/include/protocols/rwhod.h	2004-10-18 20:21:18.000000000 -0400
-@@ -1,6 +1,6 @@
- /*
-- * Copyright (c) 1983 The Regents of the University of California.
-- * All rights reserved.
-+ * Copyright (c) 1983, 1993
-+ *	The Regents of the University of California.  All rights reserved.
-  *
-  * Redistribution and use in source and binary forms, with or without
-  * modification, are permitted provided that the following conditions
-@@ -10,10 +10,6 @@
-  * 2. Redistributions in binary form must reproduce the above copyright
-  *    notice, this list of conditions and the following disclaimer in the
-  *    documentation and/or other materials provided with the distribution.
-- * 3. All advertising materials mentioning features or use of this software
-- *    must display the following acknowledgement:
-- *	This product includes software developed by the University of
-- *	California, Berkeley and its contributors.
-  * 4. Neither the name of the University nor the names of its contributors
-  *    may be used to endorse or promote products derived from this software
-  *    without specific prior written permission.
-@@ -30,12 +26,13 @@
-  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
-  * SUCH DAMAGE.
-  *
-- *	from: @(#)rwhod.h	5.6 (Berkeley) 4/3/91
-- *	$Id: rwhod.h,v 1.3 2000/06/03 16:43:06 dholland Exp $
-+ *	@(#)rwhod.h	8.1 (Berkeley) 6/2/93
-  */
- 
--#ifndef _RWHOD_H_
--#define	_RWHOD_H_
-+#ifndef _PROTOCOLS_RWHOD_H
-+#define	_PROTOCOLS_RWHOD_H 1
-+
-+#include <sys/types.h>
- 
- /*
-  * rwho protocol packet format.
-@@ -50,20 +47,21 @@
- 	char	wd_vers;		/* protocol version # */
- 	char	wd_type;		/* packet type, see below */
- 	char	wd_pad[2];
--	int32_t	wd_sendtime;		/* time stamp by sender */
--	int32_t	wd_recvtime;		/* time stamp applied by receiver */
-+	int	wd_sendtime;		/* time stamp by sender */
-+	int	wd_recvtime;		/* time stamp applied by receiver */
- 	char	wd_hostname[32];	/* hosts's name */
--	int32_t	wd_loadav[3];		/* load average as in uptime */
--	int32_t	wd_boottime;		/* time system booted */
-+	int	wd_loadav[3];		/* load average as in uptime */
-+	int	wd_boottime;		/* time system booted */
- 	struct	whoent {
- 		struct	outmp we_utmp;	/* active tty info */
--		int32_t	we_idle;	/* tty idle time */
-+		int	we_idle;	/* tty idle time */
- 	} wd_we[1024 / sizeof (struct whoent)];
- };
- 
- #define	WHODVERSION	1
- #define	WHODTYPE_STATUS	1		/* host status */
- 
--#define	_PATH_RWHODIR	"/var/spool/rwho"
-+/* We used to define _PATH_RWHODIR here but it's now in <paths.h>.  */
-+#include <paths.h>
- 
--#endif /* !_RWHOD_H_ */
-+#endif /* protocols/rwhod.h */

diff --git a/rwho-0.17-neighbours.patch b/rwho-0.17-neighbours.patch
deleted file mode 100644
index 3eab135..0000000
--- a/rwho-0.17-neighbours.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-diff -up netkit-rwho-0.17/rwhod/rwhod.c.neighbours netkit-rwho-0.17/rwhod/rwhod.c
---- netkit-rwho-0.17/rwhod/rwhod.c.neighbours	2011-06-01 18:26:01.913226552 +0200
-+++ netkit-rwho-0.17/rwhod/rwhod.c	2011-06-01 18:28:44.434226510 +0200
-@@ -383,6 +383,8 @@ broadcaster()
- 	getboottime(&mywd);
- 
- 	while (1) {
-+		if (!configure(sk))
-+			exit(1);
- 		sendpacket(&mywd);
- 		(void) sleep(AL_INTERVAL);
- 	}
-@@ -603,6 +605,20 @@ configure(int s)
- 	struct sockaddr_in *sn;
- 	register struct neighbor *np;
- 
-+	/* forget previous neighbors; interfaces may have changed */
-+	for (np = neighbors; np != NULL; ) {
-+		register struct neighbor *pp;
-+ 
-+		if(np->n_name)
-+			free(np->n_name);
-+		if(np->n_addr)
-+			free(np->n_addr);
-+		pp = np;
-+		np = np->n_next;
-+		free((char *)pp);
-+	}
-+	neighbors = 0;
-+
- 	ifc.ifc_len = sizeof (buf);
- 	ifc.ifc_buf = (char *)buf;
- 	if (ioctl(s, SIOCGIFCONF, &ifc) < 0) {

diff --git a/rwho-0.17-stderr.patch b/rwho-0.17-stderr.patch
deleted file mode 100644
index a080172..0000000
--- a/rwho-0.17-stderr.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -up netkit-rwho-0.17/ruptime/ruptime.c.stderr netkit-rwho-0.17/ruptime/ruptime.c
---- netkit-rwho-0.17/ruptime/ruptime.c.stderr	2012-11-07 08:29:27.024731591 +0100
-+++ netkit-rwho-0.17/ruptime/ruptime.c	2012-11-07 08:29:52.906741963 +0100
-@@ -186,7 +186,7 @@ main(int argc, char **argv)
- 		hsp++;
- 	}
- 	if (!nhosts) {
--		(void)printf("ruptime: no hosts in %s.\n", _PATH_RWHODIR);
-+		(void)fprintf(stderr, "ruptime: no hosts in %s.\n", _PATH_RWHODIR);
- 		exit(1);
- 	}
- 	(void)time(&now);
-diff -up netkit-rwho-0.17/rwho/rwho.c.stderr netkit-rwho-0.17/rwho/rwho.c
---- netkit-rwho-0.17/rwho/rwho.c.stderr	2012-11-07 08:37:47.539978797 +0100
-+++ netkit-rwho-0.17/rwho/rwho.c	2012-11-07 08:33:00.651829733 +0100
-@@ -155,7 +155,7 @@ main(int argc, char *argv[])
- 				continue;
- 			}
- 			if (nusers >= NUSERS) {
--				printf("too many users\n");
-+				fprintf(stderr, "too many users\n");
- 				exit(1);
- 			}
- 

diff --git a/rwho-0.17-strip.patch b/rwho-0.17-strip.patch
deleted file mode 100644
index fa7ff05..0000000
--- a/rwho-0.17-strip.patch
+++ /dev/null
@@ -1,33 +0,0 @@
---- netkit-rwho-0.17/rwho/Makefile.strip	Wed Jun 19 17:33:10 2002
-+++ netkit-rwho-0.17/rwho/Makefile	Wed Jun 19 17:33:41 2002
-@@ -9,7 +9,7 @@
- rwho.o: ../version.h
- 
- install: rwho
--	install -s -m$(BINMODE) rwho $(INSTALLROOT)$(BINDIR)
-+	install -m$(BINMODE) rwho $(INSTALLROOT)$(BINDIR)
- 	install -m$(MANMODE) rwho.1 $(INSTALLROOT)$(MANDIR)/man1/
- 
- clean:
---- netkit-rwho-0.17/ruptime/Makefile.strip	Wed Jun 19 17:33:10 2002
-+++ netkit-rwho-0.17/ruptime/Makefile	Wed Jun 19 17:33:56 2002
-@@ -7,7 +7,7 @@
- 	$(CC) $(LDFLAGS) $^ $(LIBS) -o $@
- 
- install: ruptime
--	install -s -m$(BINMODE) ruptime $(INSTALLROOT)$(BINDIR)
-+	install -m$(BINMODE) ruptime $(INSTALLROOT)$(BINDIR)
- 	install -m$(MANMODE) ruptime.1 $(INSTALLROOT)$(MANDIR)/man1/
- 
- clean:
---- netkit-rwho-0.17/rwhod/Makefile.strip	Wed Jun 19 17:33:10 2002
-+++ netkit-rwho-0.17/rwhod/Makefile	Wed Jun 19 17:34:10 2002
-@@ -11,7 +11,7 @@
- $(OBJS): daemon.h
- 
- install: rwhod
--	install -s -m$(DAEMONMODE) rwhod $(INSTALLROOT)$(SBINDIR)
-+	install -m$(DAEMONMODE) rwhod $(INSTALLROOT)$(SBINDIR)
- 	install -m$(MANMODE) rwhod.8 $(INSTALLROOT)$(MANDIR)/man8/
- 
- clean:

diff --git a/rwho-0.17-time.patch b/rwho-0.17-time.patch
deleted file mode 100644
index a8fc00d..0000000
--- a/rwho-0.17-time.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- netkit-rwho-0.17/rwhod/rwhod.c.time	2004-10-22 08:18:03.000000000 -0400
-+++ netkit-rwho-0.17/rwhod/rwhod.c	2004-10-22 08:18:13.000000000 -0400
-@@ -69,6 +69,7 @@
- #include <arpa/inet.h>
- #include <pwd.h>
- #include <grp.h>
-+#include <time.h>
- 
- #include "daemon.h"
- 

diff --git a/rwho-0.17-waitchild.patch b/rwho-0.17-waitchild.patch
deleted file mode 100644
index 2460c09..0000000
--- a/rwho-0.17-waitchild.patch
+++ /dev/null
@@ -1,33 +0,0 @@
---- netkit-rwho-0.17/rwhod/rwhod.c.waitchild	2006-08-15 14:20:01.000000000 +0200
-+++ netkit-rwho-0.17/rwhod/rwhod.c	2006-08-15 14:20:28.000000000 +0200
-@@ -125,6 +125,7 @@
- 
- static void huphandler(int);
- static void termhandler(int);
-+static void childhandler(int);
- static void sendpacket(struct whod *);
- static void getboottime(struct whod *);
- 
-@@ -213,6 +214,7 @@
- 	(void) umask(022);
- 
- 	signal(SIGTERM, termhandler);
-+	signal(SIGCHLD, childhandler);
- 	child_pid = fork();
- 	if (child_pid < 0) {
- 		syslog(LOG_ERR, "fork: %m");
-@@ -332,6 +334,14 @@
- 	exit(0);
- }
- 
-+static void
-+childhandler(int dummy)
-+{
-+        (void) dummy;
-+        exit(0);
-+}
-+
-+
- /*
-  * Obtain boot time again
-  */

diff --git a/rwho-0.17-wd_we.patch b/rwho-0.17-wd_we.patch
deleted file mode 100644
index 218ca5d..0000000
--- a/rwho-0.17-wd_we.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- netkit-rwho-0.17/include/protocols/rwhod.h.wd_we	2004-10-21 14:15:05.000000000 -0400
-+++ netkit-rwho-0.17/include/protocols/rwhod.h	2004-10-21 14:15:14.000000000 -0400
-@@ -55,7 +55,7 @@
- 	struct	whoent {
- 		struct	outmp we_utmp;	/* active tty info */
- 		int	we_idle;	/* tty idle time */
--	} wd_we[1024 / sizeof (struct whoent)];
-+	} wd_we[1024];
- };
- 
- #define	WHODVERSION	1
---- netkit-rwho-0.17/rwhod/rwhod.c.wd_we	2004-10-21 14:14:22.000000000 -0400
-+++ netkit-rwho-0.17/rwhod/rwhod.c	2004-10-21 14:14:45.000000000 -0400
-@@ -420,7 +420,7 @@
- 		}
- 		wlast = (struct whoent *) ((caddr_t) wd->wd_we)
- 						+ sizeof(wd->wd_we);
--		wlast = &wd->wd_we[1024 / sizeof (struct whoent) - 1];
-+		wlast = &wd->wd_we[1024-1];
- 		setutent();
- 		while ((uptr = getutent()) && we < wlast) {
- 			if (uptr->ut_name[0]

diff --git a/rwho-c99.patch b/rwho-c99.patch
deleted file mode 100644
index 99c94d9..0000000
--- a/rwho-c99.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Include <stdio.h> for the perror function.
-
-diff --git a/rwhod/daemon.c b/rwhod/daemon.c
-index 487808b4a2440790..4b46f9fa12e1434f 100644
---- a/rwhod/daemon.c
-+++ b/rwhod/daemon.c
-@@ -38,6 +38,7 @@
- char daemon_rcsid[] = 
-   "$Id: daemon.c,v 1.2 1996/08/15 07:22:28 dholland Exp $";
- 
-+#include <stdio.h>
- #include <fcntl.h>
- #include <paths.h>
- #include <unistd.h>

diff --git a/rwho.spec b/rwho.spec
deleted file mode 100644
index e248b2f..0000000
--- a/rwho.spec
+++ /dev/null
@@ -1,416 +0,0 @@
-Summary: Displays who is logged in to local network machines
-Name: rwho
-Version: 0.17
-Release: 81%{?dist}
-# rwhod/rwhod.c* is GPL-1.0-or-later
-# include/protocols/rwhod.h.wd, include/protocols/rwhod.h are BSD-3-Clause
-# the rest is BSD-4-Clause-UC
-License: BSD-3-Clause AND BSD-4-Clause-UC AND GPL-1.0-or-later
-Source: ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/netkit-rwho-%{version}.tar.gz
-Source1: rwhod.service
-Patch0: rwho-0.15-alpha.patch
-Patch1: rwho-0.17-bug22014.patch
-Patch2: rwho-0.17-fixbcast.patch
-Patch3: rwho-0.17-fixhostname.patch
-Patch4: rwho-0.17-strip.patch
-Patch5: rwho-0.17-include.patch
-Patch6: rwho-0.17-wd_we.patch
-Patch7: rwho-0.17-time.patch
-Patch8: rwho-0.17-gcc4.patch
-Patch9: rwho-0.17-waitchild.patch
-Patch10: rwho-0.17-neighbours.patch
-Patch11: rwho-0.17-hostnamelen.patch
-Patch12: rwho-0.17-stderr.patch
-Patch13: rwho-c99.patch
-Requires(post): systemd
-Requires(preun): systemd
-Requires(postun): systemd
-BuildRequires: make
-BuildRequires: gcc
-BuildRequires: systemd, perl-interpreter
-
-%description
-The rwho command displays output similar to the output of the who
-command (it shows who is logged in) for all machines on the local
-network running the rwho daemon.
-
-Install the rwho command if you need to keep track of the users who
-are logged in to your local network.
-
-%prep
-%setup -q -n netkit-rwho-%{version}
-%patch -P0 -p1 -b .alpha
-%patch -P1 -p1 -b .bug22014
-%patch -P2 -p1 -b .fixbcast
-%patch -P3 -p1 -b .fixhostname
-%patch -P4 -p1 -b .strip
-%patch -P5 -p1 -b .include
-%patch -P6 -p1 -b .wd_we
-%patch -P7 -p1 -b .time
-%patch -P8 -p1 -b .gcc4
-%patch -P9 -p1 -b .waitchild
-%patch -P10 -p1 -b .neighbours
-%patch -P11 -p1 -b .hostnamelen
-%patch -P12 -p1 -b .stderr
-%patch -P13 -p1
-
-%{__perl} -pi -e '
-    s|^LDFLAGS=|LDFLAGS="-pie -Wl,-z,relro,-z,now"|;
-    s,^BINDIR=.*$,BINDIR=%{_bindir},;
-    s,^MANDIR=.*$,MANDIR=%{_mandir},;
-    s,^SBINDIR=.*$,SBINDIR=%{_sbindir},;
-    ' configure
-
-%build
-%ifarch s390 s390x
-CFLAGS="$RPM_OPT_FLAGS -I../include -fPIC" \
-%else
-CFLAGS="$RPM_OPT_FLAGS -I../include -fpic" \
-%endif
-sh configure --with-c-compiler=gcc
-make %{?_smp_mflags}
-
-%install
-mkdir -p ${RPM_BUILD_ROOT}%{_bindir}
-mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man{1,8}
-mkdir -p ${RPM_BUILD_ROOT}%{_sbindir}
-mkdir -p ${RPM_BUILD_ROOT}%{_unitdir}
-mkdir -p ${RPM_BUILD_ROOT}/var/spool/rwho
-
-make INSTALLROOT=${RPM_BUILD_ROOT} install
-make INSTALLROOT=${RPM_BUILD_ROOT} install -C ruptime
-
-install -m 644 %SOURCE1 ${RPM_BUILD_ROOT}%{_unitdir}/rwhod.service
-
-%post
-%systemd_post rwhod.service
-
-%preun
-%systemd_preun rwhod.service
-
-%postun
-%systemd_postun_with_restart rwhod.service
-
-%files
-%doc README
-%{_bindir}/ruptime
-%{_mandir}/man1/ruptime.1*
-%{_bindir}/rwho
-%{_mandir}/man1/rwho.1*
-%{_sbindir}/rwhod
-%{_mandir}/man8/rwhod.8*
-/var/spool/rwho
-%{_unitdir}/*
-
-%changelog
-* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-81
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
-
-* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-80
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
-
-* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-79
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
-
-* Wed Sep 04 2024 Miroslav Suchý <msuchy@redhat.com> - 0.17-78
-- convert license to SPDX
-
-* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-77
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
-
-* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-76
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
-
-* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-75
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
-
-* Sat Feb 04 2023 Florian Weimer <fweimer@redhat.com> - 0.17-74
-- Fix C99 compatibility issue (#2167090)
-
-* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-73
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
-
-* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-72
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
-
-* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-71
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
-
-* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-70
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
-
-* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.17-69
-- Rebuilt for updated systemd-rpm-macros
-  See https://pagure.io/fesco/issue/2583.
-
-* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-68
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
-
-* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-67
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
-
-* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-66
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
-
-* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-65
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
-
-* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-64
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
-
-* Tue Jul 24 2018 Petr Kubat <pkubat@redhat.com> - 0.17-63
-- Add BuildRequires for gcc (#1606286)
-
-* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-62
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
-
-* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-61
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
-
-* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-60
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
-
-* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-59
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
-
-* Fri Jul 21 2017 Petr Kubat <pkubat@redhat.com> - 0.17-58
-- Start rwhod after the network is properly configured (#1473089)
-
-* Mon Feb 13 2017 Petr Kubat <pkubat@redhat.com> - 0.17-57
-- Add BuildRequires for perl
-
-* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-57
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
-
-* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-56
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
-
-* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-55
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
-
-* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-54
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
-
-* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-53
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
-
-* Mon Jul 29 2013 Honza Horak <hhorak@redhat.com> - 0.17-52
-- Use systemd instead of systemd-units
-
-* Fri May 24 2013 Honza Horak <hhorak@redhat.com> - 0.17-51
-- Remove syslog.target from unit requries, it doesn't need to exist
-
-* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-50
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
-
-* Fri Nov 30 2012 Honza Horak <hhorak@redhat.com> - 0.17-49
-- Build the daemon with full relro
-
-* Fri Nov 16 2012 Honza Horak <hhorak@redhat.com> - 0.17-48
-- Spec file clean up according comments from Ville Skytta
-  Related: #873838
-
-* Wed Nov 07 2012 Honza Horak <hhorak@redhat.com> - 0.17-47
-- Remove linkage against systemd-daemon
-- Print errors into stderr
-
-* Fri Oct 05 2012 Honza Horak <hhorak@redhat.com> - 0.17-45
-- Remove sdnotify message, while it doesn't work with forking service
-
-* Thu Oct 04 2012 Honza Horak <hhorak@redhat.com> - 0.17-44
-- Use sdnotify message to inform systemd the daemon is ready
-
-* Thu Oct 04 2012 Honza Horak <hhorak@redhat.com> - 0.17-43
-- Run %%triggerun regardless of systemd_post variable definition
-
-* Tue Sep 11 2012 Honza Horak <hhorak@redhat.com> - 0.17-42
-- GPL+ added since part of rwhod is licensed under that license
-
-* Tue Sep 11 2012 Honza Horak <hhorak@redhat.com> - 0.17-41
-- Minor spec file cleanup
-- Use new systemd macros (Resolves: #850304)
-
-* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-40
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
-
-* Tue Mar 06 2012 Honza Horak <hhorak@redhat.com> - 0.17-39
-- removed pid file specification from unit file
-  Related: #799246
-
-* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-38
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
-
-* Wed Dec 07 2011 Honza Horak <hhorak@redhat.com> - 0.17-37
-- systemd unit file mod fix
-  removed non-essential Requires: /sbin/chkconfig /etc/init.d
-- allow longer hostnames (bug #212076)
-- add -n option to ruptime manpage
-
-* Mon Aug 01 2011 Honza Horak <hhorak@redhat.com> - 0.17-36
-- added systemd native unit file
-
-* Thu Jun 02 2011 Honza Horak <hhorak@redhat.com> - 0.17-35
-- applied patch from Ian Donaldson to transmit status reliably
-  (bug #708385)
-
-* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-34
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
-
-* Fri Feb  26 2010 Jiri Moskovcak <jmoskovc@redhat.com> - 0.17-33
-- added README
-
-* Fri Jan  8 2010 Jiri Moskovcak <jmoskovc@redhat.com> - 0.17-32
-- fixed rpmlint warnings
-
-* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-31
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
-
-* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-30
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
-
-* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.17-29
-- Autorebuild for GCC 4.3
-
-* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 0.17-28
-- Rebuild for selinux ppc32 issue.
-
-* Mon Jul 23 2007 Jiri Moskovcak <jmoskovc@redhat.com> - 0.17-27
-- Fixed init script to comply with the LSB standard
-- Resolves: #247049
-
-* Tue Aug 15 2006 Harald Hoyer <harald@redhat.com> - 0.17-26
-- exit daemon, if child process dies (bug #202493)
-
-* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.17-25.2.2
-- rebuild
-
-* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.17-25.2.1
-- bump again for double-long bug on ppc(64)
-
-* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.17-25.2
-- rebuilt for new gcc4.1 snapshot and glibc changes
-
-* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
-- rebuilt
-
-* Thu Mar 17 2005 Phil Knirsch <pknirsch@redhat.com> 0.17-25
-- gcc4 rebuild fixes
-
-* Wed Mar 02 2005 Phil Knirsch <pknirsch@redhat.com> 0.17-24
-- bump release and rebuild with gcc 4
-
-* Fri Oct 22 2004 Phil Knirsch <pknirsch@redhat.com> 0.17-23
-- Fixed long standig bug with only 42 entries per host showing up (#27643)
-- Fixed some warnings of missing prototypes.
-
-* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
-- rebuilt
-
-* Wed May 12 2004 Phil Knirsch <pknirsch@redhat.com> 0.17-21
-- Enabled PIE for server and application.
-
-* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
-- rebuilt
-
-* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
-- rebuilt
-
-* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
-- rebuilt
-
-* Wed Dec 11 2002 Tim Powers <timp@redhat.com> 0.17-17
-- rebuild on all arches
-
-* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
-- automated rebuild
-
-* Wed Jun 19 2002 Phil Knirsch <pknirsch@redhat.com> 0.17-15
-- Don't forcibly strip binaries
-
-* Tue Jun 04 2002 Phil Knirsch <pknirsch@redhat.com>
-- bumped release number and rebuild
-
-* Thu May 23 2002 Tim Powers <timp@redhat.com>
-- automated rebuild
-
-* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
-- automated rebuild
-
-* Wed Apr  4 2001 Jakub Jelinek <jakub@redhat.com>
-- don't let configure to guess compiler, it can pick up egcs
-
-* Tue Feb 13 2001 Preston Brown <pbrown@redhat.com>
-- hostname was getting null terminated incorrectly.  fixed. (#27419)
-
-* Mon Feb  5 2001 Bernhard Rosenkraenzer <bero@redhat.com>
-- i18nize init script (#26083)
-
-* Fri Feb  2 2001 Preston Brown <pbrown@redhat.com>
-- don't bcast on virtual interfaces (#20435).  Patch from dwagoner@interTrust.com; thanks.
-
-* Wed Dec 27 2000 Jeff Johnson <jhbj@redhat.com>
-- use glibc's <protocols/rwhod.h>, internal version broken on alpha (#22014).
-
-* Thu Aug 10 2000 Bill Nottingham <notting@redhat.com>
-- fix broken init script
-
-* Sat Aug 05 2000 Bill Nottingham <notting@redhat.com>
-- condrestart fixes
-
-* Thu Jul 20 2000 Bill Nottingham <notting@redhat.com>
-- move initscript back
-
-* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
-- automatic rebuild
-
-* Mon Jul 10 2000 Preston Brown <pbrown@redhat.com>
-- move initscript
-
-* Sun Jun 18 2000 Jeff Johnson <jbj@redhat.com>
-- FHS packaging.
-- update to 0.17.
-
-* Mon Feb  7 2000 Jeff Johnson <jbj@redhat.com>
-- compress man pages.
-
-* Tue Dec 21 1999 Jeff Johnson <jbj@redhat.com>
-- update to 0.16.
-
-* Thu Sep 09 1999 Preston Brown <pbrown@redhat.com>
-- postun should have been preun.
-
-* Thu Aug 26 1999 Jeff Johnson <jbj@redhat.com>
-- fix unaligned trap on alpha.
-- update to 0.15.
-
-* Mon Aug 16 1999 Bill Nottingham <notting@redhat.com>
-- initscript munging
-
-* Fri Apr  9 1999 Jeff Johnson <jbj@redhat.com>
-- add ruptime (#2023)
-
-* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
-- auto rebuild in the new build environment (release 22)
-
-* Mon Mar 15 1999 Jeff Johnson <jbj@redhat.com>
-- compile for 6.0.
-
-* Tue May 05 1998 Prospector System <bugs@redhat.com>
-- translations modified for de, fr, tr
-
-* Sat May 02 1998 Cristian Gafton <gafton@redhat.com>
-- enhanced initscripts
-
-* Mon Nov 03 1997 Donnie Barnes <djb@redhat.com>
-- added /var/spool/rwho
-
-* Fri Oct 31 1997 Donnie Barnes <djb@redhat.com>
-- fixed init script
-
-* Tue Oct 21 1997 Erik Troan <ewt@redhat.com>
-- added an init script
-- uses chkconfig
-- uses attr tags
-
-* Tue Jul 15 1997 Erik Troan <ewt@redhat.com>
-- initial build

diff --git a/rwhod.service b/rwhod.service
deleted file mode 100644
index 83f2ced..0000000
--- a/rwhod.service
+++ /dev/null
@@ -1,13 +0,0 @@
-[Unit]
-Description=Remote Machine Logged In User Lister
-Requires=network.target
-Wants=network-online.target
-After=syslog.target network-online.target
-
-[Service]
-Type=forking
-ExecStart=/usr/sbin/rwhod
-StandardError=syslog
-
-[Install]
-WantedBy=multi-user.target

diff --git a/sources b/sources
deleted file mode 100644
index 43eb055..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-0f71620d45d472f89134ba0d74242e75  netkit-rwho-0.17.tar.gz

                 reply	other threads:[~2026-06-19 20:34 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178190126452.1.5318351471340671420.rpms-rwho-45637289ca7c@fedoraproject.org \
    --to=packaging-reports@fedoraproject.org \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox