changeset 207:0a7d06e3f0fd

Remove the wrapper scripts (now taken care of by setuptools/easy_install) and update the docs to reflect the name change.
author cmlenz
date Mon, 19 Sep 2005 20:30:13 +0000
parents 5bd9b37a394d
children f39136272683
files README.txt scripts/bitten scripts/bittend
diffstat 3 files changed, 18 insertions(+), 45 deletions(-) [+]
line wrap: on
line diff
--- a/README.txt
+++ b/README.txt
@@ -28,7 +28,8 @@
 
 Bitten is written in Python, so make sure that you have Python installed.
 You'll need Python 2.3 or later. Also, make sure that setuptools
-(http://peak.telecommunity.com/DevCenter/setuptools) is installed.
+(http://peak.telecommunity.com/DevCenter/setuptools), version 0.6a2 or later,
+is installed.
 
 If that's taken care of, you just need to download and unpack the Bitten
 distribution, and execute the command:
@@ -52,18 +53,16 @@
 requires, but the Bitten build slave itself doesn't require anything extra.
 
 For the build master and web interface, you'll need to install Trac 0.9
-beta 1 and Berkeley DB XML >= 2.1.x
-(http://www.sleepycat.com/products/xml.shtml), as well as their respective
-dependencies. Please refer to the documentation of those projects for
-information how they are installed.
+beta 2. Please refer to the Trac documentation for information on how it is 
+installed.
 
 
 Build Master Configuration
 --------------------------
 
-Once Bitten, Trac and BDB XML are installed and working, you'll have to
-introduce Bitten to your Trac project environment. If you don't have a 
-Trac project set up yet, you'll need to do so in order to use Bitten.
+Once both Bitten and Trac are installed and working, you'll have to introduce
+Bitten to your Trac project environment. If you don't have a  Trac project
+set up yet, you'll need to do so in order to use Bitten.
 
 If you already have a Trac project environment, the Trac web interface
 will inform you with an error message that the environment needs to be
@@ -92,38 +91,38 @@
 ------------------------
 
 At this point, you're ready to start the Bitten build master. The
-installation of Bitten should have put a `bittend` script on your path.
-If the script is not on your path, look for it in the `bin` or `scripts`
-subdirectory of your Python installation.
+installation of Bitten should have put a `bitten-master` executable on your
+path. If the script is not on your path, look for it in the `bin` or
+`scripts` subdirectory of your Python installation.
 
-To find out about the options and arguments of the script, execute it with
+To find out about the options and arguments of the master, execute it with
 the `--help` option as follows:
 
-  $ bittend --help
+  $ bitten-master --help
 
 Most commonly, you'll want to specify the log level and log file, as well as
 the path to the Trac environment:
 
-  $ bittend --verbose --log=/var/log/bittend /var/trac/myproject
+  $ bitten-master --verbose --log=/var/log/bittend /var/trac/myproject
 
 
 Running the Build Slave
 -----------------------
 
 The build slave can be run on any machine that can connect to the machine
-on which the build master is running. Just as with the build master script,
-you should find the build slave script on your path after the installation.
-The build slave script is called `bitten`.
+on which the build master is running. Just as with the build master, you
+should find the build slave executable on your path after the installation.
+The executable file is called `bitten-slave`.
 
 To get a list of options for the build slave, execute it with the `--help`
 option:
 
-  $ bitten --help
+  $ bitten-slave --help
 
 To run the build slave against a slave installed on myproject.example.org,
 you'd run:
 
-  $ bitten myproject.example.org
+  $ bitten-slave myproject.example.org
 
 
 More Information
deleted file mode 100755
--- a/scripts/bitten
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: iso8859-1 -*-
-#
-# Copyright (C) 2005 Christopher Lenz <cmlenz@gmx.de>
-# All rights reserved.
-#
-# This software is licensed as described in the file COPYING, which
-# you should have received as part of this distribution. The terms
-# are also available at http://bitten.cmlenz.net/wiki/License.
-
-from bitten import slave
-
-slave.main()
deleted file mode 100755
--- a/scripts/bittend
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: iso8859-1 -*-
-#
-# Copyright (C) 2005 Christopher Lenz <cmlenz@gmx.de>
-# All rights reserved.
-#
-# This software is licensed as described in the file COPYING, which
-# you should have received as part of this distribution. The terms
-# are also available at http://bitten.cmlenz.net/wiki/License.
-
-from bitten import master
-
-master.main()
\ No newline at end of file
Copyright (C) 2012-2017 Edgewall Software