python2-paste-script-3.1.0-2.fc31.noarch fails to install in Fedora rawhide: nothing provides python2-cherrypy needed by python2-paste-script-3.1.0-2.fc31.noarch This is most likely caused by a dependency that was retired. Please drop the dependency, unretire the dependency or remove the package. Thanks
ok i will remove python2-paste-script from rawhide/f31 and keep only python3-paste-script
i feel a bit stupid:-) i have tried to modify the spec file to include the python2 package only in releases <= 30, but i still see the python2 package built https://koji.fedoraproject.org/koji/buildinfo?buildID=1356940 what is the correct syntax for this? https://src.fedoraproject.org/rpms/python-paste-script/blob/master/f/python-paste-script.spec thanks!
%if %{?fedora}%{!?fedora:0} <= 30 || %{?rhel}%{!?rhel:0} <= 8 This translates to (on Fedora 32): 32 <= 30 || 0 <= 8 Or (on RHEL 8): 0 <= 30 || 8 <= 8 I.e. it is always true. If you really need a crazy conditions like that, here's how to do it: %if (0%{?fedora} && (0%{?fedora} <= 30)) || (0%{?rhel} && (0%{?rhel} <= 8))
thanks! i have applied the changes both on Rawhide https://koji.fedoraproject.org/koji/taskinfo?taskID=37149509 and F31 https://koji.fedoraproject.org/koji/taskinfo?taskID=37149816