Show
Ignore:
Timestamp:
05/03/08 09:55:04 (2 years ago)
Author:
trivoallan
Message:

cleverbox :

  • fixed Cleverbox does not work if trac-admin script is in a non standard location (#48)
  • fixed trac version dependency in setup.py
  • debian packaging : binary-install actions should go in postinst file (#46)
  • debian packaging : added python-setuptools to build dependencies


all fixes on both trunk and 0.4 branch.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • cleverbox/trunk/setup.py

    r328 r338  
    1818"""Cleverbox : Script for automating multiple trac instances deployment and maintenance. 
    1919 
    20 The Cleverbox sits on top of Trac (http://trac.edgewall.org) and Subversion (http://subversion.tigris.org).  
     20The Cleverbox sits on top of Trac (http://trac.edgewall.org) and Subversion (http://subversion.tigris.org). 
    2121It provides an interactive shell for deploying and maintaining instances of both projects. 
    2222""" 
     
    4141 
    4242setup( 
    43      
     43 
    4444    # Project identity 
    4545    name='Cleverbox', 
     
    5252    classifiers = filter(None, classifiers.split("\n")), 
    5353    long_description = "\n".join(doclines[2:]), 
    54      
     54 
    5555    # Files 
    5656    packages=find_packages(), 
     
    5858    data_files=[('/usr/share/cleverbox',     glob('assets/*')), 
    5959                ('/usr/share/doc/cleverbox', glob('docs/*')), 
    60                 ('/usr/share/man/man1',     glob('scripts/*.1'))], 
    61      
     60                ('/usr/share/man/man1',      glob('scripts/*.1'))], 
     61 
    6262    # Dependencies 
    63     install_requires=['setuptools>=0.6b1', 'trac>=0.10.4'] 
     63    install_requires=['setuptools>=0.6b1', 'trac>=0.10.4', 'trac<=0.10.999'] 
    6464)