Note: This is a public test instance of Red Hat Bugzilla. The data contained within is a snapshot of the live data so any changes you make will not be reflected in the production Bugzilla. Email is disabled so feel free to test any aspect of the site that you want. File any problems you find or give feedback at bugzilla.redhat.com.

Bug 1866729

Summary: F33FailsToInstall: python3-sphinx-bootstrap-theme
Product: [Fedora] Fedora Reporter: Igor Raits <igor.raits>
Component: python-sphinx-bootstrap-themeAssignee: Stuart Campbell <stuart>
Status: CLOSED WORKSFORME QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: 33CC: besser82, mattias.ellert, quantum.analyst, stuart
Target Milestone: ---Keywords: Reopened
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: If docs needed, set a value
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2020-08-22 16:00:26 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 1803235, 1868279, 1869919    

Description Igor Raits 2020-08-06 08:25:58 UTC
Hello,

Please note that this comment was generated automatically. If you feel that this output has mistakes, please contact me via email (ignatenkobrain).

Your package (python-sphinx-bootstrap-theme) Fails To Install in Fedora 33:

can't install python3-sphinx-bootstrap-theme:
  - nothing provides js-jquery1 needed by python3-sphinx-bootstrap-theme-0.8.0-4.fc33.noarch
  
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/rawhide-gating/multi-builds/

Thanks!

Comment 1 Ben Cotton 2020-08-11 15:17:52 UTC
This bug appears to have been reported against 'rawhide' during the Fedora 33 development cycle.
Changing version to 33.

Comment 2 Mattias Ellert 2020-08-13 15:44:06 UTC
This not being installable causes FTBFS for other packages.

Comment 3 Stuart Campbell 2020-08-15 02:08:37 UTC
This has arisen due to js-jquery1 also not building.  I have implemented the fix that was done for EPEL8 for f33+.  

https://bodhi.fedoraproject.org/updates/FEDORA-2020-7adf5cddfb

Comment 4 Elliott Sales de Andrade 2020-08-15 02:39:24 UTC
It still Requires js-jquery1, so can't be installed.

Comment 5 Elliott Sales de Andrade 2020-08-15 02:45:08 UTC
This check is wrong:

%if 0%{?fedora} < 33 || 0%{?rhel} < 8

If you're on Fedora, then %{?rhel} is not defined, so that's 0 < 8, which is _true_ and with_web is defined. Similarly, if you're on EPEL, the opposite will happen and with_web will still be defined. Better to use bconds with flipped conditions:

%if 0%{?fedora} >= 33 || 0%{?rhel} >= 8
%bcond_without bundling
%else
%bcond_with bundling
%endif

or since js-jquery1 seems to be dead, drop the condition and always bundle.

Comment 6 Stuart Campbell 2020-08-20 23:19:28 UTC
Sorry for the mess up with the condition testing.  Yes I think as jquery1 looks dead I will just bundle.. i think it's safer moving forward.  Thank you.

Comment 7 Igor Raits 2020-08-21 05:22:06 UTC
Hello,

Please note that this comment was generated automatically. If you feel that this output has mistakes, please contact me via email (ignatenkobrain).

All subpackages of a package against which this bug was filled are now installable or removed from Fedora 33.

Thanks for taking care of it!

Comment 8 Mattias Ellert 2020-08-21 06:19:29 UTC
Fixed in Fedora 33, no build for rawhide yet...