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/rwall] rawhide: Orphaned for 6+ weeks
Date: Fri, 19 Jun 2026 20:34:11 GMT [thread overview]
Message-ID: <178190125187.1.13094786903239362360.rpms-rwall-87c1e6b7dba5@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/rwall
Branch : rawhide
Commit : 87c1e6b7dba5ce8c914e32021e79798d19ed8120
Author : Orphaned Packages Process <packaging-reports@fedoraproject.org>
Date : 2026-06-19T15:34:07-05:00
Stats : +1/-683 in 9 file(s)
URL : https://src.fedoraproject.org/rpms/rwall/c/87c1e6b7dba5ce8c914e32021e79798d19ed8120?branch=rawhide
Log:
Orphaned for 6+ weeks
---
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index f85efa0..0000000
--- a/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-netkit-rwall-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/netkit-rwall-0.17-droppriv.patch b/netkit-rwall-0.17-droppriv.patch
deleted file mode 100644
index 9159aa6..0000000
--- a/netkit-rwall-0.17-droppriv.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-diff -up netkit-rwall-0.17/rpc.rwalld/rwalld.c.debug netkit-rwall-0.17/rpc.rwalld/rwalld.c
---- netkit-rwall-0.17/rpc.rwalld/rwalld.c.debug 2011-08-01 15:22:08.886396602 +0200
-+++ netkit-rwall-0.17/rpc.rwalld/rwalld.c 2011-08-01 15:22:08.901396602 +0200
-@@ -90,20 +90,6 @@ main(int argc, char *argv[])
- exit(1);
- }
-
-- if (getuid() == 0 || geteuid() == 0) {
-- struct passwd *pwd = getpwnam("nobody");
-- if (pwd) {
-- initgroups(pwd->pw_name, pwd->pw_gid);
-- setgid(pwd->pw_gid);
-- setuid(pwd->pw_uid);
-- }
-- seteuid(0); /* this should fail */
-- if (getuid() == 0 || geteuid() == 0) {
-- syslog(LOG_CRIT, "can't drop root privileges");
-- exit(1);
-- }
-- }
--
- /*
- * See if inetd started us
- */
-@@ -153,6 +139,22 @@ main(int argc, char *argv[])
- (void)fprintf(stderr, "unable to register (WALLPROG, WALLVERS, udp).\n");
- exit(1);
- }
-+
-+ /* Drop privilege */
-+ if (getuid() == 0 || geteuid() == 0) {
-+ struct passwd *pwd = getpwnam("nobody");
-+ if (pwd) {
-+ initgroups(pwd->pw_name, pwd->pw_gid);
-+ setgid(pwd->pw_gid);
-+ setuid(pwd->pw_uid);
-+ }
-+ seteuid(0); /* this should fail */
-+ if (getuid() == 0 || geteuid() == 0) {
-+ syslog(LOG_CRIT, "can't drop root privileges");
-+ exit(1);
-+ }
-+ }
-+
- svc_run();
- (void)fprintf(stderr, "svc_run returned\n");
- exit(1);
diff --git a/netkit-rwall-0.17-netgroup.patch b/netkit-rwall-0.17-netgroup.patch
deleted file mode 100644
index 43631c6..0000000
--- a/netkit-rwall-0.17-netgroup.patch
+++ /dev/null
@@ -1,208 +0,0 @@
---- netkit-rwall-0.17/rwall/rwall.1.netgroup 2000-07-31 01:57:05.000000000 +0200
-+++ netkit-rwall-0.17/rwall/rwall.1 2004-09-02 20:13:25.000000000 +0200
-@@ -42,10 +42,14 @@
- .Nm rwall
- .Ar host
- .Op Ar file
-+.Nm rwall
-+.Ar -n netgroup
-+.Op Ar file
- .Sh DESCRIPTION
- The
- .Nm rwall
--command sends a message to the users logged into the specified host. The
-+command sends a message to the users logged into the specified host or
-+to users on all hosts in the specified netgroup. The
- message to be sent can be typed in and terminated with EOF or it can
- be in a
- .Ar file .
---- netkit-rwall-0.17/rwall/rwall.c.netgroup 1999-12-12 19:05:05.000000000 +0100
-+++ netkit-rwall-0.17/rwall/rwall.c 2004-09-02 20:13:25.000000000 +0200
-@@ -59,6 +59,7 @@
- #include <paths.h>
-
- #include <rpc/rpc.h>
-+#include <rpcsvc/ypclnt.h>
- #include "rwall.h"
-
- #include "../version.h"
-@@ -67,22 +68,126 @@
- static unsigned mbufsize;
- static char *mbuf;
-
-+void gethostnames(const char *, char *, int);
-+char *expandgroup(const char *, const char *, char *, size_t *);
-+int callmsg(const char *);
- static void makemsg(const char *);
-
- int
- main(int argc, char *argv[])
- {
-- char *wallhost, res;
-- CLIENT *cl;
-+ char hostname[256]=""; /* should accomodate length of most host/domain names */
-
-- if ((argc < 2) || (argc > 3)) {
-+ if ((argc < 2) || (argc > 4)) {
- fprintf(stderr, "usage: %s hostname [file]\n", argv[0]);
-+ fprintf(stderr, " %s -n netgroup [file]\n", argv[0]);
- exit(1);
- }
-
-- wallhost = argv[1];
-+ if( strcmp("-n",argv[1])) { /* send message to a single host */
-+ makemsg(argv[2]);
-+ if(callmsg(argv[1])) exit(1);
-+ } else { /* send messages to all host in a netgroup */
-+ makemsg(argv[3]);
-+ gethostnames(argv[2], hostname, 1);
-+ if( ! strlen(hostname)){
-+ fprintf(stderr,"netgroup %s not found\n", argv[2]);
-+ exit(1);
-+ }
-+ do{
-+ fprintf(stdout, "sending message to %s\n", hostname);
-+ if(callmsg(hostname)){
-+ fprintf(stdout, "host %s timed out\n", hostname);
-+ }
-+ gethostnames(argv[2], hostname, 0);
-+ }while(strlen(hostname));
-+ fprintf(stdout, "Done...\n");
-+ }
-+ exit(0);;
-+}
-+
-+#define HLISTCHUNK 256
-+
-+void
-+gethostnames(const char *netgroup, char *hostname, int first)
-+{
-+ static char *domainname = NULL, *hlist = NULL, *hnext=NULL, *cp;
-+ size_t hsize=HLISTCHUNK, error;
-+
-+ *hostname='\0'; /* assume failure */
-+
-+ if( first) {
-+ hlist = (char *) malloc(hsize * sizeof(char));
-+ if( ! hlist) {
-+ fprintf(stderr, "%s: can't allocate %d bytes for host names\n",
-+ "gethostnames", hsize * sizeof(char));
-+ return;
-+ }
-+ *hlist = '\0';
-+ if ((error = yp_get_default_domain (&domainname)) != 0) {
-+ fprintf (stderr, "%s: can't get local yp domain: %s\n",
-+ "gethostnames", yperr_string (error));
-+ return;
-+ }
-+ fprintf(stdout, "Searching for netgroup %s in domain %s\n",
-+ netgroup, domainname);
-+ hnext = hlist = expandgroup(domainname, netgroup, hlist, &hsize);
-+ fprintf(stdout, "Your message will be sent to the following hosts:\n");
-+ fprintf(stdout, " %s\n", hlist);
-+ }
-+ if( ! hlist) return; /* failed remalloc()? */
-+
-+ /* we have a list of space delimited hostnames...
-+ peel one off and advance the marker */
-+ cp = strchr(hnext, ' ');
-+ if( ! cp) return; /* no more */
-+ *cp = '\0';
-+ strcpy(hostname, hnext);
-+ hnext = cp+1;
-+}
-+
-+char *
-+expandgroup(const char *domainname, const char *netgroup, char *hlist, size_t *hsize)
-+{
-+ char list[1024], *val = NULL, *cp, *cp2, *gotend;
-+ int vallen, res;
-
-- makemsg(argv[2]);
-+ res = yp_match (domainname, "netgroup", netgroup, strlen (netgroup),
-+ &val, &vallen);
-+ cp = strtok_r(val, " ", (char **) &list);
-+ while( cp){
-+ if( *cp != '(') expandgroup(domainname, cp, hlist, hsize);
-+ else {
-+ gotend = strchr(cp+1, ')'); /* was closing par in this token? */
-+ cp2 = strchr(cp+1,',');
-+ if(cp2) *cp2 = '\0';
-+ if( strlen(hlist) + strlen(cp) + 1 > *hsize) {
-+ *hsize += HLISTCHUNK; /* add more space */
-+ hlist = realloc(hlist, *hsize * sizeof(char));
-+ if( ! hlist) {
-+ fprintf(stderr,
-+ "%s: can't reallocate %d bytes for host names\n",
-+ "expandgroup", *hsize * sizeof(char));
-+ return hlist;
-+ }
-+ }
-+ strcat(hlist, cp+1);
-+ strcat(hlist, " ");
-+ while( ! gotend) { /* toss everything to closing parentheses */
-+ cp = strtok_r(NULL, " ", (char **) &list);
-+ gotend = strchr(cp, ')');
-+ }
-+ }
-+ cp = strtok_r(NULL, " ", (char **) &list);
-+ }
-+ return hlist;
-+}
-+
-+int
-+callmsg(const char *wallhost)
-+{
-+ CLIENT *cl;
-+ char res;
-
- /*
- * Create client "handle" used for calling MESSAGEPROG on the
-@@ -96,7 +201,7 @@
- * Print error message and die.
- */
- clnt_pcreateerror(wallhost);
-- exit(1);
-+ return -1;
- }
-
- if (clnt_call(cl, WALLPROC_WALL,
-@@ -108,10 +213,10 @@
- * Print error message and die.
- */
- clnt_perror(cl, wallhost);
-- exit(1);
-+ return -1;
- }
-
-- exit(0);
-+ return 0;
- }
-
- static void
-@@ -176,4 +281,8 @@
- exit(1);
- }
- (void)close(fd);
-+ mbuf[mbufsize-1] = '\0'; /* terminate */
- }
-+
-+/* EOF */
-+
---- netkit-rwall-0.17/ChangeLog.netgroup 2000-07-23 06:43:22.000000000 +0200
-+++ netkit-rwall-0.17/ChangeLog 2004-09-02 20:13:25.000000000 +0200
-@@ -0,0 +1,3 @@
-+06-Apr-2002:
-+ added option to message all hosts in a netgroup (Jack Perdue - ss@siliconslick.com)
-+
---- netkit-rwall-0.17/configure.netgroup 2000-07-23 07:42:25.000000000 +0200
-+++ netkit-rwall-0.17/configure 2004-09-02 20:13:25.000000000 +0200
-@@ -147,7 +147,7 @@
- fi
-
- LDFLAGS=
--LIBS=
-+LIBS=-lnsl
-
- rm -f __conftest*
-
diff --git a/netkit-rwall-0.17-strip.patch b/netkit-rwall-0.17-strip.patch
deleted file mode 100644
index f11d794..0000000
--- a/netkit-rwall-0.17-strip.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- netkit-rwall-0.17/rpc.rwalld/Makefile.strip Sun Dec 12 19:05:05 1999
-+++ netkit-rwall-0.17/rpc.rwalld/Makefile Wed Jun 19 17:21:56 2002
-@@ -12,7 +12,7 @@
- daemon.o: daemon.h
-
- install: rwalld
-- install -s -m$(DAEMONMODE) rwalld $(INSTALLROOT)$(SBINDIR)/rpc.rwalld
-+ install -m$(DAEMONMODE) rwalld $(INSTALLROOT)$(SBINDIR)/rpc.rwalld
- install -m$(MANMODE) rpc.rwalld.8 $(INSTALLROOT)$(MANDIR)/man8
- ln -sf rpc.rwalld.8 $(INSTALLROOT)$(MANDIR)/man8/rwalld.8
-
---- netkit-rwall-0.17/rwall/Makefile.strip Sun Dec 12 19:05:05 1999
-+++ netkit-rwall-0.17/rwall/Makefile Wed Jun 19 17:22:12 2002
-@@ -11,7 +11,7 @@
- rwall.o: rwall.h ../version.h
-
- install: rwall
-- install -s -m$(BINMODE) rwall $(INSTALLROOT)$(BINDIR)
-+ install -m$(BINMODE) rwall $(INSTALLROOT)$(BINDIR)
- install -m$(MANMODE) rwall.1 $(INSTALLROOT)$(MANDIR)/man1/
-
- clean:
diff --git a/netkit-rwalld-0.10-banner.patch b/netkit-rwalld-0.10-banner.patch
deleted file mode 100644
index de90e92..0000000
--- a/netkit-rwalld-0.10-banner.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- netkit-rwall-0.10/rpc.rwalld/rwalld.c.ewt Tue Oct 28 11:54:11 1997
-+++ netkit-rwall-0.10/rpc.rwalld/rwalld.c Tue Oct 28 11:54:18 1997
-@@ -59,7 +59,7 @@
- #ifdef OSF
- #define WALL_CMD "/usr/sbin/wall"
- #else
--#define WALL_CMD "/usr/bin/wall -n"
-+#define WALL_CMD "/usr/bin/wall"
- #endif
-
- void wallprog_1(struct svc_req *rqstp, SVCXPRT *transp);
diff --git a/rwall.spec b/rwall.spec
deleted file mode 100644
index 4ca4ffb..0000000
--- a/rwall.spec
+++ /dev/null
@@ -1,380 +0,0 @@
-Summary: Client for sending messages to a host's logged in users
-Name: rwall
-Version: 0.17
-Release: 71%{?dist}
-License: BSD-3-Clause AND BSD-4-Clause-UC
-Url: ftp://ftp.linux.org.uk/pub/linux/Networking/netkit/
-Source: ftp://ftp.linux.org.uk/pub/linux/Networking/netkit/netkit-rwall-%{version}.tar.gz
-Source1: rwalld.service
-Patch1: netkit-rwalld-0.10-banner.patch
-Patch2: netkit-rwall-0.17-strip.patch
-Patch3: netkit-rwall-0.17-netgroup.patch
-Patch4: netkit-rwall-0.17-droppriv.patch
-BuildRequires: make
-BuildRequires: gcc
-BuildRequires: perl-interpreter
-BuildRequires: libtirpc-devel
-BuildRequires: libnsl2-devel
-BuildRequires: rpcgen
-
-%description
-The rwall command sends a message to all of the users logged into a
-specified host. Actually, your machine's rwall client sends the
-message to the rwall daemon running on the specified host, and the
-rwall daemon relays the message to all of the users logged in to that
-host.
-
-Install rwall if you'd like the ability to send messages to users
-logged in to a specified host machine.
-
-%package server
-Summary: Server for sending messages to a host's logged in users
-Requires(post): systemd-units
-Requires(preun): systemd-units
-Requires(postun): systemd-units
-Requires: portmap
-BuildRequires: systemd-units
-
-%description server
-The rwall command sends a message to all of the users logged into
-a specified host. The rwall-server package contains the daemon for
-receiving such messages, and is disabled by default on Red Hat Linux
-systems (it can be very annoying to keep getting all those messages
-when you're trying to play Quake--I mean, trying to get some work done).
-
-Install rwall-server if you'd like the ability to receive messages
-from users on remote hosts.
-
-%prep
-%setup -q -n netkit-rwall-%{version}
-%patch -P1 -p1 -b .banner
-%patch -P2 -p1 -b .strip
-%patch -P3 -p1 -b .netgroup
-%patch -P4 -p1 -b .droppriv
-
-%{__perl} -pi -e '
- s|^LDFLAGS=|LDFLAGS="-pie -Wl,-z,relro,-z,now -ltirpc"|;
- s,^BINDIR=.*$,BINDIR=%{_bindir},;
- s,^MANDIR=.*$,MANDIR=%{_mandir},;
- s,^SBINDIR=.*$,SBINDIR=%{_sbindir},;
- ' configure
-
-%build
-export CFLAGS="$CFLAGS -I/usr/include/tirpc"
-%ifarch s390 s390x
-CFLAGS="$CFLAGS $RPM_OPT_FLAGS -fPIC" \
-%else
-CFLAGS="$CFLAGS $RPM_OPT_FLAGS -fpic" \
-%endif
-sh configure --with-c-compiler=gcc
-make RPM_OPT_FLAGS="$RPM_OPT_FLAGS" %{?_smp_mflags}
-
-%install
-mkdir -p ${RPM_BUILD_ROOT}%{_bindir}
-mkdir -p ${RPM_BUILD_ROOT}%{_sbindir}
-mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man{1,8}
-mkdir -p ${RPM_BUILD_ROOT}%{_unitdir}/
-
-make INSTALLROOT=${RPM_BUILD_ROOT} install
-
-install -m 755 %{SOURCE1} ${RPM_BUILD_ROOT}%{_unitdir}/
-
-%post server
-%systemd_post rwalld.service
-
-%preun server
-%systemd_preun rwalld.service
-
-%postun server
-%systemd_postun_with_restart rwalld.service
-
-%files
-%{_bindir}/rwall
-%{_mandir}/man1/rwall.1*
-
-%files server
-%{_sbindir}/rpc.rwalld
-%{_mandir}/man8/rpc.rwalld.8*
-%{_mandir}/man8/rwalld.8*
-%{_unitdir}/*
-
-%changelog
-* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-71
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
-
-* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-70
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
-
-* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-69
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
-
-* Wed Sep 04 2024 Miroslav Suchý <msuchy@redhat.com> - 0.17-68
-- convert license to SPDX
-
-* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-67
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
-
-* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-66
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
-
-* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-65
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
-
-* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-64
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
-
-* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-63
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
-
-* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-62
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
-
-* Fri Nov 12 2021 Björn Esser <besser82@fedoraproject.org> - 0.17-61
-- Rebuild(libnsl2)
-
-* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-60
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
-
-* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.17-59
-- 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-58
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
-
-* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-57
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
-
-* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-56
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
-
-* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-55
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
-
-* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-54
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
-
-* Tue Jul 24 2018 Petr Kubat <pkubat@redhat.com> - 0.17-53
-- Add BuildRequires for gcc (#1606285)
-
-* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-52
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
-
-* Tue Mar 27 2018 Petr Kubat <pkubat@redhat.com> - 0.17-51
-- Remove explicit requires
-
-* Thu Mar 15 2018 Petr Kubat <pkubat@redhat.com> - 0.17-50
-- Add dependencies on libtirpc, libnsl2 and rpcgen (#1556427)
- Related to: https://fedoraproject.org/wiki/Changes/SunRPCRemoval
-
-* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-49
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
-
-* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-48
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
-
-* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-47
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
-
-* Mon Feb 13 2017 Petr Kubat <pkubat@redhat.com> - 0.17-46
-- Add BuildRequires for perl
-
-* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-46
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
-
-* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.17-45
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
-
-* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-44
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
-
-* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-43
-- 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-42
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
-
-* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-41
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
-
-* Fri May 24 2013 Honza Horak <hhorak@redhat.com> - 0.17-40
-- Remove syslog.target from unit file
-
-* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-39
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
-
-* Fri Nov 30 2012 Honza Horak <hhorak@redhat.com> - 0.17-38
-- Build the daemon with full relro
-
-* Thu Oct 04 2012 Honza Horak <hhorak@redhat.com> - 0.17-37
-- Run %%triggerun regardless of systemd_post variable definition
-
-* Tue Sep 11 2012 Honza Horak <hhorak@redhat.com> - 0.17-36
-- added ordering dependencies to rpcbind
-- Minor spec file changes
-- Use new systemd macros (Resolves: #850303)
-
-* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-35
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
-
-* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-34
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
-
-* Mon Aug 01 2011 Honza Horak <hhorak@redhat.com> - 0.17-33
-- added systemd native unit file
-
-* Mon Aug 01 2011 Honza Horak <hhorak@redhat.com> - 0.17-32
-- moved privileges drop after port reservation to handle
- a bug similar to #247985
-- fixed rpmlint errors
-
-* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-31
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
-
-* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-30
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
-
-* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-29
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
-
-* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.17-28
-- Autorebuild for GCC 4.3
-
-* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 0.17-27
-- Rebuild for selinux ppc32 issue.
-
-* Mon Jul 23 2007 Jiri Moskovcak <jmoskovc@redhat.com> - 0.17-26
-- init script rewrite to comply with the LSB standard
-- Resolves: #247048
-
-* 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
-
-* Wed Mar 02 2005 Phil Knirsch <pknirsch@redhat.com> 0.17-25
-- bump release and rebuild with gcc 4
-
-* Fri Feb 18 2005 Phil Knirsch <pknirsch@redhat.com> 0.17-24
-- rebuilt
-
-* Thu Sep 02 2004 Phil Knirsch <pknirsch@redhat.com> 0.17-22
-- Add netgroup feature (#62868)
-- Fix garbage character at end of output (#62868)
-
-* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com> 0.17-21
-- rebuilt
-
-* Wed May 12 2004 Phil Knirsch <pknirsch@redhat.com> 0.17-20
-- Enabled PIE for server and application.
-- Switch from Copyright to License.
-
-* 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-16
-- 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-14
-- 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 Florian La Roche <Florian.LaRoche@redhat.de>
-- also set $prog to rwalld to get it working
-
-* Tue Feb 13 2001 Florian La Roche <Florian.LaRoche@redhat.de>
-- use $prog instead of $0 for nicer output
-
-* Thu Feb 8 2001 Preston Brown <pbrown@redhat.com>
-- fix up init script to use $0 for i18n reasons (#26566).
-
-* Mon Feb 5 2001 Bernhard Rosenkraenzer <bero@redhat.com>
-- i18nize init script (#26081)
-
-* 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.
-
-* Fri Feb 11 2000 Bill Nottingham <notting@redhat.com>
-- fix description
-
-* Mon Feb 7 2000 Jeff Johnson <jbj@redhat.com>
-- compress man pages.
-
-* Sat Feb 5 2000 Florian La Roche <Florian.LaRoche@redhat.com>
-- change %%postun to %%preun
-
-* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
-- fix descriptions and summary
-- man pages are compressed
-
-* Mon Jan 4 2000 Bill Nottingham <notting@redhat.com>
-- split client and server
-
-* Tue Dec 21 1999 Jeff Johnson <jbj@redhat.com>
-- update to 0.16.
-
-* Mon Aug 16 1999 Bill Nottingham <notting@redhat.com>
-- initscript munging
-
-* 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 initscript
-
-* Tue Oct 28 1997 Erik Troan <ewt@redhat.com>
-- fixed init script (didn't include function library)
-- doesn't invoke wall with -n anymore
-
-* Sun Oct 19 1997 Erik Troan <ewt@redhat.com>
-- added a chkconfig compatible initscript
-- added %%attr attributes
-
-* Tue Jul 15 1997 Erik Troan <ewt@redhat.com>
-- initial build
diff --git a/rwalld.service b/rwalld.service
deleted file mode 100644
index ec035bd..0000000
--- a/rwalld.service
+++ /dev/null
@@ -1,13 +0,0 @@
-[Unit]
-Description=Write Messages to Users Currently Logged in Server
-Requires=network.target rpcbind.service
-After=syslog.target network.target rpcbind.service
-
-[Service]
-Type=simple
-ExecStart=/usr/sbin/rpc.rwalld -n
-StandardError=syslog
-
-[Install]
-WantedBy=multi-user.target
-
diff --git a/sources b/sources
deleted file mode 100644
index b177b3d..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-c7a85262fc9911e0574ce5706ce69369 netkit-rwall-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=178190125187.1.13094786903239362360.rpms-rwall-87c1e6b7dba5@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