Changeset 328 for cleverbox/trunk
- Timestamp:
- 02/29/08 17:57:52 (4 years ago)
- Location:
- cleverbox/trunk
- Files:
-
- 3 modified
-
cleverbox/scripts/admin.py (modified) (1 diff)
-
debian/control (modified) (1 diff)
-
setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cleverbox/trunk/cleverbox/scripts/admin.py
r261 r328 60 60 self.env = Environment(env_path) 61 61 62 # Check if environment needs an upgrade63 62 try: 63 # Cleverbox cannot run with trac-0.10.3 64 import trac 65 if trac.__version__ == '0.10.3': 66 print 67 print "A bug in trac-0.10.3 prevents the cleverbox from working correctly." 68 print "Please upgrade or downgrade your trac installation." 69 print 70 71 sys.exit(1) 72 73 # Check if environment needs an upgrade 64 74 if check_upgrade and self.env.needs_upgrade(cleverbox.version): 65 75 print -
cleverbox/trunk/debian/control
r272 r328 8 8 Package: cleverboxfuture 9 9 Architecture: all 10 Depends: ${python:Depends}, subversion (>=1.4.2), trac (>=0.10 .3), libapache2-mod-python (>=3.2.10), libapache2-svn (>=1.4.2), python-setuptools (>=0.6c3-3)10 Depends: ${python:Depends}, subversion (>=1.4.2), trac (>=0.10), libapache2-mod-python (>=3.2.10), libapache2-svn (>=1.4.2), python-setuptools (>=0.6c3-3) 11 11 Suggests: libapache2-mod-macro 12 Conflicts: cleverbox 12 Conflicts: cleverbox, trac-0.10.3 13 13 Description: Trac and Subversion instances deployment shell 14 14 The cleverbox provides an interactive command line shell dedicated to the -
cleverbox/trunk/setup.py
r260 r328 29 29 Environment :: Console 30 30 Intended Audience :: System Administrators 31 License :: OSI Approved :: GNU General Public License (GPL) 31 License :: OSI Approved :: GNU General Public License (GPL) v3 32 32 Natural Language :: English 33 Operating System :: POSIX :: Linux33 Operating System :: POSIX 34 34 Topic :: Software Development :: Bug Tracking 35 Topic :: Software Development :: Version Control :: Subversion 35 36 Topic :: System :: Systems Administration 36 37 Topic :: Utilities … … 60 61 61 62 # Dependencies 62 install_requires=['setuptools>=0.6b1', 'trac>=0.10. 3']63 install_requires=['setuptools>=0.6b1', 'trac>=0.10.4'] 63 64 )
