Dr. Werner Fink 2017-08-15 12:15:59 +00:00 committed by Git OBS Bridge
parent 1b977deaa4
commit a125e4df8c
2 changed files with 17 additions and 3 deletions

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Tue Aug 15 09:05:59 UTC 2017 - werner@suse.de
- Avoid shell for dealing with perl shebangs (boo#1053707)
-------------------------------------------------------------------
Fri Jul 28 08:21:53 UTC 2017 - werner@suse.de
- Increase version of algorithm2e.sty to fix boo#1051054
... mention added patch "algorithm2e_umlauts.dif"
-------------------------------------------------------------------
Wed Jul 12 07:41:21 UTC 2017 - werner@suse.de

View File

@ -19,7 +19,7 @@
%define texlive_version 2017
%define texlive_previous 2016
%define texlive_release 20170520
%define texlive_noarch 131
%define texlive_noarch 132
#!BuildIgnore: texlive
@ -18662,17 +18662,20 @@ VERBOSE=false %{_texmfdistdir}/texconfig/update || :
%{buildroot}/var/adm/update-scripts/texlive-latex-tds-%{texlive_version}.%{texlive_noarch}.svn40613-%{release}-zypper
tar --use-compress-program=xz -xf %{S:6} -C %{buildroot}%{_datadir}/texlive/texmf-dist
tar --use-compress-program=xz -xf %{S:7} -C %{buildroot}%{_datadir}/texlive/texmf-dist
# Add shebang e.g. correct perl wrapper scripts if any
# Correct wrong perl scripts if any
for scr in %{_texmfdistdir}/source/latex/latex-tds/lib/adjust_checksum.pl \
%{_texmfdistdir}/source/latex/latex-tds/lib/ziptimetree.pl
do
test -e %{buildroot}/$scr || continue
ed %{buildroot}/${scr} <<-'EOF'
1
1,/\sif 0;$/d
1
i
#! /bin/sh
#! /usr/bin/perl
.
w
1,3p
q
EOF
done