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-07-21 19:06:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rxvt-unicode (Old)
 and      /work/SRC/openSUSE:Factory/.rxvt-unicode.new.2632 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rxvt-unicode"

Wed Jul 21 19:06:51 2021 rev:41 rq:907539 version:9.26

Changes:
--------
--- /work/SRC/openSUSE:Factory/rxvt-unicode/rxvt-unicode.changes        
2021-06-01 10:36:02.928668713 +0200
+++ /work/SRC/openSUSE:Factory/.rxvt-unicode.new.2632/rxvt-unicode.changes      
2021-07-21 19:08:10.463478584 +0200
@@ -1,0 +2,8 @@
+Wed Jul 21 14:30:22 UTC 2021 - Marcus Rueckert <mrueck...@suse.de>
+
+- added handle-new-tic-and-dont-install-terminfo.patch:
+  This fixes the build failure on TW. We actually do not care about
+  the generated terminfo file it comes from a different package
+  anyway
+
+-------------------------------------------------------------------

New:
----
  handle-new-tic-and-dont-install-terminfo.patch

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

Other differences:
------------------
++++++ rxvt-unicode.spec ++++++
--- /var/tmp/diff_new_pack.H9cslA/_old  2021-07-21 19:08:10.947479425 +0200
+++ /var/tmp/diff_new_pack.H9cslA/_new  2021-07-21 19:08:10.951479432 +0200
@@ -41,6 +41,7 @@
 Patch4:         rxvt-unicode-hardening.patch
 Patch5:         rxvt-unicode-secondarywheel.patch
 Patch6:         perl-avoiding-recursive-loading.patch
+Patch7:         handle-new-tic-and-dont-install-terminfo.patch
 BuildRequires:  gcc-c++
 BuildRequires:  ncurses-devel
 BuildRequires:  perl
@@ -133,7 +134,7 @@
 install -Dm644 %{SOURCE4} %{buildroot}%{_datadir}/applications/%{name}.desktop
 %suse_update_desktop_file %{name}-256color
 %suse_update_desktop_file %{name}
-rm %{buildroot}/%{_terminfo}/r/%{name}
+rm -f %{buildroot}/%{_terminfo}/r/%{name}
 
 %files
 %license COPYING

++++++ handle-new-tic-and-dont-install-terminfo.patch ++++++
Index: rxvt-unicode-9.26/doc/Makefile.in
===================================================================
--- rxvt-unicode-9.26.orig/doc/Makefile.in
+++ rxvt-unicode-9.26/doc/Makefile.in
@@ -18,6 +18,7 @@ PERL = @PERL@
 INSTALL = @INSTALL@
 INSTALL_PROGRAM = @INSTALL@ -m 755
 INSTALL_DATA = @INSTALL@ -m 644
+TERMINFO_DIR = /usr/share/terminfo/r
 
 srcdir = @srcdir@
 VPATH = @srcdir@
@@ -68,7 +69,7 @@ all:
        sed $(SEDREPLACE) <$< | podselect -section "RXVT-UNICODE\/URXVT 
FREQUENTLY ASKED QUESTIONS" | pod2text >$@
 
 $(srcdir)/etc/rxvt-unicode.termcap: $(srcdir)/etc/rxvt-unicode.terminfo
-       tic -C $< >$@
+       tic -C -r $< >$@
 
 tags allbin:
 
@@ -98,7 +99,8 @@ install: all
        $(INSTALL_DATA) rxvtc.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME)c.$(man1ext)
        $(INSTALL_DATA) rxvtd.1.man $(DESTDIR)$(man1dir)/$(RXVTNAME)d.$(man1ext)
        $(INSTALL_DATA) rxvt.7.man  $(DESTDIR)$(man7dir)/$(RXVTNAME).$(man7ext)
-       @TIC@ $(srcdir)/etc/rxvt-unicode.terminfo
+       # mkdir -p $(DESTDIR)$(TERMINFO_DIR)
+       # @TIC@ -o $(DESTDIR)$(TERMINFO_DIR) $(srcdir)/etc/rxvt-unicode.terminfo
 
 distdepend: alldoc
 

Reply via email to