Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package readline for openSUSE:Factory 
checked in at 2022-01-25 17:35:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/readline (Old)
 and      /work/SRC/openSUSE:Factory/.readline.new.1938 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "readline"

Tue Jan 25 17:35:36 2022 rev:12 rq:947937 version:8.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/readline/readline.changes        2021-05-11 
23:03:25.841157395 +0200
+++ /work/SRC/openSUSE:Factory/.readline.new.1938/readline.changes      
2022-01-25 17:35:37.962515099 +0100
@@ -1,0 +2,8 @@
+Fri Jan 14 12:03:35 UTC 2022 - Dr. Werner Fink <wer...@suse.de>
+
+- Add official patch readline81-002 and its signature
+  * There are some characters (e.g., cyrillic) that can't be displayed using
+    certain single-byte encodings (e.g., cp1251) because the negative signed
+    int is interpreted as EOF and not displayed.
+
+-------------------------------------------------------------------

New:
----
  readline81-002
  readline81-002.sig

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

Other differences:
------------------
++++++ readline.spec ++++++
--- /var/tmp/diff_new_pack.N2v0VY/_old  2022-01-25 17:35:41.458491021 +0100
+++ /var/tmp/diff_new_pack.N2v0VY/_new  2022-01-25 17:35:41.462490994 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package readline
 #
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -31,8 +31,10 @@
 Source4:        https://tiswww.case.edu/php/chet/gpgkey.asc#/%{name}.keyring
 # signatures for official patches
 Source100:      readline81-001.sig
+Source101:      readline81-002.sig
 # official patches
 Patch100:       readline81-001
+Patch101:       readline81-002
 # local patches
 Patch200:       readline-%{version}.dif
 Patch201:       readline-6.3-input.dif
@@ -104,6 +106,7 @@
 %setup -q
 # official patches
 %patch100 -p0
+%patch101 -p0
 # local patches
 %patch201 -p2 -b .zerotty
 %patch202 -p2 -b .conf




++++++ readline81-002 ++++++
                           READLINE PATCH REPORT
                           =====================

Readline-Release: 8.1
Patch-ID: readline81-002

Bug-Reported-by:        Volodymyr Prodan <vov...@gmail.com>
Bug-Reference-ID:
Bug-Reference-URL:      https://savannah.gnu.org/patch/?10076

Bug-Description:

There are some characters (e.g., cyrillic) that can't be displayed using
certain single-byte encodings (e.g., cp1251) because the negative signed
int is interpreted as EOF and not displayed.

Patch (apply with `patch -p0'):

*** ../readline-8.1-patched/display.c   2021-03-16 18:12:20.000000000 -0400
--- display.c   2021-06-07 16:53:08.000000000 -0400
***************
*** 1599,1603 ****
  
    for (cur_face = FACE_NORMAL, i = 0; i < n; i++)
!     putc_face (str[i], face[i], &cur_face);
    putc_face (EOF, FACE_NORMAL, &cur_face);
  }
--- 1599,1603 ----
  
    for (cur_face = FACE_NORMAL, i = 0; i < n; i++)
!     putc_face ((unsigned char) str[i], face[i], &cur_face);
    putc_face (EOF, FACE_NORMAL, &cur_face);
  }

*** ../readline-8.1/patchlevel  2013-11-15 08:11:11.000000000 -0500
--- patchlevel  2014-03-21 08:28:40.000000000 -0400
***************
*** 1,3 ****
  # Do not edit -- exists only for use by patch
  
! 1
--- 1,3 ----
  # Do not edit -- exists only for use by patch
  
! 2

Reply via email to