Ah Ha! One of the issues I have been having is that I generally have to edit the setup.py in Trac in order to get it to install as it wants a version of Genshi with a revision of something other than "0" (I have just been removing the -r*), which as you pointed out is an issue with SVN 1.6. I can easily move back to 1.5 and will do so.
I will also take your suggested process and re-do my environment as such. While I am doing that, I will also update the *.rst files to reflect these changes (I had attempted to follow their direction, but now have some additional information that would probably be best added/revised in them). Thanks! Lance Remy Blank wrote: > Lance Hendrix wrote: > >> I get the same errors in virtualenv as I do when working in the >> "non-virtual" env (can I use Eclipse in a virtualenv)? So I still >> assume it is a configuration problem in my environment (probably a RTFM >> issue or an ID10T issue ;-) ). >> > > It's not an RTFM issue, as there's currently no M to R about this :-) > Tim is right, you should install Genshi from the advanced-i18n branch. > > For comparison, here's how I install a Trac development environment: > > - Install docutils, pygments, pytz, twill and lxml globally with emerge > (only once, obviously). > > - Check out a Trac working copy: > > $ svn co http://svn.edgewall.org/repos/trac/trunk > $ cd trunk > > - Create a virtual environment within the checkout, and activate it: > > $ virtualenv venv > $ . venv/bin/activate > > - Install Genshi into the virtual environment. I don't use a separate > checkout, as I (currently) don't intend to edit the Genshi code. > > $ easy_install -N > http://svn.edgewall.org/repos/genshi/branches/experimental/advanced-i18n > > - Activate the Trac checkout in development mode: > > $ python setup.py develop -N > > - Run the test suite: > > $ PYTHONPATH=. python trac/test.py > > - Hack away! > > The message "unrecognized .svn/entries format; skipping ." when you run > "python setup.py develop" seems to indicate that you are using > Subversion 1.6.x. While we currently have no remaining incompatibilities > with that version, setuptools does not support it yet, which may give > some strange results (for example, the current revision is indicated as > 0). If you can, I would suggest going back to 1.5.6 until setuptools > catches up. > > -- Remy > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Development" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/trac-dev?hl=en -~----------~----~----~----~------~----~------~--~---
