[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][xorg-team/app/xterm][debian-unstable] 3 commits: Pach wtmp-path.diff has been applied upstream



Title: GitLab

Sven Joachim pushed to branch debian-unstable at X Strike Force / app / xterm

Commits:

  • 7b824e0b
    by Sven Joachim at 2023-10-07T16:59:47+02:00
    Pach wtmp-path.diff has been applied upstream
    
  • aceb659b
    by Sven Joachim at 2023-10-07T17:09:55+02:00
    Apply sixel colors regression fix from xterm 385-b
    
  • d3ebd271
    by Sven Joachim at 2023-10-07T17:21:42+02:00
    Upload to unstable
    

3 changed files:

Changes:

  • debian/changelog
    1
    -xterm (385-1) UNRELEASED; urgency=medium
    
    1
    +xterm (385-1) unstable; urgency=medium
    
    2 2
     
    
    3 3
       * New upstream release.
    
    4 4
       * Use the new configure options --with-utmp-path=/var/run/utmp and
    
    5 5
         --with-wtmp-path=/var/log/wtmp to ensure correct paths to these files
    
    6 6
         in the manpage (Closes: #1042767).
    
    7
    -  * Add temporary patch wtmp-path.diff, fixing a typo in aclocal.m4 which
    
    7
    +  * Apply patch from xterm 385-a, fixing a typo in aclocal.m4 which
    
    8 8
         leads to an incorrect path to the wtmp file in the manpage.
    
    9
    +  * Apply patch from xterm 385-b: fix regression in sixel colors.
    
    9 10
     
    
    10
    - -- Sven Joachim <svenjoac@gmx.de>  Mon, 02 Oct 2023 18:02:34 +0200
    
    11
    + -- Sven Joachim <svenjoac@gmx.de>  Sat, 07 Oct 2023 17:20:35 +0200
    
    11 12
     
    
    12 13
     xterm (384-1) unstable; urgency=medium
    
    13 14
     
    

  • debian/patches/series
    ... ... @@ -2,3 +2,4 @@
    2 2
     902_windowops.diff
    
    3 3
     904_fontops.diff
    
    4 4
     wtmp-path.diff
    
    5
    +sixel.diff

  • debian/patches/sixel.diff
    1
    +Description: Fix regression in SIXEL colors
    
    2
    +Author: Thomas Dickey <dickey@his.com>
    
    3
    +
    
    4
    +---
    
    5
    + graphics.c |    5 ++---
    
    6
    + 1 file changed, 2 insertions(+), 3 deletions(-)
    
    7
    +
    
    8
    +--- a/graphics.c
    
    9
    ++++ b/graphics.c
    
    10
    +@@ -1,4 +1,4 @@
    
    11
    +-/* $XTermId: graphics.c,v 1.128 2023/09/29 23:16:59 tom Exp $ */
    
    12
    ++/* $XTermId: graphics.c,v 1.131 2023/10/06 08:24:24 tom Exp $ */
    
    13
    + 
    
    14
    + /*
    
    15
    +  * Copyright 2013-2022,2023 by Ross Combs
    
    16
    +@@ -627,7 +627,6 @@ init_color_registers(TScreen const *scre
    
    17
    + unsigned
    
    18
    + get_color_register_count(TScreen const *screen)
    
    19
    + {
    
    20
    +-    const int graphics_termid = GraphicsTermId(screen);
    
    21
    +     unsigned num_color_registers;
    
    22
    + 
    
    23
    +     if (screen->numcolorregisters >= 0) {
    
    24
    +@@ -653,7 +652,7 @@ get_color_register_count(TScreen const *
    
    25
    +      * VT382       1 plane (two fixed colors: black and white)  FIXME: verify
    
    26
    +      * dxterm      ?
    
    27
    +      */
    
    28
    +-    switch (graphics_termid) {
    
    29
    ++    switch (screen->graphics_termid) {
    
    30
    +     case 125:
    
    31
    + 	return 4U;
    
    32
    +     case 240:


  • Reply to: