Hello, Please note that this comment was generated automatically. If you feel that this output has mistakes, please contact me via email (mhroncok). Your package (imath) Fails To Install in Fedora 35: can't install python3-imath: - nothing provides libboost_python39.so.1.75.0()(64bit) needed by python3-imath-3.0.2-3.fc35.x86_64 - nothing provides python(abi) = 3.9 needed by python3-imath-3.0.2-3.fc35.x86_64 If you know about this problem and are planning on fixing it, please acknowledge so by setting the bug status to ASSIGNED. If you don't have time to maintain this package, consider orphaning it, so maintainers of dependent packages realize the problem. If you don't react accordingly to the policy for FTBFS/FTI bugs (https://docs.fedoraproject.org/en-US/fesco/Fails_to_build_from_source_Fails_to_install/), your package may be orphaned in 8+ weeks. P.S. The data was generated solely from koji buildroot, so it might be newer than the latest compose or the content on mirrors. P.P.S. If this bug has been reported in the middle of upgrading multiple dependent packages, please consider using side tags: https://docs.fedoraproject.org/en-US/fesco/Updates_Policy/#updating-inter-dependent-packages Thanks!
This bugzilla is likely a fallout from the Python 3.10 rebuild. If your package (or some of the dependencies it has) failed to rebuild during the Python 3.10 rebuild, they now fail to install. To fix this, packages need to be rebuilt in Rawhide. We will slowly triage the bugzillas, but we'd appreciate your help. If you know this is blocked by an existing reported build failure or another package not yet rebuilt with Python 3.10, please mark it as such by using the "Depends On"/"Blocks" bugzilla fields. That will help us determine what failures to prioritize. Thank you and sorry for the inconvenience. Let me know if you need any help.
This one is pretty straightforward. The python version is in the library names as "3_9". Is there a python macro that can automate this?
I tried borrowing from "rpm --showrc" but rpmbuild seems to choke on it: %global pyver_under %(%{python3} -Esc "import sys; sys.stdout.write('{0.major}_{0.minor}'.format(sys.version_info))")
choke how?
$ rpmbuild -bs imath.spec error: line 81: unclosed macro or bad line continuation $ rpm --eval "%(%{python3} -Esc "import sys; sys.stdout.write('{0.major}_{0.minor}'.format(sys.version_info))")" -bash: syntax error near unexpected token `'{0.major}_{0.minor}'.format'
The second one appears to be shell quotes problem. I have: $ git diff diff --git a/imath.spec b/imath.spec index 9c7c133..365bd1c 100644 --- a/imath.spec +++ b/imath.spec @@ -1,5 +1,6 @@ %global srcname Imath %global sover 28 +%global pyver_under %(%{python3} -Esc "import sys; sys.stdout.write('{0.major}_{0.minor}'.format(sys.version_info))") Name: imath Version: 3.0.2 @@ -77,7 +78,7 @@ rm -rf html/.{doctrees,buildinfo} %{_libdir}/libImath-3_0.so.%{sover}* %files -n python3-%{name} -%{_libdir}/libPyImath_Python3_9-3_0.so.%{sover}* +%{_libdir}/libPyImath_Python%{pyver_under}-3_0.so.%{sover}* %{python3_sitearch}/imath.so %{python3_sitearch}/imathnumpy.so @@ -89,7 +90,7 @@ rm -rf html/.{doctrees,buildinfo} %{_libdir}/cmake/Imath/ %{_libdir}/libImath.so %{_libdir}/libImath-3_0.so -%{_libdir}/libPyImath_Python3_9-3_0.so +%{_libdir}/libPyImath_Python%{pyver_under}-3_0.so %changelog https://koji.fedoraproject.org/koji/taskinfo?taskID=69582773
Hah... some ")" worked into the substitution in %files instead of "}". That'll bite you every time.
Hello, Please note that this comment was generated automatically. If you feel that this output has mistakes, please contact me via email (mhroncok). All subpackages of a package against which this bug was filled are now installable or removed from Fedora 35. Thanks for taking care of it!