Closed Steap closed 5 years ago
In _create_output_directories, we "scan" the frontend:
upt2macports = { 'cpan': 'perl', 'pypi': 'python', 'rubygems': 'ruby', }
We already do that once in MacportsBackend.create_package(). We should only do it once.
We can do something like add a variable category = 'python' to MacPortsPythonPackage() and use that directly in place of port_category
category = 'python'
port_category
In _create_output_directories, we "scan" the frontend:
We already do that once in MacportsBackend.create_package(). We should only do it once.