Diff
Not logged in

Differences From:

File tools/cvs2fossil/lib/cvs2fossil.tcl part of check-in [54d1e3537e] - Started on pass 5, computing the initial approximate set of project level revisions, aka 'ChangeSets'. Skeleton of the pass added. by aku on 2007-11-10 05:34:26. [view]

To:

File tools/cvs2fossil/lib/cvs2fossil.tcl part of check-in [2a01d50430] - Started on pass 6, breaking cycles between revision based changesets. Added skeleton files. by aku on 2007-11-11 00:08:46. [view]

@@ -23,19 +23,20 @@
 ## Passes. The order in which the import passes are loaded is
 ## important. It is the same order they will register, and then be run
 ## in.
 
-package require vc::fossil::import::cvs::pass::collar    ; # Coll'ect Ar'chives.
-package require vc::fossil::import::cvs::pass::collrev   ; # Coll'ect Rev'isions.
-package require vc::fossil::import::cvs::pass::collsym   ; # Coll'ate Sym'bols
-package require vc::fossil::import::cvs::pass::filtersym ; # Filter'  Sym'bols
+package require vc::fossil::import::cvs::pass::collar      ; # Coll'ect Ar'chives.
+package require vc::fossil::import::cvs::pass::collrev     ; # Coll'ect Rev'isions.
+package require vc::fossil::import::cvs::pass::collsym     ; # Coll'ate Sym'bols
+package require vc::fossil::import::cvs::pass::filtersym   ; # Filter'  Sym'bols
 
 # Note: cvs2svn's SortRevisionSummaryPass and SortSymbolSummaryPass
 #       are not implemented by us. They are irrelevant due to our use
 #       of a relational database proper for the persistent state,
 #       allowing us to sort the data on the fly as we need it.
 
-package require vc::fossil::import::cvs::pass::initcsets ; # Init'ialize C'hange'Sets
+package require vc::fossil::import::cvs::pass::initcsets   ; # Init'ialize C'hange'Sets
+package require vc::fossil::import::cvs::pass::breakrcycle ; # Break' R'evision Cycle's
 
 # # ## ### ##### ######## ############# #####################
 ## Support for passes etc.