Edgewall Software

Changes between Version 39 and Version 40 of TracOnDebian


Ignore:
Timestamp:
Nov 18, 2004, 8:27:46 PM (19 years ago)
Author:
Jonas Borgström
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracOnDebian

    v39 v40  
    11= Installing and Running Trac on Debian =
    22
    3 There are pages dedicated to the various releases of Debian:
     3The Debian Sid distribution already contain Trac and all required dependencies.
     4Debian Woody and Sarge users need to add a few lines to their '''/etc/apt/sources.list''' before installing Trac.
    45
    5  * [wiki:TracOnDebianSid Debian Sid], the current unstable distribution
    6  * [wiki:TracOnDebianSarge Debian Sarge], the testing distribution
    7  * [wiki:TracOnDebianWoody Debian Woody], the current stable distribution
     6for Woody:
     7{{{
     8# Trac, clearsilver, sqlite, pysqlite
     9deb http://ftp.edgewall.com/pub/debian woody trac
     10# Subversion, Apache2
     11deb http://people.debian.org/~adconrad woody subversion
     12}}}
     13
     14For Sarge:
     15{{{
     16# Trac and clearsilver
     17deb http://ftp.edgewall.com/pub/debian sarge trac
     18}}}
     19
     20Run
     21{{{
     22 $ apt-get update
     23}}}
     24after editing the file to update the package cache.
     25
     26Installing Trac and the required dependencies should now be as simple as:
     27{{{
     28 $ apt-get install trac
     29}}}
     30
     31'''Note:''' While installing Trac on Debian Woody you might get some harmless warnings when the installation process byte-compiles some source files.
    832
    933Furthermore, there is a guide on building the Debian Trac package from the trunk at TracOnDebianFromTrunk