SLURP 
-----
Version 3.14159265359*10^(-100) ALPHA

Slurp takes a repository and puts it into a more easily searchable form.

The database schema is in sql/

Steps to use:
-------------

1. Install MySQL, set up a database. (I called mine 'cvs')
2. Create a table with sql/cvs-schema.sql.
3. Compile tparse
    * cd tparse
    * python setup.py build
    * Then copy tparse.so (in tparse/build/something) to the top level slurp
      directory.
    NOTE: You need at least GCC 3.2 for this to compile.
4. Compile or download MySQLdb Python module and install.
5. Edit slurp in case you want to change the default database. By default, it's
   set to just 'cvs'.
9. Run slurp, and enjoy!

Example:

/var/cvs is your cvs repository

mysqladmin create cvs
slurp --flush -r /var/cvs

Run slurp --help if you want more details.
