Ticket #15475 (closed defect: fixed)
py25-pylons 0.9.6.1 additional dependencies
| Reported by: | pyrios@… | Owned by: | stechert@… |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | ports | Version: | 1.6.0 |
| Keywords: | Cc: | akitada@… | |
| Port: | py25-pylons |
Description
After a fresh Mac Ports install and fresh pylons install, tried to create a plyon's project which failed because of missing runtime dependencies. A complete example is included below.
mako >= 0.1.8 decorator>=2.1.0
I installed mako, but the most recent version of decorator is 2.0.1. So that needs to be upgraded as well.
macbook-pro-15:example_pylons georgedowding$ paster create -t pylons example Traceback (most recent call last):
File "/opt/local/bin/paster", line 8, in <module>
load_entry_point('PasteScript==1.6.2', 'console_scripts', 'paster')()
File "/opt/local/lib/python2.5/site-packages/paste/script/command.py", line 79, in run
invoke(command, command_name, options, args[1:])
File "/opt/local/lib/python2.5/site-packages/paste/script/command.py", line 118, in invoke
exit_code = runner.run(args)
File "/opt/local/lib/python2.5/site-packages/paste/script/command.py", line 213, in run
result = self.command()
File "/opt/local/lib/python2.5/site-packages/paste/script/create_distro.py", line 69, in command
self.extend_templates(templates, tmpl_name)
File "/opt/local/lib/python2.5/site-packages/paste/script/create_distro.py", line 233, in extend_templates
tmpl = entry.load()(entry.name)
File "/opt/local/lib/python2.5/site-packages/pkg_resources.py", line 1911, in load
if require: self.require(env, installer)
File "/opt/local/lib/python2.5/site-packages/pkg_resources.py", line 1924, in require
working_set.resolve(self.dist.requires(self.extras),env,installer))
File "/opt/local/lib/python2.5/site-packages/pkg_resources.py", line 524, in resolve
raise DistributionNotFound(req) # XXX put more info here
pkg_resources.DistributionNotFound: Mako>=0.1.8


