Hello community,

here is the log from the commit of package blender for openSUSE:Factory checked 
in at 2018-08-31 10:44:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/blender (Old)
 and      /work/SRC/openSUSE:Factory/.blender.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "blender"

Fri Aug 31 10:44:54 2018 rev:108 rq:632088 version:2.79b

Changes:
--------
--- /work/SRC/openSUSE:Factory/blender/blender.changes  2018-08-28 
09:25:15.700981054 +0200
+++ /work/SRC/openSUSE:Factory/.blender.new/blender.changes     2018-08-31 
10:45:02.635245699 +0200
@@ -1,0 +2,8 @@
+Tue Aug 28 19:34:03 UTC 2018 - jeng...@inai.de
+
+- Put back %_smp_mflags ahead of %_jobs so that "-l" arguments
+  from smp_mflags are preserved.
+- Remove silly "break" inside "if..then"
+- Use xargs right
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ blender.spec ++++++
--- /var/tmp/diff_new_pack.VaquId/_old  2018-08-31 10:45:03.947247278 +0200
+++ /var/tmp/diff_new_pack.VaquId/_new  2018-08-31 10:45:03.951247283 +0200
@@ -296,7 +296,7 @@
         echo "${jobs_max}"; \\\
     fi; )
 
-make -j%{?_jobs}
+make %{?_smp_mflags} -j%{?_jobs}
 popd
 
 %install
@@ -309,10 +309,8 @@
 rm -rf %{buildroot}%{_datadir}/%{name}/%{_version}/datafiles/fonts
 rm -f %{buildroot}%{_datadir}/%{name}/%{_version}/scripts/addons/.gitignore
 # Fix any .py files with shebangs and wrong permissions.
-if test -z `find %{buildroot} -name *.py -perm 0644 -print0|xargs -0r grep -l 
'#!'`; \
-then break;
-else chmod -f 0755 `find %{buildroot} -name *.py -perm 0644 -print0|xargs -0r 
grep -l '#!'`; \
-fi
+find %{buildroot} -name "*.py" -perm 0644 -print0 | \
+       xargs -0r grep -l '#!' | xargs -d'\n' chmod -f 0755;
 # Copy text files to correct place.
 mkdir -p %{buildroot}%{_docdir}/%{name}
 cp -v    %{buildroot}%{_datadir}/doc/blender/* %{buildroot}%{_docdir}/%{name}/
@@ -329,10 +327,8 @@
 find %{buildroot} -empty -print -delete
 chmod -f 0644 
%{buildroot}%{_datadir}/%{name}/%{_version}/scripts/modules/console_python.py
 
-if test -z `find %{buildroot}%{_docdir}/%{name} -name *.py -perm 0755 
-print0|xargs -0r grep -l '#!'`; \
-then break;
-else chmod -f 0644 `find %{buildroot}%{_docdir}/%{name} -name *.py -perm 0755 
-print0|xargs -0r grep -l '#!'`; \
-fi
+find %{buildroot}%{_docdir}/%{name} -name "*.py" -perm 0755 -print0 | \
+       xargs -0r grep -l '#!' | xargs -d'\n' -r chmod -f 0644
 %fdupes %{buildroot}%{_datadir}/%{name}/%{_version}/
 %find_lang %{name} %{?no_lang_C}
 rm -rf %{buildroot}%{_datadir}/locale/languages



Reply via email to