Not a big deal once again - I said after reading of cvs2svn documentation - we've got a database holding all the cvs tags used to built our software, so I'd make a few queries to know what to keep and that's all, except... OMG! There is no "include" pattern for tags!!!
You could in a easy way exclude symbols from cvs, which shouldn't be converted, but I've got completely opposite situation. Now, smart guys, please try to write me a reqexp which is nagative to a pattern... Oups!
What I did it was a little modification of cvs2svn tool in cvs2svn/cvs2svn_lib/symbol_strategy.py:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class IncludeRegexpStrategyRule(StrategyRule): | |
"""Include symbols matching pattern.""" | |
def __init__(self, pattern): | |
try: | |
self.regexp = re.compile('^' + pattern + '$') | |
except re.error: | |
raise FatalError("%r is not a valid regexp." % (pattern,)) | |
def log(self, symbol): | |
Log().verbose( | |
'Excluding symbol %s because it doesn\'t match regexp "%s".' | |
% (symbol, self.regexp.pattern,) | |
) | |
def get_symbol(self, symbol, stats): | |
if ( hasattr( symbol, "name" ) ): | |
if self.regexp.match( symbol.name ): | |
return symbol | |
else: | |
self.log( symbol ) | |
return ExcludedSymbol(symbol) | |
else: | |
return symbol |
- asked our tag db for packages and their tags/branches that should be migrated
- generated cvs2svn option file
- and run cvs2svn tool
Several testing later a big migration day arrived on agenda. I've started to migrate about 9:00 AM and before 6:00 PM ca. 2k packages were moved generating initially about 190k revisions. And one day later we've opened new repos to the whole collaboration.
Brak komentarzy:
Prześlij komentarz