Edgewall Software

Changes between Version 148 and Version 149 of TracOnDebian


Ignore:
Timestamp:
Oct 26, 2015, 8:22:21 PM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TracOnDebian

    v148 v149  
    1 = Installing and Running Trac on Debian =
    2 [[PageOutline()]]
     1[[PageOutline(2-5,Contents,pullout)]]
    32
    4 '''Note:''' ''This page does not provide step-by-step instructions for installing and configuring all of Trac.  It is just a reference for installing the Debian software packages and locating configuration files. You will need to read TracInstall for complete instructions on running and configuring Trac.''
    5 
    6 '''Note:''' These Instructions are for ''Trac 0.11'' or better, but the package contains Trac 0.11! They also apply for Ubuntu.
    7 
    8 '''Note:''' Debian 6.0 (code-named ''squeeze'', currently the ''stable'' release contains Trac 0.11.7 and some plugins for this version of Trac. The next Debian release (7.0, code-name ''wheezy'', currently the ''testing'' release) contains Trac 0.12.3 with plugins for this version Trac.
     3= Installing and Running Trac on Debian
    94
    105The '''Trac''' package is named '''trac''' and [http://packages.debian.org/lenny/trac is available] from the ''main'' archive.
    116This package is maintained by Debian [http://wiki.debian.org/Teams/PythonAppsPackagingTeam Python Applications Packaging Team].
    127
    13 == Where to get info about Trac in Debian ==
     8These instructions are for Trac 0.11 or better. They also apply to Ubuntu.
     9Debian 6.0 (''squeeze'') contains Trac 0.11.7. Debian 7.0 (''wheezy'') contains Trac 0.12.3. Debian 8.0 (''jessie'') contains Trac 1.0.2.
     10
     11'''Note:''' This page does not provide step-by-step instructions for installing and configuring all of Trac. It is just a reference for installing the Debian software packages and locating configuration files. You will need to read TracInstall for complete instructions on running and configuring Trac.
     12
     13== Where to get info about Trac in Debian
    1414
    1515 * Package Information: http://packages.debian.org/trac [[BR]]
     
    1717
    1818 * Package Tracking System: http://packages.qa.debian.org/t/trac.html [[BR]]
    19    Summary of package information including available versions, maintainers and number of bugs (in Debian and Ubuntu)
     19   Summary of package information including available versions, maintainers and number of bugs (in Debian and Ubuntu).
    2020
    2121 * Bug Tracking System: http://bugs.debian.org/trac [[BR]]
    2222   All bugs filled against Trac in Debian and their status.
    2323
     24== Installing Trac
    2425
    25 == Installing Trac ==
     26To install Trac as a plain installation:
    2627
    27 To install Trac just write in console:
    28 
    29 {{{
     28{{{#!sh
    3029apt-get install trac
    3130}}}
    3231
    33 This will get you the plain Trac installation. To see what additional packages are available, issue:
    34 {{{
     32To see what additional packages are available:
     33
     34{{{#!sh
    3535apt-cache show trac
    3636}}}
    3737
    38 == Supporting other Version Control Systems than Subversion ==
     38== Supporting other Version Control Systems than Subversion
     39
    3940You can also install plugins that support other version control system besides Subversion:
    4041Their packages are:
    4142
    42  * '''trac-git'''  :: adds support for the Git distributed version control system. If you are installing this on Debian or a Debian derived system, you can read the document /usr/share/doc/trac-git/README.Debian for more information on installing trac-git plugin under Debian.
     43 * '''trac-git''': adds support for the Git distributed version control system:
    4344
    44 {{{
     45{{{#!sh
    4546apt-get install trac-git
    4647}}}
    4748
    48  * '''trac-mercurial''' :: adds support for the Mercurial distributed version control system
     49 If you are installing this on Debian or a Debian derived system, you can read the document /usr/share/doc/trac-git/README.Debian for more information on installing trac-git plugin under Debian.
     50 
     51 * '''trac-mercurial''': adds support for the Mercurial distributed version control system:
    4952
    50 {{{
     53{{{#!sh
    5154apt-get install trac-mercurial
    5255}}}
    5356
    54  * '''trac-bzr''' :: adds support for the bzr distributed version control system
     57 * '''trac-bzr''': adds support for the bzr distributed version control system:
    5558
    56 {{{
     59{{{#!sh
    5760apt-get install trac-bzr
    5861}}}
    5962
    60 == Other Trac plugins ==
    61 Some widely used Trac plugins are packaged by Debian, so that they can be easily installed and are part of the Debian package universe. They can all be installed by
    62 {{{
     63== Other Trac plugins
     64
     65Some widely used Trac plugins are packaged by Debian, so that they can be easily installed and are part of the Debian package universe. They can all be installed by:
     66{{{#!sh
    6367apt-get install trac-"pluginname"
    6468}}}
     69
    6570with pluginname replaced by e.g. `spamfilter`.
    6671
    67 === Plugins in Debian ===
     72=== Plugins in Debian
     73
    6874||'''Debian package'''||'''6 (squeeze)'''||'''6 (squeeze-backports)'''||'''7 (wheezy)'''||'''7 (wheezy-backports)'''||'''8 (jessie)'''||
    6975||[DebianPTS:trac trac]||`0.11.7-4`||`0.12.2-1~bpo60+1`||`0.12.5-3~deb7u1`||`1.0.1-2~bpo70+1`||`1.0.2+dfsg-2`||
     
    106112||[DebianPTS:trac-xmlrpc trac-xmlrpc]||`1.0.6+svn6598-1`||—||`1.1.2+r10706-1`||—||`1.1.2+r10706-1`||
    107113
    108 == Supporting other database backend than SQLite ==
     114== Supporting other database backends than SQLite
    109115
    110116Trac can support other database systems to store its information (wiki, tickets and user data).
    111117
    112  * PostgreSQL
     118 * PostgreSQL:
    113119
    114 {{{
     120{{{#!sh
    115121apt-get install python-psycopg2
    116122}}}
    117123
    118  * MySQL
     124 * MySQL:
    119125
    120 {{{
     126{{{#!sh
    121127apt-get install python-mysqldb
    122128}}}
    123  
    124129
    125 == Additional Trac files ==
     130== Additional Trac files
    126131
    127132'''Trac''' is installed in '''/usr/share/pyshared/trac'''. Documentation is in '''/usr/share/doc/trac''' as is traditional with Debian. It includes both Trac and Debian information as well as ''helper scripts''. There are also ''man'' pages for ''tracd'' and ''trac-admin''.
    128133
    129 == Configuring Trac Environment under Debian ==
     134== Configuring Trac Environment under Debian
    130135
    131136Debian documentation contains everything you need to setup Trac Environment and make its web-interface accessible. It can be read with the command:
    132 {{{
     137{{{#!sh
    133138zless /usr/share/doc/trac/README.Debian.gz
    134139}}}