Changeset 243
- Timestamp:
- 02/19/08 19:30:21 (9 months ago)
- Files:
-
- cleverbox/trunk/debian/control (modified) (2 diffs)
- cleverbox/trunk/debian/copyright (modified) (3 diffs)
- cleverbox/trunk/debian/package-it (modified) (1 diff)
- cleverbox/trunk/debian/pyversions (deleted)
- cleverbox/trunk/debian/rules (modified) (1 diff)
- cleverbox/trunk/scripts/cleverbox-admin.1 (added)
- cleverbox/trunk/setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cleverbox/trunk/debian/control
r230 r243 2 2 Section: web 3 3 Priority: optional 4 Build-Depends: cdbs (>= 0.4.43), python-all-dev, python-support (>= 0.3), debhelper (>= 4.1.0) , dpatch4 Build-Depends: cdbs (>= 0.4.43), python-all-dev, python-support (>= 0.3), debhelper (>= 4.1.0) 5 5 Maintainer: Tristan Rivoallan <tristan@rivoallan.net> 6 6 Standards-Version: 3.7.2 … … 8 8 Package: cleverbox 9 9 Architecture: all 10 Depends: ${python:Depends}, apache2, subversion, trac (>=0.10.3)10 Depends: ${python:Depends}, subversion, trac (>=0.10.3), libapache2-mod-python (>= 3.3.1) 11 11 Suggests: libapache2-mod-macro 12 Description: Interactive shell dedicated to deployment and maintenance of Trac and Subversion instances. 13 The cleverbox provides an interactive command line shell dedicated to the deployment and maintenance of trac and subversion instances. 14 It can handle multiple configuration profiles, enabling the deployment of differently flavored type of project (trac configuration and permissions, apache configuration templates, etc). 15 Project's main objective is to make your life as simple as possible. Thus, it comes with easy installation, easy upgrades and a comprehensive documentation. 12 Description: Trac and Subversion instances deployment shell 13 The cleverbox provides an interactive command line shell dedicated to the 14 deployment and maintenance of trac and subversion instances. 15 It can handle multiple configuration profiles, enabling the deployment 16 of differently flavored type of projects : 17 trac configuration and permissions, apache configuration templates, etc. 18 Project's main objective is to make your life as simple as possible. 19 Thus, it comes with easy installation, easy upgrades and a comprehensive 20 documentation. cleverbox/trunk/debian/copyright
r230 r243 4 4 It was downloaded from http://www.clever-age.org/trac/wiki/cleverbox 5 5 6 Upstream Author (s):6 Upstream Author: 7 7 8 8 Tristan Rivoallan <trivoallan@clever-age.com> … … 16 16 This package is free software; you can redistribute it and/or modify 17 17 it under the terms of the GNU General Public License as published by 18 the Free Software Foundation; either version 2of the License, or18 the Free Software Foundation; either version 3 of the License, or 19 19 (at your option) any later version. 20 20 … … 29 29 30 30 On Debian systems, the complete text of the GNU General 31 Public License can be found in `/usr/share/common-licenses/GPL '.31 Public License can be found in `/usr/share/common-licenses/GPL-3'. 32 32 33 33 The Debian packaging is (C) 2008, Tristan Rivoallan <tristan@rivoallan.net> and cleverbox/trunk/debian/package-it
r230 r243 2 2 3 3 VERSION=$(dpkg-parsechangelog | grep Version | sed 's,^Version: \(.*\)\-.*$,\1,g') 4 CURRENT_BRANCH=$(svn info | grep URL | cut -d' ' -f 2)5 echo $(svn info | grep URL) 4 CURRENT_BRANCH=$(svn info | grep URL | cut -d' ' -f 3) 5 6 6 if [ ! -f ../cleverbox_${VERSION}.orig.tar.gz ]; then 7 7 (cd .. ; svn export http://www.clever-age.org/svn/cleverbox/tags/${VERSION} cleverbox-${VERSION} && \ cleverbox/trunk/debian/rules
r230 r243 2 2 DEB_PYTHON_SYSTEM := pysupport 3 3 4 # CDBS rules :) 4 5 include /usr/share/cdbs/1/rules/debhelper.mk 5 6 include /usr/share/cdbs/1/class/python-distutils.mk 7 8 install/cleverbox:: 9 # Project documentation is superceded by dedicated Debian docs 10 rm -r debian/cleverbox/usr/share/doc cleverbox/trunk/setup.py
r184 r243 41 41 scripts=['scripts/cleverbox-admin'], 42 42 data_files=[('/usr/share/cleverbox', glob('assets/*')), 43 ('/usr/share/doc/cleverbox', glob('docs/*'))], 43 ('/usr/share/doc/cleverbox', glob('docs/*')), 44 ('/usr/share/man/man1', glob('scripts/*.1'))], 44 45 45 46 # Dependencies
