Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package texlive-specs-w for openSUSE:Factory
checked in at 2022-04-26 20:14:43
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/texlive-specs-w (Old)
and /work/SRC/openSUSE:Factory/.texlive-specs-w.new.1538 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "texlive-specs-w"
Tue Apr 26 20:14:43 2022 rev:48 rq:972677 version:unknown
Changes:
--------
--- /work/SRC/openSUSE:Factory/texlive-specs-w/texlive-specs-w.changes
2022-04-21 15:46:49.260198448 +0200
+++
/work/SRC/openSUSE:Factory/.texlive-specs-w.new.1538/texlive-specs-w.changes
2022-04-26 20:16:27.748665858 +0200
@@ -1,0 +2,13 @@
+Mon Apr 25 08:07:56 UTC 2022 - Dr. Werner Fink <[email protected]>
+
+- Add a _constraints file to increase required disk size (boo#1198793)
+- Avoid doubled luatex/texlua shebangs (boo#1198790)
+- Do not bail out if local ls-R is not writable (boo#1194496)
+
+-------------------------------------------------------------------
+Tue Apr 19 07:11:14 UTC 2022 - Dr. Werner Fink <[email protected]>
+
+- Move luakeys-debug.tex from doc tree into load tree
+- Move dtk-logos.sty from doc tree into load tree
+
+-------------------------------------------------------------------
New:
----
_constraints
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ texlive-specs-w.spec ++++++
--- /var/tmp/diff_new_pack.jORPqq/_old 2022-04-26 20:16:31.828670795 +0200
+++ /var/tmp/diff_new_pack.jORPqq/_new 2022-04-26 20:16:31.876670853 +0200
@@ -19,7 +19,7 @@
%define texlive_version 2022
%define texlive_previous 2021
%define texlive_release 20220321
-%define texlive_noarch 191
+%define texlive_noarch 195
#!BuildIgnore: texlive
#!BuildIgnore: texlive-scripts
@@ -26493,7 +26493,7 @@
ed %{buildroot}/${scr} <<-'EOF'
1
i
- #! /usr/bin/texlua
+ #! /usr/bin/luatex
.
w
q
++++++ _constraints ++++++
<constraints>
<hardware>
<disk>
<size unit="G">6</size>
</disk>
<physicalmemory>
<size unit="G">4</size>
</physicalmemory>
<processors>2</processors>
</hardware>
</constraints>
++++++ texlive-scripts_scripts.dif ++++++
--- /var/tmp/diff_new_pack.jORPqq/_old 2022-04-26 20:16:32.568671691 +0200
+++ /var/tmp/diff_new_pack.jORPqq/_new 2022-04-26 20:16:32.568671691 +0200
@@ -1,10 +1,10 @@
---
texmf-dist/scripts/texlive/fmtutil-sys.sh | 1 +
texmf-dist/scripts/texlive/fmtutil.pl | 20 ++++++++++++++------
- texmf-dist/scripts/texlive/mktexlsr.pl | 2 +-
+ texmf-dist/scripts/texlive/mktexlsr.pl | 9 +++++++--
texmf-dist/scripts/texlive/updmap-sys.sh | 1 +
texmf-dist/scripts/texlive/updmap.pl | 16 ++++++++++------
- 5 files changed, 27 insertions(+), 13 deletions(-)
+ 5 files changed, 33 insertions(+), 14 deletions(-)
--- texmf-dist/scripts/texlive/fmtutil-sys.sh
+++ texmf-dist/scripts/texlive/fmtutil-sys.sh 2018-05-11 10:51:14.298775065
+0000
@@ -71,8 +71,30 @@
# The original script just skipped it but in TeX Live we expect that
# all activated formats are also buildable, thus return failure.
--- texmf-dist/scripts/texlive/mktexlsr.pl
-+++ texmf-dist/scripts/texlive/mktexlsr.pl 2021-12-09 13:52:58.586622149
+0000
-@@ -636,7 +636,7 @@ sub main {
++++ texmf-dist/scripts/texlive/mktexlsr.pl 2022-04-25 10:55:36.506971390
+0000
+@@ -126,6 +126,7 @@ package TeX::LSR;
+ use Cwd;
+ use File::Spec::Functions;
+ use File::Find;
++use File::Basename;
+
+ =pod
+
+@@ -354,8 +355,12 @@ sub write {
+ $self->setup_filename();
+ $fn = catfile($self->{'root'}, $self->{'filename'});
+ }
++ if (! -e $fn && ! -w dirname($fn)) {
++ warn "TeX::LSR: ls-R file does not exists, skipping: $fn\n" if
$opt_verbose;
++ return 0;
++ }
+ if (-e $fn && ! -w $fn) {
+- warn "TeX::LSR: ls-R file not writable, skipping: $fn\n";
++ warn "TeX::LSR: ls-R file not writable, skipping: $fn\n" if $opt_verbose;
+ return 0;
+ }
+ open (LSR, ">$fn") || die "TeX::LSR writable but cannot open??; $!";
+@@ -636,7 +641,7 @@ sub main {
$lsr->write(sort => $opt_sort);
}
} else {