File Annotation
Not logged in
2a98ac44bd 2007-10-02       aku: #!/bin/sh
2a98ac44bd 2007-10-02       aku: ## -*- tcl -*- \
2a98ac44bd 2007-10-02       aku: exec tclsh "$0" ${1+"$@"}
2a98ac44bd 2007-10-02       aku: 
2a98ac44bd 2007-10-02       aku: # # ## ### ##### ######## ############# #####################
2a98ac44bd 2007-10-02       aku: ## Copyright (c) 2007 Andreas Kupries.
2a98ac44bd 2007-10-02       aku: #
2a98ac44bd 2007-10-02       aku: # This software is licensed as described in the file LICENSE, which
2a98ac44bd 2007-10-02       aku: # you should have received as part of this distribution.
2a98ac44bd 2007-10-02       aku: #
2a98ac44bd 2007-10-02       aku: # This software consists of voluntary contributions made by many
2a98ac44bd 2007-10-02       aku: # individuals.  For exact contribution history, see the revision
2a98ac44bd 2007-10-02       aku: # history and logs, available at http://fossil-scm.hwaci.com/fossil
2a98ac44bd 2007-10-02       aku: # # ## ### ##### ######## ############# #####################
2a98ac44bd 2007-10-02       aku: 
2a98ac44bd 2007-10-02       aku: ## Command line application wrapped around the import packages.
2a98ac44bd 2007-10-02       aku: 
2a98ac44bd 2007-10-02       aku: # # ## ### ##### ######## ############# #####################
2a98ac44bd 2007-10-02       aku: ## Requirements, extended package management for local packages.
2a98ac44bd 2007-10-02       aku: 
2a98ac44bd 2007-10-02       aku: lappend auto_path [file join [file dirname [info script]] lib]
2a98ac44bd 2007-10-02       aku: 
2a98ac44bd 2007-10-02       aku: package require Tcl 8.4                 ; # Required runtime.
2a98ac44bd 2007-10-02       aku: package require vc::fossil::import::cvs ; # Main functionality.
2a98ac44bd 2007-10-02       aku: 
2a98ac44bd 2007-10-02       aku: # # ## ### ##### ######## ############# #####################
2a98ac44bd 2007-10-02       aku: ## Execution
2a98ac44bd 2007-10-02       aku: 
2a98ac44bd 2007-10-02       aku: vc::fossil::import::cvs run $argv
2a98ac44bd 2007-10-02       aku: exit 0
2a98ac44bd 2007-10-02       aku: 
2a98ac44bd 2007-10-02       aku: # # ## ### ##### ######## ############# #####################