Artifact Content
Not logged in

Artifact df73a69477f7abbe7d25d905d4604d01b567ef26

File tools/cvs2fossil/cvs2fossil part of check-in [2a98ac44bd] - Third attempt at getting a cvs importer which can handle branches. Using cvs2svn code and design notes as a guide. by aku on 2007-10-02 03:05:43. Also file tools/cvs2fossil/cvs2fossil part of check-in [38b967dcf5] - Merge aku's CVS import changes into the main line. Fix a small bug in diff.c. by drh on 2007-11-17 00:29:42.

#!/bin/sh
## -*- tcl -*- \
exec tclsh "$0" ${1+"$@"}

# # ## ### ##### ######## ############# #####################
## Copyright (c) 2007 Andreas Kupries.
#
# This software is licensed as described in the file LICENSE, which
# you should have received as part of this distribution.
#
# This software consists of voluntary contributions made by many
# individuals.  For exact contribution history, see the revision
# history and logs, available at http://fossil-scm.hwaci.com/fossil
# # ## ### ##### ######## ############# #####################

## Command line application wrapped around the import packages.

# # ## ### ##### ######## ############# #####################
## Requirements, extended package management for local packages.

lappend auto_path [file join [file dirname [info script]] lib]

package require Tcl 8.4                 ; # Required runtime.
package require vc::fossil::import::cvs ; # Main functionality.

# # ## ### ##### ######## ############# #####################
## Execution

vc::fossil::import::cvs run $argv
exit 0

# # ## ### ##### ######## ############# #####################