Edgewall Software

Changes between Version 49 and Version 50 of TracOnDebian


Ignore:
Timestamp:
Feb 15, 2005, 6:04:26 AM (19 years ago)
Author:
kbroderick@…
Comment:

Didn't quite work for me

Legend:

Unmodified
Added
Removed
Modified
  • TracOnDebian

    v49 v50  
    5555apache2 -k restart
    5656}}}
     57
     58----
     59
     60 * Be careful with the above steps.  I attempted to follow them on an "existing" (i.e. not fresh) woody box and was unsuccessful in part because I had managed to install a newer version of subversion from source before deciding to try the packages.  I decided to bite the bullet and upgrade to sarge so I could use the goodness that is apt while also using fsfs repositories.  Aside from breaking my pptpd install, the upgrade only partially solved my trac/subversion woes; I was able to get apache2-mod-svn working, but trac-admin from the command line would fail when one of the subversion Python modules went looking for libswig1.3.21 and  I had only libswig1.3.22; symlinking libswig1.3.21.so -> libswig1.3.22.so solved that problem but left me with another error in fs.py when running trac-admin help from the command line.  After much gnashing of teeth, I tried removing the subversion package and the trac package; this triggered an uninstall of several then-unused support packages, including python2.3.  However, /usr/lib/python2.3 still existed and was not empty, despite the apt database showing absolutely no python packages of any version installed.  I manually rm'd /usr/lib/python2.3, did an aptitude install subversion trac, and stuff worked; I'm fairly convinced that the manual reworkings of the python install (as described above) were directly related, if not causative, in the problem; the fix could have been as simple as:
     61{{{
     62aptitude remove subversion trac python2.3
     63rm -r /usr/lib/python2.3
     64aptitude install subversion trac python2.3
     65}}}
     66 after I had upgraded to sarge.  The removal of python2.3 and the rm of /usr/lib/python2.3 are critical; prior to doing this, I had also tried removing subversion and trac and reinstlling, first from binary and then from source packages; that didn't help.
     67
     68----
     69
    5770 * After completing these pre-requisites, I added the following to /etc/apt/sources.list
    5871{{{