Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package procps for openSUSE:Factory checked 
in at 2022-02-06 23:54:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/procps (Old)
 and      /work/SRC/openSUSE:Factory/.procps.new.1898 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "procps"

Sun Feb  6 23:54:08 2022 rev:125 rq:951540 version:3.3.17

Changes:
--------
--- /work/SRC/openSUSE:Factory/procps/procps.changes    2022-01-29 
21:01:40.938835290 +0100
+++ /work/SRC/openSUSE:Factory/.procps.new.1898/procps.changes  2022-02-06 
23:55:17.934409804 +0100
@@ -1,0 +2,6 @@
+Fri Feb  4 09:21:59 UTC 2022 - Dr. Werner Fink <[email protected]>
+
+- Add patch bsc1195468-23da4f40.patch to fix bsc#1195468 that is
+  ignore SIGURG
+
+-------------------------------------------------------------------

New:
----
  bsc1195468-23da4f40.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ procps.spec ++++++
--- /var/tmp/diff_new_pack.eiOrVC/_old  2022-02-06 23:55:18.610405233 +0100
+++ /var/tmp/diff_new_pack.eiOrVC/_new  2022-02-06 23:55:18.614405206 +0100
@@ -62,6 +62,8 @@
 Patch33:        procps-ng-3.3.11-pmap4suse.patch
 # PATCH-FIX-UPSTREAM -- bsc#1181976
 Patch34:        procps-3.3.17-bsc1181976.patch
+# PATCH-FIX-UPSTREAM -- bsc#1195468
+Patch35:        bsc1195468-23da4f40.patch
 BuildRequires:  automake
 BuildRequires:  dejagnu
 BuildRequires:  diffutils
@@ -142,6 +144,7 @@
 %patch32
 %patch33 -b .pmap4us
 %patch34
+%patch35 -p1
 
 %build
 test -s .tarball-version || echo %{version} > .tarball-version

++++++ bsc1195468-23da4f40.patch ++++++
>From 23da4f40ea27afe998e92ca317f2dcb48a6ffc1f Mon Sep 17 00:00:00 2001
From: Tommi Rantala <[email protected]>
Date: Mon, 11 Oct 2021 13:33:18 +0300
Subject: [PATCH] ps: ignore SIGURG

Stop registering signal handler for SIGURG, to avoid ps failure if
someone sends such signal. Without the signal handler, SIGURG will
just be ignored.

  Signal 23 (URG) caught by ps (3.3.16).
  ps:ps/display.c:66: please report this bug

https://man7.org/linux/man-pages/man7/signal.7.html
https://www.freebsd.org/cgi/man.cgi?sektion=3&query=signal
---
 ps/display.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ps/display.c b/ps/display.c
index 04803c3b..346e21a7 100644
--- a/ps/display.c
+++ b/ps/display.c
@@ -673,6 +673,7 @@ int main(int argc, char *argv[]){
     case SIGKILL:  /* can not catch */
     case SIGSTOP:  /* can not catch */
     case SIGWINCH: /* don't care if window size changes */
+    case SIGURG:   /* Urgent condition on socket (4.2BSD) */
       ;
     }
   } while (0);
-- 
GitLab


++++++ procps-3.3.17-bsc1181976.patch ++++++
--- /var/tmp/diff_new_pack.eiOrVC/_old  2022-02-06 23:55:18.646404989 +0100
+++ /var/tmp/diff_new_pack.eiOrVC/_new  2022-02-06 23:55:18.650404963 +0100
@@ -31,7 +31,7 @@
 | .\"
 | .\" To render this page:
 | .\"    groff -t -b -man -X -P-resolution -P100 -Tps ps.1 &
-@@ -1521,7 +1521,7 @@ priority of the process.  Higher number means lower 
priority.
+@@ -1518,7 +1518,7 @@ priority of the process.  Higher number means lower 
priority.
  T}
  
  psr   PSR     T{

Reply via email to