pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/x11/rxvt-unicode rxvt-unicode: Update to 9.26



details:   https://anonhg.NetBSD.org/pkgsrc/rev/e5f20ade37d3
branches:  trunk
changeset: 453326:e5f20ade37d3
user:      triaxx <triaxx%pkgsrc.org@localhost>
date:      Fri May 28 05:24:10 2021 +0000

description:
rxvt-unicode: Update to 9.26

upstream changes:
-----------------
9.26 Fri May 14 19:14:14 CEST 2021
        - ev_iouring.c was wrongly required during compilation, and wrongly
          not packaged.

9.25 Fri May 14 15:51:36 CEST 2021
        - for the 17.5th anniversary, and because many distributions seem to
          remove rxvt in favour of urxvt, this release resurrects rclock as
          urclock.
        - add support for systemd socket-based activation - debian bug #917105,
          freebsd bug #234276.
        - do not destruct perl on exit anymore: this might fail for a variety of
          reasons, and takes unneccessary time.
        - remove any macros from urxvtperl manpage(s), should fix debian
          bug 858385.
        - the old bg image resources are now provided by the background
          extension, and perl is thus required for bg image support. No
          configuration change is needed: urxvt autoloads the background
          ext if any bg image resource/option is present (for OSC sequences to
          work you need to enable it explicity). The old bg image
          resources are also now deprecated; users are encouraged to
          switch to the new bg image interface (see man urxvt-background).
        - confirm-paste now checks for any ctlchars, not just newlines.
        - searchable scrollback will now ignore bracketed paste mode sequences
          (prompted by Daniel Gröber's patch).
        - drop ISO 2022 locale support. ISO 2022 encodings are not supported in
          POSIX locales and clash with vt100 charset emulation (the luit
          program can be used as a substitute).
        - perl didn't parse rgba colours specified as an array correctly,
          only allowing 0 and 100% intensity for each component (this affected
          fill and tint).
        - when iterating over resources, urxvt will now try to properly handle
          multipart resources (such as "*background.expr"), for the benefit
          of autoloading perl extensions.
        - ESC G (query rxvt graphics mode) has been disabled due to security
          implications. The rxvt graphics mode was removed in rxvt-unicode 1.5,
          and no programs relying on being able to query the mode are known.
        - work around API change breakage in perl 5.28, based on a patch by
          Roman Bogorodskiy.
        - improved security: rob nation's (obsolete) graphics mode queries
          no longer reply with linefeed in secure/default mode.
        - ISO 8613-3 direct colour SGR sequences (patch by Fengguang Wu).
        - xterm focus reporting mode (patch by Daniel Hahler).
        - xterm SGR mouse mode.
        - implement DECRQM. Patch by Přemysl Eric Janouch.
        - add missing color index parameter to OSC 4 response. Patch
          by Přemysl Eric Janouch.
        - in some window managers, if smart resize was enabled, urxvt
          erroneously moved the window on font change - awesome bug
          #532, arch linux bug ##34807 (patch by Uli Schlachter).
        - fix urxvtd crash when using a background expression.
        - properly restore colors when using fading and reverse video
          is enabled while urxvt is focused and then disabled while it
          is not focused, or vice versa (patch by Daniel Hahler).
        - fix high memory usage when an extension repeatedly hides and
          shows an overlay (reported by Marcel Lautenbach).
        - expose priv_modes member and constants to perl extensions
          (patch by Rastislav Barlik).
        - fix a whole slew of const sillyness, unfortunately forced upon
          us by ISO C++.
        - update to libecb 0x00010006.
        - disable all thread support in ecb.h as we presumably don't need it.
        - slightly improve Makefile source dependencies.
        - work around bugs in newer Pod::Xhtml versions (flags incorrect formatting codes
          in xhtml/html sections but does not interpret correct ones).

diffstat:

 x11/rxvt-unicode/Makefile                |   5 ++---
 x11/rxvt-unicode/PLIST                   |   3 ++-
 x11/rxvt-unicode/distinfo                |  12 ++++++------
 x11/rxvt-unicode/patches/patch-configure |  21 +++++++++++----------
 4 files changed, 21 insertions(+), 20 deletions(-)

diffs (94 lines):

diff -r acd133c994f8 -r e5f20ade37d3 x11/rxvt-unicode/Makefile
--- a/x11/rxvt-unicode/Makefile Fri May 28 04:29:31 2021 +0000
+++ b/x11/rxvt-unicode/Makefile Fri May 28 05:24:10 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.64 2021/05/24 19:56:05 wiz Exp $
+# $NetBSD: Makefile,v 1.65 2021/05/28 05:24:10 triaxx Exp $
 
-DISTNAME=      rxvt-unicode-9.22
-PKGREVISION=   8
+DISTNAME=      rxvt-unicode-9.26
 CATEGORIES=    x11
 MASTER_SITES=  http://dist.schmorp.de/rxvt-unicode/
 MASTER_SITES+= http://dist.schmorp.de/rxvt-unicode/Attic/
diff -r acd133c994f8 -r e5f20ade37d3 x11/rxvt-unicode/PLIST
--- a/x11/rxvt-unicode/PLIST    Fri May 28 04:29:31 2021 +0000
+++ b/x11/rxvt-unicode/PLIST    Fri May 28 05:24:10 2021 +0000
@@ -1,4 +1,5 @@
-@comment $NetBSD: PLIST,v 1.14 2015/01/05 22:44:17 morr Exp $
+@comment $NetBSD: PLIST,v 1.15 2021/05/28 05:24:10 triaxx Exp $
+bin/urclock
 bin/urxvt
 bin/urxvtc
 bin/urxvtd
diff -r acd133c994f8 -r e5f20ade37d3 x11/rxvt-unicode/distinfo
--- a/x11/rxvt-unicode/distinfo Fri May 28 04:29:31 2021 +0000
+++ b/x11/rxvt-unicode/distinfo Fri May 28 05:24:10 2021 +0000
@@ -1,10 +1,10 @@
-$NetBSD: distinfo,v 1.29 2020/04/17 08:43:46 jperkin Exp $
+$NetBSD: distinfo,v 1.30 2021/05/28 05:24:10 triaxx Exp $
 
-SHA1 (rxvt-unicode-9.22.tar.bz2) = e575b869782fbfed955f84f48b204ec888d91ba1
-RMD160 (rxvt-unicode-9.22.tar.bz2) = 83e315f513500c2bf1f31cd4fd3854b508bc8d22
-SHA512 (rxvt-unicode-9.22.tar.bz2) = b39f1b2cbe6dd3fbd2a0ad6a9d391a2b6f49d7c5e67bc65fe44a9c86937f8db379572c67564c6e21ff6e09b447cdfd4e540544e486179e94da0e0db679c04dd9
-Size (rxvt-unicode-9.22.tar.bz2) = 931198 bytes
+SHA1 (rxvt-unicode-9.26.tar.bz2) = d325d8cdea6bcb8e0b8b219b8451bf5c690b6c62
+RMD160 (rxvt-unicode-9.26.tar.bz2) = ce20bcda75cadd4a22edf166ce50384080de1b23
+SHA512 (rxvt-unicode-9.26.tar.bz2) = 35560b57730e17c9542ea4a615fd86ce703c4e6421323e8fe1570007737a880fde90d17943e5af9e170be4111b9769f4aa7e57efca5428421fdc1c299112f8e0
+Size (rxvt-unicode-9.26.tar.bz2) = 904950 bytes
 SHA1 (patch-Makefile.in) = 1c2890e2057d062f823f944fc2ecd2258f14b61e
-SHA1 (patch-configure) = 8b8c95ea8e39efc2fa35188798d5d3ac53e3abc1
+SHA1 (patch-configure) = bd752ba5e7faae11808e7c6e0c6145771d7b3803
 SHA1 (patch-doc_Makefile.in) = 8465193e21878a18ae467dc50a336a65f1bd4de7
 SHA1 (patch-libptytty_src_logging.C) = 583d2012cd3061ef88fa7867674a9c75bca2c88f
diff -r acd133c994f8 -r e5f20ade37d3 x11/rxvt-unicode/patches/patch-configure
--- a/x11/rxvt-unicode/patches/patch-configure  Fri May 28 04:29:31 2021 +0000
+++ b/x11/rxvt-unicode/patches/patch-configure  Fri May 28 05:24:10 2021 +0000
@@ -1,10 +1,10 @@
-$NetBSD: patch-configure,v 1.5 2015/01/05 22:44:17 morr Exp $
+$NetBSD: patch-configure,v 1.6 2021/05/28 05:24:10 triaxx Exp $
 
 Don't use predefined CXXFLAGS.
 
---- configure.orig     2013-10-27 16:20:10.000000000 +0000
+--- configure.orig     2021-05-14 13:50:48.000000000 +0000
 +++ configure
-@@ -4474,32 +4474,6 @@ fi
+@@ -4925,33 +4925,6 @@ fi
  LINKER=$LINKER
  
  
@@ -15,25 +15,26 @@
 -/* end confdefs.h.  */
 -
 -int
--main ()
+-main (void)
 -{
 -
 -  ;
 -  return 0;
 -}
 -_ACEOF
--if ac_fn_cxx_try_compile "$LINENO"; then :
+-if ac_fn_cxx_try_compile "$LINENO"
+-then :
 -
--else
+-else $as_nop
 -  CXXFLAGS="-g -O3"
 -fi
--rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+-rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
 -  else
 -    CXXFLAGS="-O"
 -  fi
 -  CFLAGS="$CXXFLAGS"
 -fi
 -
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing setlocale" >&5
- $as_echo_n "checking for library containing setlocale... " >&6; }
- if ${ac_cv_search_setlocale+:} false; then :
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing setlocale" >&5
+ printf %s "checking for library containing setlocale... " >&6; }
+ if test ${ac_cv_search_setlocale+y}


Home | Main Index | Thread Index | Old Index