Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-awkward for openSUSE:Factory checked in at 2022-08-24 15:11:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-awkward (Old) and /work/SRC/openSUSE:Factory/.python-awkward.new.2083 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-awkward" Wed Aug 24 15:11:29 2022 rev:10 rq:998940 version:1.8.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-awkward/python-awkward.changes 2022-03-11 11:52:08.667040737 +0100 +++ /work/SRC/openSUSE:Factory/.python-awkward.new.2083/python-awkward.changes 2022-08-24 15:11:52.900546119 +0200 @@ -1,0 +2,5 @@ +Wed Aug 24 03:17:19 UTC 2022 - Steve Kowalik <steven.kowa...@suse.com> + +- Copy the heaers ourselves now that setuptools does not. + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-awkward.spec ++++++ --- /var/tmp/diff_new_pack.JvcBqs/_old 2022-08-24 15:11:53.340546543 +0200 +++ /var/tmp/diff_new_pack.JvcBqs/_new 2022-08-24 15:11:53.344546547 +0200 @@ -89,17 +89,16 @@ # Remove static libs %python_expand find %{buildroot}%{$python_sitearch}/%{modname}/ -name "*.a" -delete -print -mkdir -p %{buildroot}%{_includedir}/awkward -%{python_expand # Move headers to standard include dir for the primary python3 version and delete for the others +%{python_expand # Create a symlink to shared library in _libdir for the C/C++ devel pkg if [ "$python_" = "python3_" -o "%{$python_provides}" = "python3" ]; then -mv %{buildroot}%{$python_sitearch}/%{modname}/include/* %{buildroot}%{_includedir}/awkward/ -# Create a symlink to shared library in _libdir for the C/C++ devel pkg ln -s %{$python_sitearch}/libawkward.so %{buildroot}%{_libdir}/ ln -s %{$python_sitearch}/libawkward-cpu-kernels.so %{buildroot}%{_libdir}/ -else -rm -fr %{buildroot}%{$python_sitearch}/%{modname}/include fi } +# setuptools no longer installs headers, copy them ourselves +# The "build" directory is the result from the primary interpreter +mkdir -p %{buildroot}%{_includedir}/awkward +cp -a build/lib.linux-*/awkward/include %{buildroot}%{_includedir}/awkward %python_expand %fdupes %{buildroot}%{$python_sitearch}