]> git.pld-linux.org Git - packages/procps.git/commitdiff
- orphaned, outdated
authorJan Rękorajski <baggins@pld-linux.org>
Fri, 21 Apr 2006 23:41:24 +0000 (23:41 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    procps-desktop.patch -> 1.2
    procps-install.patch -> 1.9
    procps-ksyms.patch -> 1.2
    procps-man.patch -> 1.2
    procps-sig.patch -> 1.3
    procps-w2.patch -> 1.3

procps-desktop.patch [deleted file]
procps-install.patch [deleted file]
procps-ksyms.patch [deleted file]
procps-man.patch [deleted file]
procps-sig.patch [deleted file]
procps-w2.patch [deleted file]

diff --git a/procps-desktop.patch b/procps-desktop.patch
deleted file mode 100644 (file)
index 3928188..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
---- procps-2.0.10/top.desktop.orig     Fri Oct 25 23:28:14 2002
-+++ procps-2.0.10/top.desktop  Fri Oct 25 23:29:50 2002
-@@ -2,5 +2,7 @@
- Name=Top
- Type=Application
- Comment=Repeatedly display processes by CPU time, memory usage, etc.
-+Comment[pl]=Wyświetlanie aktualnego stanu procesów wg użycia CPU, pamięci itd.
- Exec=top
- Terminal=true
-+# vi: encoding=utf-8
diff --git a/procps-install.patch b/procps-install.patch
deleted file mode 100644 (file)
index f6fcd14..0000000
+++ /dev/null
@@ -1,137 +0,0 @@
-diff -Nur procps-2.0.7.orig/Makefile procps-2.0.7/Makefile
---- procps-2.0.7.orig/Makefile Thu Jul 13 22:22:58 2000
-+++ procps-2.0.7/Makefile      Mon Aug 26 22:25:26 2002
-@@ -5,17 +5,17 @@
- export DESTDIR    =
- export MANDIR     =  /usr/share/man
--export MAN1DIR    =  $(DESTDIR)$(MANDIR)/man1
--export MAN5DIR    =  $(DESTDIR)$(MANDIR)/man5
--export MAN8DIR    =  $(DESTDIR)$(MANDIR)/man8
--export BINDIR     =  $(DESTDIR)/bin
--export SBINDIR    =  $(DESTDIR)/sbin
--export XBINDIR    =  $(DESTDIR)/usr/X11R6/bin
--export USRBINDIR  =  $(DESTDIR)/usr/bin
--export PROCDIR    =  $(DESTDIR)/usr/bin# /usr/proc/bin for Solaris devotees
--export APPLNK     =  $(DESTDIR)/etc/X11/applnk/Utilities
--export OWNERGROUP =  --owner 0 --group 0
--export INSTALLBIN =  install --mode a=rx --strip
-+export MAN1DIR    =  $(MANDIR)/man1
-+export MAN5DIR    =  $(MANDIR)/man5
-+export MAN8DIR    =  $(MANDIR)/man8
-+export BINDIR     =  /bin
-+export SBINDIR    =  /sbin
-+export XBINDIR    =  /usr/X11R6/bin
-+export USRBINDIR  =  /usr/bin
-+export PROCDIR    =  /usr/bin# /usr/proc/bin for Solaris devotees
-+export APPLNK     =  /etc/X11/applnk/Utilities
-+export OWNERGROUP =
-+export INSTALLBIN =  install --mode a=rx
- export INSTALLSCT =  install --mode a=rx
- export INSTALLMAN =  install --mode a=r
-@@ -38,7 +38,7 @@
- export OPT        =  -O3
- export CFLAGS     =  -D_GNU_SOURCE $(OPT) $(GCC_WARN) -I$(shell pwd) $(INCDIRS)
- export SHARED     =  1# build/install both a static and ELF shared library
--export SHLIBDIR   =  $(DESTDIR)/lib# where to install the shared library
-+export SHLIBDIR   =  /lib# where to install the shared library
- export LDFLAGS    =  -Wl,-warn-common #-s     recommended for ELF systems
- #LDFLAGS    =  -qmagic -s#            recommended for a.out systems
- #LDFLAGS    =  -Xlinker -qmagic -s#   older a.out systems may need this
-@@ -71,7 +71,8 @@
- # INSTALL PROGRAMS + DOCS
- install: $(patsubst %,install_%,$(BUILD) $(XSCPT) $(MAN1) $(MAN5) $(MAN8))
- ifeq ($(SHARED),1)
--      install $(OWNERGROUP) --mode a=rx $(LIB_TGT) $(SHLIBDIR)
-+      install -d $(DESTDIR)$(SHLIBDIR)
-+      install $(OWNERGROUP) --mode a=rx $(LIB_TGT) $(DESTDIR)$(SHLIBDIR)
- endif
- # INSTALL LIBRARIES + HEADERS (OPTIONAL)
-@@ -175,31 +176,31 @@
- # static pattern installation rules
- $(patsubst %,install_%,$(BPROG)): install_%: %
--      $(INSTALLBIN) $< $(BINDIR)/$(PREFIX)$<
-+      $(INSTALLBIN) $< $(DESTDIR)$(BINDIR)/$(PREFIX)$<
- $(patsubst %,install_%,$(SPROG)): install_%: %
--      $(INSTALLBIN) $< $(SBINDIR)/$(PREFIX)$<
-+      $(INSTALLBIN) $< $(DESTDIR)$(SBINDIR)/$(PREFIX)$<
- $(patsubst %,install_%,$(UPROG)): install_%: %
--      $(INSTALLBIN) $< $(USRBINDIR)/$(PREFIX)$<
-+      $(INSTALLBIN) $< $(DESTDIR)$(USRBINDIR)/$(PREFIX)$<
- $(patsubst %,install_%,$(PPROG)): install_%: %
--      $(INSTALLBIN) $< $(PROCDIR)/$(PREFIX)$<
-+      $(INSTALLBIN) $< $(DESTDIR)$(PROCDIR)/$(PREFIX)$<
- $(patsubst %,install_%,$(XSCPT)): install_%: %
--      $(INSTALLSCT) $< $(XBINDIR)/$(PREFIX)$<
-+      $(INSTALLSCT) $< $(DESTDIR)$(XBINDIR)/$(PREFIX)$<
- $(patsubst %,install_%,$(MAN1)) : install_%: %
--      $(INSTALLMAN) $< $(MAN1DIR)/$(PREFIX)$<
-+      $(INSTALLMAN) $< $(DESTDIR)$(MAN1DIR)/$(PREFIX)$<
- $(patsubst %,install_%,$(MAN5)) : install_%: %
--      $(INSTALLMAN) $< $(MAN5DIR)/$(PREFIX)$<
-+      $(INSTALLMAN) $< $(DESTDIR)$(MAN5DIR)/$(PREFIX)$<
- $(patsubst %,install_%,$(MAN8)) : install_%: %
--      $(INSTALLMAN) $< $(MAN8DIR)/$(PREFIX)$<
-+      $(INSTALLMAN) $< $(DESTDIR)$(MAN8DIR)/$(PREFIX)$<
- $(patsubst %,install_%,$(DESKTOP)) : install_%: %
--      $(INSTALLSCT) $< $(APPLNK)/$(PREFIX)$<
-+      $(INSTALLSCT) $< $(DESTDIR)$(APPLNK)/$(PREFIX)$<
- # special case install rules
- install_snice: snice install_skill
--      cd $(USRBINDIR) && ln -f skill snice
-+      cd $(DESTDIR)$(USRBINDIR) && ln -f skill snice
- install_kill: snice install_skill
--      cd $(USRBINDIR) && ln -f skill kill
-+      cd $(DESTDIR)$(USRBINDIR) && ln -f skill kill
- install_pkill: pgrep install_pgrep
--      cd $(USRBINDIR) && ln -f pgrep pkill
-+      cd $(DESTDIR)$(USRBINDIR) && ln -f pgrep pkill
- # Find all the source and object files in this directory
-diff -Nur procps-2.0.7.orig/proc/Makefile procps-2.0.7/proc/Makefile
---- procps-2.0.7.orig/proc/Makefile    Mon Aug 26 21:47:44 2002
-+++ procps-2.0.7/proc/Makefile Mon Aug 26 22:25:18 2002
-@@ -56,13 +56,14 @@
- # INSTALLATION
- install: all
--      if ! [ -d $(HDRDIR) ] ; then mkdir $(HDRDIR) ; fi
--      $(INSTALL) $(HDROWN) $(HDR) $(TOPDIR)/include/$(NAME)
--      $(INSTALL) $(LIBOWN) lib$(NAME).a $(LIBDIR)
-+      if ! [ -d $(DESTDIR)$(HDRDIR) ] ; then install -d $(DESTDIR)$(HDRDIR) ; fi
-+      $(INSTALL) $(HDROWN) $(HDR) $(DESTDIR)$(TOPDIR)/include/$(NAME)
-+      install -d $(DESTDIR)$(LIBDIR)
-+      $(INSTALL) $(LIBOWN) lib$(NAME).a $(DESTDIR)$(LIBDIR)
- ifeq ($(SHARED),1)
--      $(INSTALL) $(LIBOWN) $(SONAME) $(SHLIBDIR)
--      ln -sf $(SHLIBDIR)/$(SONAME) $(SHLIBDIR)/lib$(NAME).so
--      ldconfig
-+      install -d $(DESTDIR)$(SHLIBDIR)
-+      $(INSTALL) $(LIBOWN) $(SONAME) $(DESTDIR)$(SHLIBDIR)
-+      ln -sf $(SHLIBDIR)/$(SONAME) $(DESTDIR)$(LIBDIR)/lib$(NAME).so
- endif
- # VARIOUS SHORT CUT TARGETS
-diff -Nur procps-2.0.7.orig/ps/Makefile procps-2.0.7/ps/Makefile
---- procps-2.0.7.orig/ps/Makefile      Mon Jul 10 19:16:47 2000
-+++ procps-2.0.7/ps/Makefile   Mon Aug 26 22:25:18 2002
-@@ -27,10 +27,11 @@
- install: ps
--      install $(OWNERGROUP) --mode a=rx --strip ps $(BINDIR)/ps
--      install $(OWNERGROUP) --mode a=r ps.1 $(MAN1DIR)/ps.1
-+      install -d $(DESTDIR)$(BINDIR)
-+      install $(OWNERGROUP) --mode a=rx ps $(DESTDIR)$(BINDIR)/ps
-+      install -d $(DESTDIR)$(MAN1DIR)
-+      install $(OWNERGROUP) --mode a=r ps.1 $(DESTDIR)$(MAN1DIR)/ps.1
-       # The following does no harm and on older systems might help
--      rm -f /var/catman/cat1/ps.1.gz /var/man/cat1/ps.1.gz
- clean:
-       rm -f *.o DEADJOE *~ core ps gmon.out
diff --git a/procps-ksyms.patch b/procps-ksyms.patch
deleted file mode 100644 (file)
index 58f3e89..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
---- procps-3.1.4/proc/ksym.c.orig      Sun Dec 15 01:12:55 2002
-+++ procps-3.1.4/proc/ksym.c   Sat Dec 21 15:20:21 2002
-@@ -255,6 +255,7 @@
-     /* FIXME: memory leak */
-     _exit(42);
-   }
-+  buf[total] = '\0'; /* parse_ksyms() expects NUL-terminated file */
-   *bufp = buf;
-   *roomp = room;
-   close(fd);
diff --git a/procps-man.patch b/procps-man.patch
deleted file mode 100644 (file)
index 0a25eaf..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
---- procps-2.0.7/top.1.orig    Thu Oct 24 21:04:36 2002
-+++ procps-2.0.7/top.1 Fri Oct 25 00:40:16 2002
-@@ -398,7 +398,8 @@
- The
- .B SIZE
- and
--.B RSS fields don't count the page tables and the
-+.B RSS
-+fields don't count the page tables and the
- .B task_struct
- of a process; this is at least 12K of memory that is always resident.
- .B SIZE
-@@ -423,7 +424,7 @@
- .BR free (1),
- .BR uptime (1),
- .BR kill (1),
--.BR renice (1).
-+.BR renice (1)
- .
- .SH
- BUGS
-@@ -447,7 +448,7 @@
- specific processes through their ids.
- Helmut Geyer <Helmut.Geyer@iwr.uni-heidelberg.de>
--Heavily changed it to include support for configurable fields and other
-+heavily changed it to include support for configurable fields and other
- new options, and did further cleanup and use of the new readproc interface.
- The "b" and "n" options contributed by George Bonser <george@captech.com> 
-@@ -455,4 +456,4 @@
- Michael K. Johnson <johnsonm@redhat.com> is now the maintainer.
--Please send bug reports to <procps-bugs@redhat.com>
-+Please send bug reports to <procps-bugs@redhat.com>.
---- procps-2.0.7/free.1.orig   Fri Oct 25 00:40:31 2002
-+++ procps-2.0.7/free.1        Fri Oct 25 00:40:31 2002
-@@ -31,12 +31,12 @@
- The \fB\-V\fP displays version information.
- .SH FILES
- .ta
--.IR /proc/meminfo "\-\- memory information"
-+.IR /proc/meminfo " \-\- memory information"
- .fi
- .SH "SEE ALSO"
- .BR ps (1),
--.BR top(1)
-+.BR top (1)
- .SH AUTHORS
- Written by Brian Edmonds. 
diff --git a/procps-sig.patch b/procps-sig.patch
deleted file mode 100644 (file)
index d7e9f42..0000000
+++ /dev/null
@@ -1,161 +0,0 @@
---- procps-2.0.6/proc/Makefile.sig     Tue Nov  2 09:02:16 1999
-+++ procps-2.0.6/proc/Makefile Tue Jan 11 17:42:34 2000
-@@ -101,13 +101,3 @@ ifdef MINORVERSION
- else
-       $(strip $(CC) $(CFLAGS) -DVERSION=\"$(VERSION)\" -DSUBVERSION=\"$(SUBVERSION)\" -c version.c)
- endif
--
--signals.o : signames.h
--
--signames.h ../proc/signames.h : /usr/include/signal.h
--      $(CPP) -dM /usr/include/signal.h |      \
--      grep -v SIGSTKSZ | \
--      tr -s '\t ' '  ' | sort -n +2 | sed             \
--      's:#define SIG\([A-Z]\+[0-9]*\) \([0-9]\+\) *\(\|/\*.*\)$$:{\
--\2,"\1" },:p;d'  > signames.h
--
---- procps-2.0.6/proc/signals.c.sig    Fri Mar 12 02:34:44 1999
-+++ procps-2.0.6/proc/signals.c        Tue Jan 11 17:41:49 2000
-@@ -23,7 +23,141 @@ typedef struct {
- } SIGNAME;
- static SIGNAME signals[] = {
--#include "signames.h"         /* should be in same dir as this file */
-+#ifdef SIGHUP
-+      { SIGHUP, "HUP" },
-+#endif
-+#ifdef SIGINT
-+      { SIGINT, "INT" },
-+#endif
-+#ifdef SIGQUIT
-+      { SIGQUIT, "QUIT" },
-+#endif
-+#ifdef SIGILL
-+      { SIGILL, "ILL" },
-+#endif
-+#ifdef SIGTRAP
-+      { SIGTRAP, "TRAP" },
-+#endif
-+#ifdef SIGABRT
-+      { SIGABRT, "ABRT" },
-+#endif
-+#ifdef SIGIOT
-+      { SIGIOT, "IOT" },
-+#endif
-+#ifdef SIGBUS
-+      { SIGBUS, "BUS" },
-+#endif
-+#ifdef SIGFPE
-+      { SIGFPE, "FPE" },
-+#endif
-+#ifdef SIGKILL
-+      { SIGKILL, "KILL" },
-+#endif
-+#ifdef SIGUSR1
-+      { SIGUSR1, "USR1" },
-+#endif
-+#ifdef SIGSEGV
-+      { SIGSEGV, "SEGV" },
-+#endif
-+#ifdef SIGUSR2
-+      { SIGUSR2, "USR2" },
-+#endif
-+#ifdef SIGPIPE
-+      { SIGPIPE, "PIPE" },
-+#endif
-+#ifdef SIGALRM
-+      { SIGALRM, "ALRM" },
-+#endif
-+#ifdef SIGTERM
-+      { SIGTERM, "TERM" },
-+#endif
-+#ifdef SIGSTKFLT
-+      { SIGSTKFLT, "STKFLT" },
-+#endif
-+#ifdef SIGCHLD
-+      { SIGCHLD, "CHLD" },
-+#endif
-+#ifdef SIGCONT
-+      { SIGCONT, "CONT" },
-+#endif
-+#ifdef SIGSTOP
-+      { SIGSTOP, "STOP" },
-+#endif
-+#ifdef SIGTSTP
-+      { SIGTSTP, "TSTP" },
-+#endif
-+#ifdef SIGTTIN
-+      { SIGTTIN, "TTIN" },
-+#endif
-+#ifdef SIGTOU
-+      { SIGTOU, "TOU" },
-+#endif
-+#ifdef SIGURG
-+      { SIGURG, "URG" },
-+#endif
-+#ifdef SIGXCPU
-+      { SIGXCPU, "XCPU" },
-+#endif
-+#ifdef SIGXFSZ
-+      { SIGXFSZ, "XFSZ" },
-+#endif
-+#ifdef SIGVTALRM
-+      { SIGVTALRM, "VTALRM" },
-+#endif
-+#ifdef SIGPROF
-+      { SIGPROF, "PROF" },
-+#endif
-+#ifdef SIGWINCH
-+      { SIGWINCH, "WINCH" },
-+#endif
-+#ifdef SIGIO
-+      { SIGIO, "IO" },
-+#endif
-+#ifdef SIGPWR
-+      { SIGPWR, "PWR" },
-+#endif
-+#ifdef SIGUNUSED
-+      { SIGUNUSED, "UNUSED" },
-+#endif
-+#ifdef SIGEMT
-+      { SIGEMT, "EMT" },
-+#endif
-+#ifdef SIGSYS
-+      { SIGSYS, "SYS" },
-+#endif
-+#ifdef SIGWIND
-+      { SIGWIND, "WIND" },
-+#endif
-+#ifdef SIGPHONE
-+      { SIGPHONE, "PHONE" },
-+#endif
-+#ifdef SIGLOST
-+      { SIGLOST, "LOST" },
-+#endif
-+#ifdef SIGWAITING
-+      { SIGWAITING, "WAITING" },
-+#endif
-+#ifdef SIGLWP
-+      { SIGLWP, "LWP" },
-+#endif
-+#ifdef SIGDANGER
-+      { SIGDANGER, "DANGER" },
-+#endif
-+#ifdef SIGGRANT
-+      { SIGGRANT, "GRANT" },
-+#endif
-+#ifdef SIGRETRACT
-+      { SIGRETRACT, "RETRACT" },
-+#endif
-+#ifdef SIGMSG
-+      { SIGMSG, "MSG" },
-+#endif
-+#ifdef SIGSOUND
-+      { SIGSOUND, "SOUND" },
-+#endif
-+#ifdef SIGSAK
-+      { SIGSAK, "SAK" },
-+#endif
-       {0, NULL}
- };
diff --git a/procps-w2.patch b/procps-w2.patch
deleted file mode 100644 (file)
index 7fd1a2b..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -ruN procps-2.0.3.orig/w.c procps-2.0.3/w.c
---- procps-2.0.3.orig/w.c      Fri Jul  2 22:17:04 1999
-+++ procps-2.0.3/w.c   Sun Sep 19 11:35:55 1999
-@@ -170,8 +170,10 @@
-        * is a desire a cmdline flag could be added to optionally show it with a
-        * prefix of (stale) in front of cmd or something like that.
-        */
-+      /*
-       if (!ut_pid_found)
-               return;
-+      */
-       strncpy(uname, u->ut_user, USERSZ);             /* force NUL term for printf */
-       if (formtype) {
This page took 0.053914 seconds and 4 git commands to generate.