Edgewall Software

Changes between Version 4 and Version 5 of TracForPython2.5


Ignore:
Timestamp:
Jul 12, 2007, 2:29:03 AM (17 years ago)
Author:
edbrannin@…
Comment:

Adding an almost copy-paste-ready set of steps to work around this issue.

Legend:

Unmodified
Added
Removed
Modified
  • TracForPython2.5

    v4 v5  
    5757With Python Clearsilver module in Python2.5 site-packages dir, Trac is working ok all the day in a Python2.5 x86_64 environment.
    5858
     59- AntonioCensi
     60
    5961=== Install required python development headers ===
    6062
     
    6668}}}
    6769
    68 AntonioCensi
     70=== Workaround from the Ubuntu Bug-tracker ===
     71
     72From [https://launchpad.net/ubuntu/+source/clearsilver/+bug/86685 Ubuntu Launchpad bug 86685]:
     73{{{
     74Install the build dependencies
     75$ sudo apt-get build-dep python-clearsilver
     76$ sudo apt-get install python-dev
     77
     78Download the 0.10.4 version (as it contains fixes for python2.5)
     79$ wget http://www.clearsilver.net/downloads/clearsilver-0.10.4.tar.gz
     80$ tar xzvf clearsilver-0.10.4.tar.gz
     81
     82Edit the configure files as listed by Antonio Censi above
     83
     84Build the new version
     85$ cd clearsilver-0.10.4
     86$ ./configure --with-python=/usr/bin/python2.5
     87$ make
     88$ sudo make install
     89}}}