Hi,
I'm trying to get docutils installed and running with this part:
[docs] recipe = zc.recipe.egg:scripts eggs = docutils
However, the following scripts specified in docutils' setup.py are not installed:
'scripts' : ['tools/rst2html.py',
'tools/rst2s5.py',
'tools/rst2latex.py',
'tools/rst2newlatex.py',
'tools/rst2xml.py',
'tools/rst2pseudoxml.py',
'tools/rstpep2html.py',
],}
How do I get them installed? I've tried adding dependent-scripts = true and/or interpreter = py, but nothing seems to work...
What am I doing wrong?
cheers,
Chris
-- Simplistix - Content Management, Batch Processing & Python Consulting
- http://www.simplistix.co.uk
On Mon, Sep 7, 2009 at 5:56 PM, Chris Witherschris@simplistix.co.uk wrote:
Hi,
I'm trying to get docutils installed and running with this part:
[docs] recipe = zc.recipe.egg:scripts eggs = docutils
However, the following scripts specified in docutils' setup.py are not installed:
'scripts' : ['tools/rst2html.py', 'tools/rst2s5.py', 'tools/rst2latex.py', 'tools/rst2newlatex.py', 'tools/rst2xml.py', 'tools/rst2pseudoxml.py', 'tools/rstpep2html.py', ],}
This recipe only supports console_script entry points. There is work underway to add support for distutils scripts.
How do I get them installed? I've tried adding dependent-scripts = true and/or interpreter = py, but nothing seems to work...
You might find this useful:
http://pypi.python.org/pypi/zc.rst2
>
What am I doing wrong?
Nothing.
Jim
-- Jim Fulton
On 2009-09-07, Jim Fulton jim@zope.com wrote:
On Mon, Sep 7, 2009 at 5:56 PM, Chris Witherschris@simplistix.co.uk wrote:
Hi,
I'm trying to get docutils installed and running with this part:
[docs] recipe = zc.recipe.egg:scripts eggs = docutils
However, the following scripts specified in docutils' setup.py are not installed:
This recipe only supports console_script entry points. There is work underway to add support for distutils scripts.
Chris, you could try out the zc.buildout/branches/reinout-scripts branch. I've fixed it there.
Reinout
-- Reinout van Rees - reinout@vanrees.org - http://reinout.vanrees.org Software developer at http://www.thehealthagency.com "Military engineers build missiles. Civil engineers build targets"
Reinout van Rees wrote:
On 2009-09-07, Jim Fulton jim@zope.com wrote:
On Mon, Sep 7, 2009 at 5:56 PM, Chris Witherschris@simplistix.co.uk wrote:
Hi,
I'm trying to get docutils installed and running with this part:
[docs] recipe = zc.recipe.egg:scripts eggs = docutils
However, the following scripts specified in docutils' setup.py are not installed: This recipe only supports console_script entry points. There is work underway to add support for distutils scripts.
Chris, you could try out the zc.buildout/branches/reinout-scripts branch. I've fixed it there.
How do I actually go about doing that?
If I just put that checkout in the develop line of my buildout will get picked?
cheers,
Chris
-- Simplistix - Content Management, Batch Processing & Python Consulting
- http://www.simplistix.co.uk
On 2009-09-08, Chris Withers chris@simplistix.co.uk wrote:
Reinout van Rees wrote:
Chris, you could try out the zc.buildout/branches/reinout-scripts branch. I've fixed it there.
How do I actually go about doing that?
If I just put that checkout in the develop line of my buildout will get picked?
zc.buildout has a special "dev.py" bootstrap for bootstrapping itself with a development checkout of itself. So you actually need to get the buildout development checkout in bin/buildout's sys.path. dev.py is a good example.
Bit of a pain for regular use, for sure :-)
Jim: OK for me to merge the branch back to trunk?
Reinout
-- Reinout van Rees - reinout@vanrees.org - http://reinout.vanrees.org Software developer at http://www.thehealthagency.com "Military engineers build missiles. Civil engineers build targets"