Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package rxvt-unicode for openSUSE:Factory 
checked in at 2021-06-01 10:35:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rxvt-unicode (Old)
 and      /work/SRC/openSUSE:Factory/.rxvt-unicode.new.1898 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rxvt-unicode"

Tue Jun  1 10:35:27 2021 rev:40 rq:895314 version:9.26

Changes:
--------
--- /work/SRC/openSUSE:Factory/rxvt-unicode/rxvt-unicode.changes        
2021-05-17 18:45:50.292490342 +0200
+++ /work/SRC/openSUSE:Factory/.rxvt-unicode.new.1898/rxvt-unicode.changes      
2021-06-01 10:36:02.928668713 +0200
@@ -1,0 +2,5 @@
+Tue May 25 07:56:46 UTC 2021 - Petr Vorel <pvo...@suse.cz>
+
+- Backport patch from upstream: perl-avoiding-recursive-loading.patch
+
+-------------------------------------------------------------------

New:
----
  perl-avoiding-recursive-loading.patch

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

Other differences:
------------------
++++++ rxvt-unicode.spec ++++++
--- /var/tmp/diff_new_pack.6JrZCZ/_old  2021-06-01 10:36:03.488669667 +0200
+++ /var/tmp/diff_new_pack.6JrZCZ/_new  2021-06-01 10:36:03.492669674 +0200
@@ -40,6 +40,7 @@
 Patch3:         rxvt-unicode-0001-Prefer-XDG_RUNTIME_DIR-over-the-HOME.patch
 Patch4:         rxvt-unicode-hardening.patch
 Patch5:         rxvt-unicode-secondarywheel.patch
+Patch6:         perl-avoiding-recursive-loading.patch
 BuildRequires:  gcc-c++
 BuildRequires:  ncurses-devel
 BuildRequires:  perl

++++++ perl-avoiding-recursive-loading.patch ++++++
>From d95be93135afa8a2dcec1654c61e4d13c8a76687 Mon Sep 17 00:00:00 2001
From: Marc Lehmann <schm...@schmorp.de>
Date: Mon, 24 May 2021 20:21:51 +0000
Subject: [PATCH] *** empty log message ***

>From upstream (after 9.26)
http://lists.schmorp.de/pipermail/rxvt-unicode/2021q2/002610.html
http://cvs.schmorp.de/rxvt-unicode/src/urxvt.pm?r1=1.259&r2=1.260&sortby=date
http://cvs.schmorp.de/rxvt-unicode/Changes?r1=1.1235&r2=1.1236&sortby=date

[ pvorel: fix typo ]
Reviewed-by: Petr Vorel <pvo...@suse.cz>
---
 Changes      | 4 ++++
 src/urxvt.pm | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/Changes b/Changes
index f33d9164..ba0ff63f 100644
--- a/Changes
+++ b/Changes
@@ -44,6 +44,10 @@ TODO: confirm-paste should be the default
 TODO: xterm-osc does not autoload background
 TODO: think about daemon delaying urxvt client exit.
 
+       - allow perl-ext and perl-ext-common to override autoloaded extensions.
+          this allows tabbed to disable itself in subtabs, avoiding recursive
+          loading.
+
 9.26 Fri May 14 19:14:14 CEST 2021
        - ev_iouring.c was wrongly required during compilation, and wrongly
           not packaged.
diff --git a/src/urxvt.pm b/src/urxvt.pm
index ec13b094..4e4c56d9 100644
--- a/src/urxvt.pm
+++ b/src/urxvt.pm
@@ -731,8 +731,8 @@ sub invoke {
       }
 
       for (
+         @{ delete $TERM->{perl_ext_3} },
          (grep $_, map { split /,/, $TERM->resource ("perl_ext_$_") } 1, 2),
-         @{ delete $TERM->{perl_ext_3} }
       ) {
          if ($_ eq "default") {
 
-- 
2.31.1

Reply via email to