[Lidarr] Fix llvmlite build failure in Lidarr extended setup#403
Open
mkaltner wants to merge 1 commit intoRandomNinjaAtk:mainfrom
Open
[Lidarr] Fix llvmlite build failure in Lidarr extended setup#403mkaltner wants to merge 1 commit intoRandomNinjaAtk:mainfrom
mkaltner wants to merge 1 commit intoRandomNinjaAtk:mainfrom
Conversation
Fix llvmlite build failure in Lidarr extended setup - Add g++, llvm-dev, and libffi-dev build dependencies - Split beets installation to avoid llvmlite/numba dependency - Install beets core dependencies manually - Silence GNU Parallel citation notice - Bump script version to 1.4.6 Resolves build failure when installing beets package that was causing script to fail at Python package installation step.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #402
Problem
The lidarr extended setup script fails during Python package installation due to llvmlite build errors. The llvmlite package (required by numba, which is an optional beets dependency) fails to compile with error:
TypeError: spawn() got an unexpected keyword argument 'dry_run'Solution
g++,llvm-dev,libffi-dev--no-depsflag, then manually install core dependenciesTesting
Tested successfully on Alpine Linux with Python 3.12.12. All packages install cleanly and script completes without errors.
Additional Changes