Hi folks, imagine a Python application "monty" with the following requirements listed in setup.py:
install_requires=[ 'ham>=1.0', 'spam>=2.0', 'eggs>=1.5' ] If I want to add "monty" as a new Gentoo package, and if none of "ham", "spam" and "eggs" are so far available as Gentoo packages, what is the recommended way of handling this situation? 1. Create one pull request that contains separate commits for adding each of the four Python packages? 2. Create four separate pull requests? 3. Find out there is an eclass I have missed so far which performs the equivalent of "pip install monty" and create an ebuild based on it? 4. None of the above. -Ralph