Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Webster2012-11-02 17:06:22 +0000
committerPaul Webster2012-11-02 17:06:22 +0000
commitd6771d16f3bccc9c5d0939ab6790df349f9f3b03 (patch)
treeb2cfdecc4feecc3484f5f6f8795ec8b525f644be
parent81fa2f9b8cf06c6693d42643418e693dc239a661 (diff)
downloadorg.eclipse.migration-d6771d16f3bccc9c5d0939ab6790df349f9f3b03.tar.gz
org.eclipse.migration-d6771d16f3bccc9c5d0939ab6790df349f9f3b03.tar.xz
org.eclipse.migration-d6771d16f3bccc9c5d0939ab6790df349f9f3b03.zip
Bug 330938 - Merge Eclipse Incubator with e4
convert the platform-incubator CVS module
-rw-r--r--eclipse.platform.incubator/pass1/branches.txt1
-rw-r--r--eclipse.platform.incubator/pass1/compare-log.txt15
-rw-r--r--eclipse.platform.incubator/pass1/cvs2git.options697
-rw-r--r--eclipse.platform.incubator/pass1/cvs2git_log.txt470
-rw-r--r--eclipse.platform.incubator/pass1/symbol-info.txt3
-rw-r--r--eclipse.platform.incubator/pass1/tag_report.sh0
-rw-r--r--eclipse.platform.incubator/pass1/tags.txt0
7 files changed, 1186 insertions, 0 deletions
diff --git a/eclipse.platform.incubator/pass1/branches.txt b/eclipse.platform.incubator/pass1/branches.txt
new file mode 100644
index 0000000..527eb9e
--- /dev/null
+++ b/eclipse.platform.incubator/pass1/branches.txt
@@ -0,0 +1 @@
+* master
diff --git a/eclipse.platform.incubator/pass1/compare-log.txt b/eclipse.platform.incubator/pass1/compare-log.txt
new file mode 100644
index 0000000..58f514c
--- /dev/null
+++ b/eclipse.platform.incubator/pass1/compare-log.txt
@@ -0,0 +1,15 @@
+Verifying trunk
+Traceback (most recent call last):
+ File "/shared/eclipse/e4/git/cvs/cvs2svn-trunk/contrib/verify-cvs2svn.py", line 672, in <module>
+ main(sys.argv)
+ File "/shared/eclipse/e4/git/cvs/cvs2svn-trunk/contrib/verify-cvs2svn.py", line 662, in main
+ verify_contents(failures, cvsrepos, verifyrepos, options)
+ File "/shared/eclipse/e4/git/cvs/cvs2svn-trunk/contrib/verify-cvs2svn.py", line 524, in verify_contents
+ failures, cvsrepos, verifyrepos, 'trunk', None, ctx
+ File "/shared/eclipse/e4/git/cvs/cvs2svn-trunk/contrib/verify-cvs2svn.py", line 492, in verify_contents_single
+ verifyrepos.export_trunk(vrf_export_dir)
+ File "/shared/eclipse/e4/git/cvs/cvs2svn-trunk/contrib/verify-cvs2svn.py", line 307, in export_trunk
+ self.branches() # ensure _have_default is set
+ File "/shared/eclipse/e4/git/cvs/cvs2svn-trunk/contrib/verify-cvs2svn.py", line 328, in branches
+ branches = split_output(cmd)
+TypeError: split_output() takes exactly 2 arguments (1 given)
diff --git a/eclipse.platform.incubator/pass1/cvs2git.options b/eclipse.platform.incubator/pass1/cvs2git.options
new file mode 100644
index 0000000..67a7b53
--- /dev/null
+++ b/eclipse.platform.incubator/pass1/cvs2git.options
@@ -0,0 +1,697 @@
+# (Be in -*- mode: python; coding: utf-8 -*- mode.)
+#
+# ====================================================================
+# Copyright (c) 2006-2010 CollabNet. All rights reserved.
+#
+# This software is licensed as described in the file COPYING, which
+# you should have received as part of this distribution. The terms
+# are also available at http://subversion.tigris.org/license-1.html.
+# If newer versions of this license are posted there, you may use a
+# newer version instead, at your option.
+#
+# This software consists of voluntary contributions made by many
+# individuals. For exact contribution history, see the revision
+# history and logs, available at http://cvs2svn.tigris.org/.
+# ====================================================================
+
+# #####################
+# ## PLEASE READ ME! ##
+# #####################
+#
+# This is a template for an options file that can be used to configure
+# cvs2svn to convert to git rather than to Subversion. See
+# www/cvs2git.html and www/cvs2svn.html for general information, and
+# see the comments in this file for information about what options are
+# available and how they can be set.
+#
+# The program that is run to convert from CVS to git is called
+# cvs2git. Run it with the --options option, passing it this file
+# like this:
+#
+# cvs2git --options=cvs2git-example.options
+#
+# The output of cvs2git is a blob file and a dump file that can be
+# loaded into git using the "git fast-import" command. Please read
+# www/cvs2git.html for more information.
+#
+# Many options do not have defaults, so it is easier to copy this file
+# and modify what you need rather than creating a new options file
+# from scratch. This file is in Python syntax, but you don't need to
+# know Python to modify it. But if you *do* know Python, then you
+# will be happy to know that you can use arbitary Python constructs to
+# do fancy configuration tricks.
+#
+# But please be aware of the following:
+#
+# * In many places, leading whitespace is significant in Python (it is
+# used instead of curly braces to group statements together).
+# Therefore, if you don't know what you are doing, it is best to
+# leave the whitespace as it is.
+#
+# * In normal strings, Python treats a backslash ("\") as an escape
+# character. Therefore, if you want to specify a string that
+# contains a backslash, you need either to escape the backslash with
+# another backslash ("\\"), or use a "raw string", as in one if the
+# following equivalent examples:
+#
+# cvs_executable = 'c:\\windows\\system32\\cvs.exe'
+# cvs_executable = r'c:\windows\system32\cvs.exe'
+#
+# See http://docs.python.org/tutorial/introduction.html#strings for
+# more information.
+#
+# Two identifiers will have been defined before this file is executed,
+# and can be used freely within this file:
+#
+# ctx -- a Ctx object (see cvs2svn_lib/context.py), which holds
+# many configuration options
+#
+# run_options -- an instance of the GitRunOptions class (see
+# cvs2svn_lib/git_run_options.py), which holds some variables
+# governing how cvs2git is run
+
+
+# Import some modules that are used in setting the options:
+import os
+
+from cvs2svn_lib import config
+from cvs2svn_lib import changeset_database
+from cvs2svn_lib.common import CVSTextDecoder
+from cvs2svn_lib.log import logger
+from cvs2svn_lib.project import Project
+from cvs2svn_lib.git_revision_collector import GitRevisionCollector
+from cvs2svn_lib.external_blob_generator import ExternalBlobGenerator
+from cvs2svn_lib.git_output_option import GitRevisionMarkWriter
+from cvs2svn_lib.git_output_option import GitOutputOption
+from cvs2svn_lib.dvcs_common import KeywordHandlingPropertySetter
+from cvs2svn_lib.revision_manager import NullRevisionCollector
+from cvs2svn_lib.rcs_revision_manager import RCSRevisionReader
+from cvs2svn_lib.cvs_revision_manager import CVSRevisionReader
+from cvs2svn_lib.symbol_strategy import AllBranchRule
+from cvs2svn_lib.symbol_strategy import AllTagRule
+from cvs2svn_lib.symbol_strategy import BranchIfCommitsRule
+from cvs2svn_lib.symbol_strategy import ExcludeRegexpStrategyRule
+from cvs2svn_lib.symbol_strategy import ForceBranchRegexpStrategyRule
+from cvs2svn_lib.symbol_strategy import ForceTagRegexpStrategyRule
+from cvs2svn_lib.symbol_strategy import ExcludeTrivialImportBranchRule
+from cvs2svn_lib.symbol_strategy import ExcludeVendorBranchRule
+from cvs2svn_lib.symbol_strategy import HeuristicStrategyRule
+from cvs2svn_lib.symbol_strategy import UnambiguousUsageRule
+from cvs2svn_lib.symbol_strategy import HeuristicPreferredParentRule
+from cvs2svn_lib.symbol_strategy import SymbolHintsFileRule
+from cvs2svn_lib.symbol_transform import ReplaceSubstringsSymbolTransform
+from cvs2svn_lib.symbol_transform import RegexpSymbolTransform
+from cvs2svn_lib.symbol_transform import IgnoreSymbolTransform
+from cvs2svn_lib.symbol_transform import NormalizePathsSymbolTransform
+from cvs2svn_lib.property_setters import AutoPropsPropertySetter
+from cvs2svn_lib.property_setters import ConditionalPropertySetter
+from cvs2svn_lib.property_setters import cvs_file_is_binary
+from cvs2svn_lib.property_setters import CVSBinaryFileDefaultMimeTypeSetter
+from cvs2svn_lib.property_setters import CVSBinaryFileEOLStyleSetter
+from cvs2svn_lib.property_setters import DefaultEOLStyleSetter
+from cvs2svn_lib.property_setters import EOLStyleFromMimeTypeSetter
+from cvs2svn_lib.property_setters import ExecutablePropertySetter
+from cvs2svn_lib.property_setters import KeywordsPropertySetter
+from cvs2svn_lib.property_setters import MimeMapper
+from cvs2svn_lib.property_setters import SVNBinaryFileKeywordsPropertySetter
+
+# To choose the level of logging output, uncomment one of the
+# following lines:
+#logger.log_level = logger.WARN
+#logger.log_level = logger.QUIET
+logger.log_level = logger.NORMAL
+#logger.log_level = logger.VERBOSE
+#logger.log_level = logger.DEBUG
+
+
+# The directory to use for temporary files:
+ctx.tmpdir = r'cvs2svn-tmp'
+
+# During FilterSymbolsPass, cvs2git records the contents of file
+# revisions into a "blob" file in git-fast-import format. The
+# ctx.revision_collector option configures that process. Choose one of the two ersions and customize its options.
+
+# This first alternative is much slower but is better tested and has a
+# chance of working with CVSNT repositories. It invokes CVS or RCS to
+# reconstuct the contents of CVS file revisions:
+#ctx.revision_collector = GitRevisionCollector(
+ # The file in which to write the git-fast-import stream that
+ # contains the file revision contents:
+# 'cvs2svn-tmp/git-blob.dat',
+
+ # The following option specifies how the revision contents of the
+ # RCS files should be read.
+ #
+ # RCSRevisionReader uses RCS's "co" program to extract the
+ # revision contents of the RCS files during CollectRevsPass. The
+ # constructor argument specifies how to invoke the "co"
+ # executable.
+ #
+ # CVSRevisionReader uses the "cvs" program to extract the revision
+ # contents out of the RCS files during OutputPass. This option is
+ # considerably slower than RCSRevisionReader because "cvs" is
+ # considerably slower than "co". However, it works in some
+ # situations where RCSRevisionReader fails; see the HTML
+ # documentation of the "--use-cvs" option for details. The
+ # constructor argument specifies how to invoke the "co"
+ # executable.
+ #
+ # Uncomment one of the two following lines:
+ #RCSRevisionReader(co_executable=r'co'),
+# CVSRevisionReader(cvs_executable=r'cvs'),
+# )
+# This second alternative is vastly faster than the version above. It
+# uses an external Python program to reconstruct the contents of CVS
+# file revisions:
+ctx.revision_collector = ExternalBlobGenerator('cvs2svn-tmp/git-blob.dat')
+
+# cvs2git doesn't need a revision reader because OutputPass only
+# refers to blobs that were output during CollectRevsPass, so leave
+# this option set to None.
+ctx.revision_reader = None
+
+# Change the following line to True if the conversion should only
+# include the trunk of the repository (i.e., all branches and tags
+# should be omitted from the conversion):
+ctx.trunk_only = False
+
+# How to convert CVS author names, log messages, and filenames to
+# Unicode. The first argument to CVSTextDecoder is a list of encoders
+# that are tried in order in 'strict' mode until one of them succeeds.
+# If none of those succeeds, then fallback_encoder (if it is
+# specified) is used in lossy 'replace' mode. Setting a fallback
+# encoder ensures that the encoder always succeeds, but it can cause
+# information loss.
+ctx.cvs_author_decoder = CVSTextDecoder(
+ [
+ 'utf8',
+ 'latin1',
+ 'ascii',
+ ],
+ #fallback_encoding='ascii'
+ )
+ctx.cvs_log_decoder = CVSTextDecoder(
+ [
+ 'utf8',
+ 'latin1',
+ 'ascii',
+ ],
+ #fallback_encoding='ascii',
+ eol_fix='\n',
+ )
+# You might want to be especially strict when converting filenames to
+# Unicode (e.g., maybe not specify a fallback_encoding).
+ctx.cvs_filename_decoder = CVSTextDecoder(
+ [
+ #'utf8',
+ #'latin1',
+ 'ascii',
+ ],
+ #fallback_encoding='ascii'
+ )
+
+# Template for the commit message to be used for initial project
+# commits.
+ctx.initial_project_commit_message = (
+ 'Standard project directories initialized by cvs2svn.'
+ )
+
+# Template for the commit message to be used for post commits, in
+# which modifications to a vendor branch are copied back to trunk.
+# This message can use '%(revnum)d' to include the SVN revision number
+# of the revision that included the change to the vendor branch
+# (admittedly rather pointless in a cvs2git conversion).
+ctx.post_commit_message = (
+ 'This commit was generated by cvs2svn to track changes on a CVS '
+ 'vendor branch.'
+ )
+
+# Template for the commit message to be used for commits in which
+# symbols are created. This message can use '%(symbol_type)s' to
+# include the type of the symbol ('branch' or 'tag') or
+# '%(symbol_name)s' to include the name of the symbol.
+ctx.symbol_commit_message = (
+ "This commit was manufactured by cvs2svn to create %(symbol_type)s "
+ "'%(symbol_name)s'."
+ )
+
+# Template for the commit message to be used for commits in which
+# tags are pseudo-merged back to their source branch. This message can
+# use '%(symbol_name)s' to include the name of the symbol.
+# (Not used by default unless you enable tie_tag_fixup_branches on
+# GitOutputOption.)
+ctx.tie_tag_ancestry_message = (
+ "This commit was manufactured by cvs2svn to tie ancestry for "
+ "tag '%(symbol_name)s' back to the source branch."
+ )
+
+# Some CVS clients for MacOS store resource fork data into CVS along
+# with the file contents itself by wrapping it all up in a container
+# format called "AppleSingle". Subversion currently does not support
+# MacOS resource forks. Nevertheless, sometimes the resource fork
+# information is not necessary and can be discarded. Set the
+# following option to True if you would like cvs2svn to identify files
+# whose contents are encoded in AppleSingle format, and discard all
+# but the data fork for such files before committing them to
+# Subversion. (Please note that AppleSingle contents are identified
+# by the AppleSingle magic number as the first four bytes of the file.
+# This check is not failproof, so only set this option if you think
+# you need it.)
+ctx.decode_apple_single = False
+
+# This option can be set to the name of a filename to which are stored
+# statistics and conversion decisions about the CVS symbols.
+#ctx.symbol_info_filename = None
+ctx.symbol_info_filename = 'symbol-info.txt'
+
+# cvs2svn uses "symbol strategy rules" to help decide how to handle
+# CVS symbols. The rules in a project's symbol_strategy_rules are
+# applied in order, and each rule is allowed to modify the symbol.
+# The result (after each of the rules has been applied) is used for
+# the conversion.
+#
+# 1. A CVS symbol might be used as a tag in one file and as a branch
+# in another file. cvs2svn has to decide whether to convert such a
+# symbol as a tag or as a branch. cvs2svn uses a series of
+# heuristic rules to decide how to convert a symbol. The user can
+# override the default rules for specific symbols or symbols
+# matching regular expressions.
+#
+# 2. cvs2svn is also capable of excluding symbols from the conversion
+# (provided no other symbols depend on them.
+#
+# 3. CVS does not record unambiguously the line of development from
+# which a symbol sprouted. cvs2svn uses a heuristic to choose a
+# symbol's "preferred parents".
+#
+# The standard branch/tag/exclude StrategyRules do not change a symbol
+# that has already been processed by an earlier rule, so in effect the
+# first matching rule is the one that is used.
+
+global_symbol_strategy_rules = [
+ # It is possible to specify manually exactly how symbols should be
+ # converted and what line of development should be used as the
+ # preferred parent. To do so, create a file containing the symbol
+ # hints and enable the following option.
+ #
+ # The format of the hints file is described in the documentation
+ # for the --symbol-hints command-line option. The file output by
+ # the --write-symbol-info (i.e., ctx.symbol_info_filename) option
+ # is in the same format. The simplest way to use this option is
+ # to run the conversion through CollateSymbolsPass with
+ # --write-symbol-info option, copy the symbol info and edit it to
+ # create a hints file, then re-start the conversion at
+ # CollateSymbolsPass with this option enabled.
+ #SymbolHintsFileRule('symbol-hints2.txt'),
+
+ # To force all symbols matching a regular expression to be
+ # converted as branches, add rules like the following:
+ #ForceBranchRegexpStrategyRule(r'branch.*'),
+
+ # To force all symbols matching a regular expression to be
+ # converted as tags, add rules like the following:
+ #ForceTagRegexpStrategyRule(r'tag.*'),
+
+ # To force all symbols matching a regular expression to be
+ # excluded from the conversion, add rules like the following:
+ #ExcludeRegexpStrategyRule(r'unknown-.*'),
+
+ # Sometimes people use "cvs import" to get their own source code
+ # into CVS. This practice creates a vendor branch 1.1.1 and
+ # imports the code onto the vendor branch as 1.1.1.1, then copies
+ # the same content to the trunk as version 1.1. Normally, such
+ # vendor branches are useless and they complicate the SVN history
+ # unnecessarily. The following rule excludes any branches that
+ # only existed as a vendor branch with a single import (leaving
+ # only the 1.1 revision). If you want to retain such branches,
+ # comment out the following line. (Please note that this rule
+ # does not exclude vendor *tags*, as they are not so easy to
+ # identify.)
+ ExcludeTrivialImportBranchRule(),
+
+ # To exclude all vendor branches (branches that had "cvs import"s
+ # on them but no other kinds of commits), uncomment the following
+ # line:
+ #ExcludeVendorBranchRule(),
+
+ # Usually you want this rule, to convert unambiguous symbols
+ # (symbols that were only ever used as tags or only ever used as
+ # branches in CVS) the same way they were used in CVS:
+ UnambiguousUsageRule(),
+
+ # If there was ever a commit on a symbol, then it cannot be
+ # converted as a tag. This rule causes all such symbols to be
+ # converted as branches. If you would like to resolve such
+ # ambiguities manually, comment out the following line:
+ BranchIfCommitsRule(),
+
+ # Last in the list can be a catch-all rule that is used for
+ # symbols that were not matched by any of the more specific rules
+ # above. (Assuming that BranchIfCommitsRule() was included above,
+ # then the symbols that are still indeterminate at this point can
+ # sensibly be converted as branches or tags.) Include at most one
+ # of these lines. If none of these catch-all rules are included,
+ # then the presence of any ambiguous symbols (that haven't been
+ # disambiguated above) is an error:
+
+ # Convert ambiguous symbols based on whether they were used more
+ # often as branches or as tags:
+ HeuristicStrategyRule(),
+ # Convert all ambiguous symbols as branches:
+ #AllBranchRule(),
+ # Convert all ambiguous symbols as tags:
+ #AllTagRule(),
+
+ # The last rule is here to choose the preferred parent of branches
+ # and tags, that is, the line of development from which the symbol
+ # sprouts.
+ HeuristicPreferredParentRule(),
+ ]
+
+# Specify a username to be used for commits for which CVS doesn't
+# record the original author (for example, the creation of a branch).
+# This should be a simple (unix-style) username, but it can be
+# translated into a git-style name by the author_transforms map.
+ctx.username = 'cvs2svn'
+
+# ctx.file_property_setters and ctx.revision_property_setters contain
+# rules used to set the svn properties on files in the converted
+# archive. For each file, the rules are tried one by one. Any rule
+# can add or suppress one or more svn properties. Typically the rules
+# will not overwrite properties set by a previous rule (though they
+# are free to do so). ctx.file_property_setters should be used for
+# properties that remain the same for the life of the file; these
+# should implement FilePropertySetter. ctx.revision_property_setters
+# should be used for properties that are allowed to vary from revision
+# to revision; these should implement RevisionPropertySetter.
+#
+# Obviously, SVN properties per se are not interesting for a cvs2git
+# conversion, but some of these properties have side-effects that do
+# affect the git output. FIXME: Document this in more detail.
+ctx.file_property_setters.extend([
+ # To read auto-props rules from a file, uncomment the following line
+ # and specify a filename. The boolean argument specifies whether
+ # case should be ignored when matching filenames to the filename
+ # patterns found in the auto-props file:
+ #AutoPropsPropertySetter(
+ # r'/home/username/.subversion/config',
+ # ignore_case=True,
+ # ),
+
+ # To read mime types from a file and use them to set svn:mime-type
+ # based on the filename extensions, uncomment the following line
+ # and specify a filename (see
+ # http://en.wikipedia.org/wiki/Mime.types for information about
+ # mime.types files):
+ #MimeMapper(r'/etc/mime.types', ignore_case=False),
+
+ # Omit the svn:eol-style property from any files that are listed
+ # as binary (i.e., mode '-kb') in CVS:
+ CVSBinaryFileEOLStyleSetter(),
+
+ # If the file is binary and its svn:mime-type property is not yet
+ # set, set svn:mime-type to 'application/octet-stream'.
+ CVSBinaryFileDefaultMimeTypeSetter(),
+
+ # To try to determine the eol-style from the mime type, uncomment
+ # the following line:
+ #EOLStyleFromMimeTypeSetter(),
+
+ # Choose one of the following lines to set the default
+ # svn:eol-style if none of the above rules applied. The argument
+ # is the svn:eol-style that should be applied, or None if no
+ # svn:eol-style should be set (i.e., the file should be treated as
+ # binary).
+ #
+ # The default is to treat all files as binary unless one of the
+ # previous rules has determined otherwise, because this is the
+ # safest approach. However, if you have been diligent about
+ # marking binary files with -kb in CVS and/or you have used the
+ # above rules to definitely mark binary files as binary, then you
+ # might prefer to use 'native' as the default, as it is usually
+ # the most convenient setting for text files. Other possible
+ # options: 'CRLF', 'CR', 'LF'.
+ DefaultEOLStyleSetter(None),
+ #DefaultEOLStyleSetter('native'),
+
+ # Prevent svn:keywords from being set on files that have
+ # svn:eol-style unset.
+ SVNBinaryFileKeywordsPropertySetter(),
+
+ # If svn:keywords has not been set yet, set it based on the file's
+ # CVS mode:
+ KeywordsPropertySetter(config.SVN_KEYWORDS_VALUE),
+
+ # Set the svn:executable flag on any files that are marked in CVS as
+ # being executable:
+ ExecutablePropertySetter(),
+
+ # The following causes keywords to be untouched in binary files and
+ # collapsed in all text to be committed:
+ ConditionalPropertySetter(
+ cvs_file_is_binary, KeywordHandlingPropertySetter('untouched'),
+ ),
+ KeywordHandlingPropertySetter('collapsed'),
+
+ ])
+ctx.revision_property_setters.extend([
+ ])
+
+# To skip the cleanup of temporary files, uncomment the following
+# option:
+ctx.skip_cleanup = True
+
+
+# In CVS, it is perfectly possible to make a single commit that
+# affects more than one project or more than one branch of a single
+# project. Subversion also allows such commits. Therefore, by
+# default, when cvs2svn sees what looks like a cross-project or
+# cross-branch CVS commit, it converts it into a
+# cross-project/cross-branch Subversion commit.
+#
+# However, other tools and SCMs have trouble representing
+# cross-project or cross-branch commits. (For example, Trac's Revtree
+# plugin, http://www.trac-hacks.org/wiki/RevtreePlugin is confused by
+# such commits.) Therefore, we provide the following two options to
+# allow cross-project/cross-branch commits to be suppressed.
+
+# cvs2git only supports single-project conversions (multiple-project
+# conversions wouldn't really make sense for git anyway). So this
+# option must be set to False:
+ctx.cross_project_commits = False
+
+# git itself doesn't allow commits that affect more than one branch,
+# so this option must be set to False:
+ctx.cross_branch_commits = False
+
+# cvs2git does not yet handle translating .cvsignore files into
+# .gitignore files, so by default, the .cvsignore files are included
+# in the conversion output. If you would like to omit the .cvsignore
+# files from the output, set this option to False:
+ctx.keep_cvsignore = True
+
+# By default, it is a fatal error for a CVS ",v" file to appear both
+# inside and outside of an "Attic" subdirectory (this should never
+# happen, but frequently occurs due to botched repository
+# administration). If you would like to retain both versions of such
+# files, change the following option to True, and the attic version of
+# the file will be written to a subdirectory called "Attic" in the
+# output repository:
+ctx.retain_conflicting_attic_files = False
+
+# CVS uses unix login names as author names whereas git requires
+# author names to be of the form "foo <bar>". The default is to set
+# the git author to "cvsauthor <cvsauthor>". author_transforms can be
+# used to map cvsauthor names (e.g., "jrandom") to a true name and
+# email address (e.g., "J. Random <jrandom@example.com>" for the
+# example shown). All strings should be either Unicode strings (i.e.,
+# with "u" as a prefix) or 8-bit strings in the utf-8 encoding. The
+# values can either be strings in the form "name <email>" or tuples
+# (name, email). Please substitute your own project's usernames here
+# to use with the author_transforms option of GitOutputOption below.
+author_transforms={
+
+'aarcher' : ('Adam Archer', 'aarcher'),
+'ahunter' : ('Anthony Hunter', 'ahunter'),
+'airvine' : ('airvine', 'airvine'),
+'aniefer' : ('Andrew Niefer', 'aniefer'),
+'aweinand' : ('aweinand', 'aweinand'),
+'bbiggs' : ('bbiggs', 'bbiggs'),
+'bbokowski' : ('Boris Bokowski', 'bbokowski'),
+'bcabe' : ('Benjamin Cabe', 'bcabe'),
+'bdealwis' : ('Brian Dealwis', 'bdealwis'),
+'bmuskalla' : ('Benjamin Muskalla', 'bmuskalla'),
+'breynolds' : ('breynolds', 'breynolds'),
+'caniszczyk' : ('Chris Aniszczyk', 'caniszczyk'),
+'cdaniel' : ('Krzysztof Daniel', 'cdaniel'),
+'cgoldthor' : ('Chris Goldthorpe', 'cgoldthor'),
+'cknaus' : ('cknaus', 'cknaus'),
+'cmclaren' : ('cmclaren', 'cmclaren'),
+'curtispd' : ('Curtis D\'Entremont', 'curtispd'),
+'darins' : ('darins', 'darins'),
+'davids' : ('davids', 'davids'),
+'david_williams' : ('David Williams', 'david_williams'),
+'deboer' : ('Timothy Deboer', 'deboer'),
+'ffusier' : ('Frederic Fusier', 'ffusier'),
+'dejan' : ('dejan', 'dejan'),
+'dmegert' : ('Dani Megert', 'dmegert'),
+'dorme' : ('Dave Orme', 'dorme'),
+'dpollock' : ('dpollock', 'dpollock'),
+'droberts' : ('Dean Roberts', 'droberts'),
+'drubel' : ('Dan Rubel', 'drubel'),
+'dwilson' : ('dwilson', 'dwilson'),
+'ebb' : ('Ed Burnette', 'ebb'),
+'eduardo' : ('eduardo', 'eduardo'),
+'eidsness' : ('eidsness', 'eidsness'),
+'emoffatt' : ('Eric Moffatt', 'emoffatt'),
+'fuptoniv' : ('Francis Upton IV', 'fuptoniv'),
+'gheorghe' : ('Bogdan Gheorghe', 'gheorghe'),
+'gmendel' : ('gmendel', 'gmendel'),
+'gunnar' : ('Gunnar Wagenknecht', 'gunnar'),
+'hsoliwal' : ('Hitesh Soliwal', 'hsoliwal'),
+'ikhelifi' : ('ikhelifi', 'ikhelifi'),
+'jeem' : ('jeem', 'jeem'),
+'jlebrun' : ('jlebrun', 'jlebrun'),
+'jlemieux' : ('jlemieux', 'jlemieux'),
+'johna' : ('John Arthorne', 'johna'),
+'karice' : ('Karice McIntyre', 'karice'),
+'kevinh' : ('kevinh', 'kevinh'),
+'kevinm' : ('kevinm', 'kevinm'),
+'khorne' : ('khorne', 'khorne'),
+'kmaetzel' : ('kmaetzel', 'kmaetzel'),
+'kmoir' : ('Kim Moir', 'kmoir'),
+'kradloff' : ('kradloff', 'kradloff'),
+'ktoedter' : ('Kai Toedter', 'ktoedter'),
+'lkues' : ('lkues', 'lkues'),
+'lvogel' : ('Lars Vogel', 'lvogel'),
+'marcelop' : ('Marcelo Paternostro', 'marcelop'),
+'melder' : ('melder', 'melder'),
+'mhall' : ('Matthew Hall', 'mhall'),
+'mhatem' : ('mhatem', 'mhatem'),
+'mkeller' : ('Markus Keller', 'mkeller'),
+'mrennie' : ('Michael Rennie', 'mrennie'),
+'mvalenta' : ('mvalenta', 'mvalenta'),
+'mvanmeek' : ('mvanmeek', 'mvanmeek'),
+'nick' : ('Nick Edgar', 'nick'),
+'obesedin' : ('Oleg Besedin', 'obesedin'),
+'omallo' : ('Ovidio Mallo', 'omallo'),
+'prangaraj' : ('Prakash Rangaraj', 'prangaraj'),
+'pwebster' : ('Paul Webster', 'pwebster'),
+'randyg' : ('randyg', 'randyg'),
+'rherrmann' : ('Rudiger Herrmann', 'rherrmann'),
+'rsternber' : ('Ralf Sternberg', 'rsternber'),
+'rsuen' : ('Remy Suen', 'rsuen'),
+'sarsenau' : ('sarsenau', 'sarsenau'),
+'sbeauchamp' : ('Serge Beauchamp', 'sbeauchamp'),
+'sbrandys' : ('Szymon Brandys', 'sbrandys'),
+'sdimitro' : ('Sonia Dimitrov', 'sdimitro'),
+'sfranklin' : ('Susan Franklin', 'sfranklin'),
+'skaegi' : ('Simon Kaegi', 'skaegi'),
+'sxenos' : ('sxenos', 'sxenos'),
+'tod' : ('Tod Creasey', 'tod'),
+'tschindl' : ('Thomas Schindl', 'tschindl'),
+'wchoi' : ('wchoi', 'wchoi'),
+'winchest' : ('winchest', 'winchest'),
+'wmelhem' : ('wmelhem', 'wmelhem'),
+'yvyang' : ('Yves YANG', 'yvyang'),
+
+# 'jrandom' : ('J. Random', 'jrandom@example.com'),
+# 'mhagger' : 'Michael Haggerty <mhagger@alum.mit.edu>',
+# 'brane' : (u'Branko Äibej', 'brane@xbc.nu'),
+# 'ringstrom' : 'Tobias Ringström <tobias@ringstrom.mine.nu>',
+# 'dionisos' : (u'Erik Hülsmann', 'e.huelsmann@gmx.net'),
+
+ # This one will be used for commits for which CVS doesn't record
+ # the original author, as explained above.
+ 'cvs2svn' : 'cvs2svn <platform-releng-dev@eclipse.org>',
+ }
+
+# This is the main option that causes cvs2svn to output to a
+# "fastimport"-format dumpfile rather than to Subversion:
+ctx.output_option = GitOutputOption(
+ # The file in which to write the git-fast-import stream that
+ # contains the changesets and branch/tag information:
+ os.path.join(ctx.tmpdir, 'git-dump.dat'),
+
+ # The blobs will be written via the revision recorder, so in
+ # OutputPass we only have to emit references to the blob marks:
+ GitRevisionMarkWriter(),
+
+ # Optional map from CVS author names to git author names:
+ author_transforms=author_transforms,
+ )
+
+# Change this option to True to turn on profiling of cvs2svn (for
+# debugging purposes):
+run_options.profiling = False
+
+
+# Should CVSItem -> Changeset database files be memory mapped? In
+# some tests, using memory mapping speeded up the overall conversion
+# by about 5%. But this option can cause the conversion to fail with
+# an out of memory error if the conversion computer runs out of
+# virtual address space (e.g., when running a very large conversion on
+# a 32-bit operating system). Therefore it is disabled by default.
+# Uncomment the following line to allow these database files to be
+# memory mapped.
+changeset_database.use_mmap_for_cvs_item_to_changeset_table = True
+
+# Now set the project to be converted to git. cvs2git only supports
+# single-project conversions, so this method must only be called
+# once:
+run_options.set_project(
+ # The filesystem path to the part of the CVS repository (*not* a
+ # CVS working copy) that should be converted. This may be a
+ # subdirectory (i.e., a module) within a larger CVS repository.
+ r'/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator',
+
+ # A list of symbol transformations that can be used to rename
+ # symbols in this project.
+ symbol_transforms=[
+ # Use IgnoreSymbolTransforms like the following to completely
+ # ignore symbols matching a regular expression when parsing
+ # the CVS repository, for example to avoid warnings about
+ # branches with two names and to choose the preferred name.
+ # It is *not* recommended to use this instead of
+ # ExcludeRegexpStrategyRule; though more efficient,
+ # IgnoreSymbolTransforms are less flexible and don't exclude
+ # branches correctly. The argument is a Python-style regular
+ # expression that has to match the *whole* CVS symbol name:
+ #IgnoreSymbolTransform(r'nightly-build-tag-.*')
+
+ # RegexpSymbolTransforms transform symbols textually using a
+ # regular expression. The first argument is a Python regular
+ # expression pattern and the second is a replacement pattern.
+ # The pattern is matched against each symbol name. If it
+ # matches the whole symbol name, then the symbol name is
+ # replaced with the corresponding replacement text. The
+ # replacement can include substitution patterns (e.g., r'\1'
+ # or r'\g<name>'). Typically you will want to use raw strings
+ # (strings with a preceding 'r', like shown in the examples)
+ # for the regexp and its replacement to avoid backslash
+ # substitution within those strings.
+ #RegexpSymbolTransform(r'release-(\d+)_(\d+)',
+ # r'release-\1.\2'),
+ #RegexpSymbolTransform(r'release-(\d+)_(\d+)_(\d+)',
+ # r'release-\1.\2.\3'),
+
+ # Simple 1:1 character replacements can also be done. The
+ # following transform, which converts backslashes into forward
+ # slashes, should usually be included:
+ ReplaceSubstringsSymbolTransform('\\','/'),
+
+ # This last rule eliminates leading, trailing, and repeated
+ # slashes within the output symbol names:
+ NormalizePathsSymbolTransform(),
+ ],
+
+ # See the definition of global_symbol_strategy_rules above for a
+ # description of this option:
+ symbol_strategy_rules=global_symbol_strategy_rules,
+
+ # Exclude paths from the conversion. Should be relative to
+ # repository path and use forward slashes:
+ #exclude_paths=['file-to-exclude.txt,v', 'dir/to/exclude'],
+ )
+
+
diff --git a/eclipse.platform.incubator/pass1/cvs2git_log.txt b/eclipse.platform.incubator/pass1/cvs2git_log.txt
new file mode 100644
index 0000000..592b73c
--- /dev/null
+++ b/eclipse.platform.incubator/pass1/cvs2git_log.txt
@@ -0,0 +1,470 @@
+----- pass 1 (CollectRevsPass) -----
+Examining all CVS ',v' files...
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/.classpath,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/.cvsignore,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/build.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/patches/BindingException.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/patches/BindingMessages.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/patches/Realm.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/patches/StalenessObservableValue.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/patches/UpdateListStrategy.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/patches/UpdateSetStrategy.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/patches/UpdateStrategy.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/patches/UpdateValueStrategy.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/patches/ValueChangeEvent.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/patches/ValueChangingEvent.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/patches/Attic/BindingStatus.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/patches/Attic/IdentityWrapper.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/patches/Attic/ListDiff.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/patches/Attic/ListDiffEntry.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/patches/Attic/Pair.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/patches/Attic/SetDiff.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/patches/Attic/ValidationStatus.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/patches/Attic/ValueDiff.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/src/org/eclipse/core/DatabindingCoreLib.gwt.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/src/org/eclipse/core/databinding/DatabindingCoreLib.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.core.databinding.gwt/src/org/eclipse/core/databinding/gwt/observable/GWTRealm.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.equinox.common/.classpath,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.equinox.common/.cvsignore,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.equinox.common/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.equinox.common/build.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.equinox.common/patches/CoreException.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.equinox.common/patches/LocalizationUtils.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.equinox.common/patches/SafeRunner.patch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.equinox.common/src/java/lang/Runnable.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.equinox.common/src/java/lang/ThreadLocal.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.equinox.common/src/org/eclipse/core/RuntimeCoreLib.gwt.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.equinox.common/src/org/eclipse/core/internal/runtime/Attic/Util.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/.classpath,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/.cvsignore,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/about.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/plugin.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/plugin.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/.settings/org.eclipse.jdt.core.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/.settings/org.eclipse.jdt.ui.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/.settings/org.eclipse.pde.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/META-INF/MANIFEST.MF,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/doc/org_eclipse_sound_sounds.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/schema/sounds.exsd,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/src/org/eclipse/sound/Activator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/src/org/eclipse/sound/ISound.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/src/org/eclipse/sound/ISoundManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/src/org/eclipse/sound/SoundSystemException.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/src/org/eclipse/sound/internal/Messages.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/src/org/eclipse/sound/internal/Sound.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/src/org/eclipse/sound/internal/SoundJob.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/src/org/eclipse/sound/internal/SoundManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/src/org/eclipse/sound/internal/URLSound.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound/src/org/eclipse/sound/internal/messages.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound.ui/.classpath,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound.ui/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound.ui/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound.ui/plugin.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound.ui/plugin.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound.ui/.settings/org.eclipse.jdt.core.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound.ui/.settings/org.eclipse.jdt.ui.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound.ui/.settings/org.eclipse.pde.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound.ui/META-INF/MANIFEST.MF,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound.ui/sounds/OMFG.wav,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound.ui/sounds/bp.wav,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound.ui/sounds/failure.wav,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound.ui/sounds/newerror.wav,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound.ui/sounds/noerrors.wav,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound.ui/sounds/success.wav,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound.ui/src/org/eclipse/sound/ui/AllSoundExtensionItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound.ui/src/org/eclipse/sound/ui/PlaySoundHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound.ui/src/org/eclipse/sound/ui/internal/SoundExtensionValues.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.sound.ui/src/org/eclipse/sound/ui/internal/SoundUIActivator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.navigate.search/.classpath,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.navigate.search/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.navigate.search/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.navigate.search/plugin.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.navigate.search/.settings/org.eclipse.jdt.core.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.navigate.search/META-INF/MANIFEST.MF,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.navigate.search/OSGI-INF/l10n/bundle.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.navigate.search/src/org/eclipse/ui/navigate/search/NextPrevSearchEntryHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.releng/.cvsignore,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.releng/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.releng/ATBuildTester.launch,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.releng/builder/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.releng/builder/customTargets.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.releng/builder/patch-ver.xsl,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.releng/builder/runBuild.sh,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.releng/builder/test-output.xsl,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.releng/maps/ui.map,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/.classpath,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/about.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/plugin.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/plugin.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/.settings/org.eclipse.jdt.core.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/.settings/org.eclipse.jdt.ui.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/.settings/org.eclipse.ltk.core.refactoring.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/.settings/org.eclipse.pde.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/META-INF/MANIFEST.MF,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/icons/o_rly.png,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/icons/obj16/bundle.gif,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/icons/obj16/dynamic.gif,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/icons/obj16/selectionview.gif,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/Activator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/Messages.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/SelectionView.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/messages.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/builder/DynamicBuilder.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/builder/DynamicNature.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/dynamic/BundleHistory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/dynamic/BundleListItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/dynamic/BundleParameterValues.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/dynamic/DynamicTools.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/dynamic/LoadUnloadHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/dynamic/Attic/LoadBundleDialogAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/dynamic/Attic/LoadBundleMenu.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/futureWithMenus/dynamic/Attic/BundleHistory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/futureWithMenus/dynamic/Attic/BundleListItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/futureWithMenus/dynamic/Attic/DynamicTools.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/futureWithMenus/dynamic/Attic/LoadUnloadHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/handlers/CheckExtensionsHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/handlers/CheckWorkspaceHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/handlers/GenerateFilesHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/handlers/RunMultipleCommands.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/handlers/ShowClassHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/handlers/ShowWindowContextsHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/handlers/ToggleDynamicProjectNatureHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/oldAction/dynamic/BundleHistory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/oldAction/dynamic/DynamicTools.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/oldAction/dynamic/LoadBundleDialogAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tools/src/org/eclipse/ui/tools/oldAction/dynamic/LoadBundleMenu.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.autopintabs/.classpath,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.autopintabs/.cvsignore,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.autopintabs/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.autopintabs/about.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.autopintabs/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.autopintabs/plugin.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.autopintabs/plugin.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.autopintabs/.settings/org.eclipse.jdt.core.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.autopintabs/.settings/org.eclipse.jdt.ui.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.autopintabs/META-INF/MANIFEST.MF,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.autopintabs/src/org/eclipse/ui/internal/tweaklets/OpenEmptyEditorTabHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.autopintabs/src/org/eclipse/ui/internal/tweaklets/TabBehaviourAutoPin.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.dependencyinjection/.classpath,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.dependencyinjection/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.dependencyinjection/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.dependencyinjection/plugin.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.dependencyinjection/.settings/org.eclipse.jdt.core.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.dependencyinjection/META-INF/MANIFEST.MF,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.dependencyinjection/src/org/eclipse/ui/internal/tweaklets/dependencyinjection/Activator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.dependencyinjection/src/org/eclipse/ui/internal/tweaklets/dependencyinjection/ClassIdentifier.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.dependencyinjection/src/org/eclipse/ui/internal/tweaklets/dependencyinjection/DIEditorPart.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.dependencyinjection/src/org/eclipse/ui/internal/tweaklets/dependencyinjection/DIViewPart.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.dependencyinjection/src/org/eclipse/ui/internal/tweaklets/dependencyinjection/DependencyInjectionInterceptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.dependencyinjection/src/org/eclipse/ui/tweaklets/dependencyinjection/CIFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.dependencyinjection/src/org/eclipse/ui/tweaklets/dependencyinjection/DIFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.dependencyinjection/src/org/eclipse/ui/tweaklets/dependencyinjection/IFocusable.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.dependencyinjection/src/org/eclipse/ui/tweaklets/dependencyinjection/IPartDescription.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.dependencyinjection/src/org/eclipse/ui/tweaklets/dependencyinjection/ISaveable.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.grabfocus/.classpath,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.grabfocus/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.grabfocus/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.grabfocus/plugin.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.grabfocus/plugin.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.grabfocus/.settings/org.eclipse.jdt.core.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.grabfocus/META-INF/MANIFEST.MF,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.grabfocus/src/org/eclipse/ui/tweaklets/grabfocus/Activator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.grabfocus/src/org/eclipse/ui/tweaklets/grabfocus/PreventGrabFocus.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.nomrutabs/.classpath,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.nomrutabs/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.nomrutabs/about.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.nomrutabs/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.nomrutabs/plugin.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.nomrutabs/plugin.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.nomrutabs/.settings/org.eclipse.jdt.core.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.nomrutabs/META-INF/MANIFEST.MF,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.nomrutabs/src/org/eclipse/ui/tweaklets/nomrutabs/NoMRUTabs.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.workingsets/.classpath,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.workingsets/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.workingsets/about.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.workingsets/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.workingsets/plugin.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.workingsets/plugin.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.workingsets/META-INF/MANIFEST.MF,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.workingsets/icons/full/obj16/workset.gif,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.workingsets/src/org/eclipse/ui/tweaklts/workingsets/internal/Activator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.workingsets/src/org/eclipse/ui/tweaklts/workingsets/internal/NewResourceWizardPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.workingsets/src/org/eclipse/ui/tweaklts/workingsets/internal/NewResourceWorkingSetUpdater.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.workingsets/src/org/eclipse/ui/tweaklts/workingsets/internal/TestView.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/bundles/org.eclipse.ui.tweaklets.workingsets/src/org/eclipse/ui/tweaklts/workingsets/internal/WorkingSetExpressionManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/examples/org.eclipse.ui.examples.di/.classpath,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/examples/org.eclipse.ui.examples.di/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/examples/org.eclipse.ui.examples.di/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/examples/org.eclipse.ui.examples.di/plugin.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/examples/org.eclipse.ui.examples.di/.settings/org.eclipse.jdt.core.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/examples/org.eclipse.ui.examples.di/META-INF/MANIFEST.MF,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/examples/org.eclipse.ui.examples.di/src/org/eclipse/ui/examples/di/internal/Attic/SampleComponent.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/examples/org.eclipse.ui.examples.di/src/org/eclipse/ui/internal/examples/di/SampleComponent.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/examples/org.eclipse.ui.examples.di.js/.classpath,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/examples/org.eclipse.ui.examples.di.js/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/examples/org.eclipse.ui.examples.di.js/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/examples/org.eclipse.ui.examples.di.js/plugin.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/examples/org.eclipse.ui.examples.di.js/META-INF/MANIFEST.MF,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/examples/org.eclipse.ui.examples.di.js/js/sample_view.js,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/examples/org.eclipse.ui.examples.di.js/src/org/eclipse/ui/internal/examples/di/js/BundleProxyClassLoader.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/examples/org.eclipse.ui.examples.di.js/src/org/eclipse/ui/internal/examples/di/js/JavascriptFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/examples/org.eclipse.ui.examples.di.js/src/org/eclipse/ui/internal/js/Attic/BundleProxyClassLoader.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/examples/org.eclipse.ui.examples.di.js/src/org/eclipse/ui/internal/js/Attic/JavascriptFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/examples/org.eclipse.ui.examples.di.js/src/org/eclipse/ui/js/Attic/SWTFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.sound.feature/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.sound.feature/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.sound.feature/epl-v10.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.sound.feature/feature.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.sound.feature/feature.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.sound.feature/license.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.test.master.feature/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.test.master.feature/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.test.master.feature/feature.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.test.platform.patch/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.test.platform.patch/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.test.platform.patch/feature.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.test.rcp.patch/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.test.rcp.patch/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.test.rcp.patch/feature.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tools.feature/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tools.feature/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tools.feature/epl-v10.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tools.feature/feature.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tools.feature/feature.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tools.feature/license.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.autopintabs.feature/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.autopintabs.feature/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.autopintabs.feature/epl-v10.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.autopintabs.feature/feature.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.autopintabs.feature/feature.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.autopintabs.feature/license.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.grabfocus.feature/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.grabfocus.feature/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.grabfocus.feature/epl-v10.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.grabfocus.feature/feature.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.grabfocus.feature/feature.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.grabfocus.feature/license.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.nomrutabs.feature/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.nomrutabs.feature/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.nomrutabs.feature/epl-v10.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.nomrutabs.feature/feature.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.nomrutabs.feature/feature.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.nomrutabs.feature/license.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.workingsets.feature/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.workingsets.feature/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.workingsets.feature/epl-v10.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.workingsets.feature/feature.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.workingsets.feature/feature.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/features/org.eclipse.ui.tweaklets.workingsets.feature/license.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/tests/org.eclipse.ui.incubator.testRunner/.classpath,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/tests/org.eclipse.ui.incubator.testRunner/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/tests/org.eclipse.ui.incubator.testRunner/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/tests/org.eclipse.ui.incubator.testRunner/plugin.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/tests/org.eclipse.ui.incubator.testRunner/.settings/org.eclipse.jdt.core.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/tests/org.eclipse.ui.incubator.testRunner/META-INF/MANIFEST.MF,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/tests/org.eclipse.ui.incubator.testRunner/icons/sample.gif,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/tests/org.eclipse.ui.incubator.testRunner/src/org/eclipse/ui/incubator/testrunner/Activator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.incubator/base/eclipse.platform.incubator/tests/org.eclipse.ui.incubator.testRunner/src/org/eclipse/ui/incubator/testrunner/handlers/LaunchTestsHandler.java,v
+Done
+Time for pass1 (CollectRevsPass): 9.499 seconds.
+----- pass 2 (CleanMetadataPass) -----
+Converting metadata to UTF8...
+Done
+Time for pass2 (CleanMetadataPass): 0.078 seconds.
+----- pass 3 (CollateSymbolsPass) -----
+Checking for forced tags with commits...
+Done
+Time for pass3 (CollateSymbolsPass): 0.008 seconds.
+----- pass 4 (FilterSymbolsPass) -----
+Filtering out excluded symbols and summarizing items...
+Starting generate_blobs.py...
+Waiting for generate_blobs.py to finish...
+generate_blobs.py is done.
+Done
+Time for pass4 (FilterSymbolsPass): 3.981 seconds.
+----- pass 5 (SortRevisionsPass) -----
+Sorting CVS revision summaries...
+Done
+Time for pass5 (SortRevisionsPass): 0.026 seconds.
+----- pass 6 (SortSymbolsPass) -----
+Sorting CVS symbol summaries...
+Done
+Time for pass6 (SortSymbolsPass): 0.006 seconds.
+----- pass 7 (InitializeChangesetsPass) -----
+Creating preliminary commit sets...
+Done
+Time for pass7 (InitializeChangesetsPass): 0.054 seconds.
+----- pass 8 (BreakRevisionChangesetCyclesPass) -----
+Breaking revision changeset dependency cycles...
+Done
+Time for pass8 (BreakRevisionChangesetCyclesPass): 0.045 seconds.
+----- pass 9 (RevisionTopologicalSortPass) -----
+Generating CVSRevisions in commit order...
+Done
+Time for pass9 (RevisionTopologicalSortPass): 0.043 seconds.
+----- pass 10 (BreakSymbolChangesetCyclesPass) -----
+Breaking symbol changeset dependency cycles...
+Done
+Time for pass10 (BreakSymbolChangesetCyclesPass): 0.026 seconds.
+----- pass 11 (BreakAllChangesetCyclesPass) -----
+Breaking CVSSymbol dependency loops...
+Done
+Time for pass11 (BreakAllChangesetCyclesPass): 0.041 seconds.
+----- pass 12 (TopologicalSortPass) -----
+Generating CVSRevisions in commit order...
+Done
+Time for pass12 (TopologicalSortPass): 0.048 seconds.
+----- pass 13 (CreateRevsPass) -----
+Mapping CVS revisions to Subversion commits...
+Creating Subversion r1 (Project initialization)
+Creating Subversion r2 (commit)
+Creating Subversion r3 (commit)
+Creating Subversion r4 (commit)
+Creating Subversion r5 (commit)
+Creating Subversion r6 (commit)
+Creating Subversion r7 (commit)
+Creating Subversion r8 (commit)
+Creating Subversion r9 (commit)
+Creating Subversion r10 (commit)
+Creating Subversion r11 (commit)
+Creating Subversion r12 (commit)
+Creating Subversion r13 (commit)
+Creating Subversion r14 (commit)
+Creating Subversion r15 (commit)
+Creating Subversion r16 (commit)
+Creating Subversion r17 (commit)
+Creating Subversion r18 (commit)
+Creating Subversion r19 (commit)
+Creating Subversion r20 (commit)
+Creating Subversion r21 (commit)
+Creating Subversion r22 (commit)
+Creating Subversion r23 (commit)
+Creating Subversion r24 (commit)
+Creating Subversion r25 (commit)
+Creating Subversion r26 (commit)
+Creating Subversion r27 (commit)
+Creating Subversion r28 (commit)
+Creating Subversion r29 (commit)
+Creating Subversion r30 (commit)
+Creating Subversion r31 (commit)
+Creating Subversion r32 (commit)
+Creating Subversion r33 (commit)
+Creating Subversion r34 (commit)
+Creating Subversion r35 (commit)
+Creating Subversion r36 (commit)
+Creating Subversion r37 (commit)
+Creating Subversion r38 (commit)
+Creating Subversion r39 (commit)
+Creating Subversion r40 (commit)
+Creating Subversion r41 (commit)
+Creating Subversion r42 (commit)
+Creating Subversion r43 (commit)
+Creating Subversion r44 (commit)
+Creating Subversion r45 (commit)
+Creating Subversion r46 (commit)
+Creating Subversion r47 (commit)
+Creating Subversion r48 (commit)
+Creating Subversion r49 (commit)
+Creating Subversion r50 (commit)
+Creating Subversion r51 (commit)
+Creating Subversion r52 (commit)
+Creating Subversion r53 (commit)
+Creating Subversion r54 (commit)
+Creating Subversion r55 (commit)
+Creating Subversion r56 (commit)
+Creating Subversion r57 (commit)
+Creating Subversion r58 (commit)
+Creating Subversion r59 (commit)
+Creating Subversion r60 (commit)
+Creating Subversion r61 (commit)
+Creating Subversion r62 (commit)
+Creating Subversion r63 (commit)
+Creating Subversion r64 (commit)
+Creating Subversion r65 (commit)
+Creating Subversion r66 (commit)
+Creating Subversion r67 (commit)
+Creating Subversion r68 (commit)
+Creating Subversion r69 (commit)
+Creating Subversion r70 (commit)
+Creating Subversion r71 (commit)
+Creating Subversion r72 (commit)
+Creating Subversion r73 (commit)
+Creating Subversion r74 (commit)
+Creating Subversion r75 (commit)
+Creating Subversion r76 (commit)
+Creating Subversion r77 (commit)
+Creating Subversion r78 (commit)
+Creating Subversion r79 (commit)
+Creating Subversion r80 (commit)
+Creating Subversion r81 (commit)
+Creating Subversion r82 (commit)
+Creating Subversion r83 (commit)
+Creating Subversion r84 (commit)
+Creating Subversion r85 (commit)
+Creating Subversion r86 (commit)
+Creating Subversion r87 (commit)
+Creating Subversion r88 (commit)
+Creating Subversion r89 (commit)
+Creating Subversion r90 (commit)
+Creating Subversion r91 (commit)
+Creating Subversion r92 (commit)
+Creating Subversion r93 (commit)
+Creating Subversion r94 (commit)
+Creating Subversion r95 (commit)
+Creating Subversion r96 (commit)
+Creating Subversion r97 (commit)
+Creating Subversion r98 (commit)
+Creating Subversion r99 (commit)
+Creating Subversion r100 (commit)
+Creating Subversion r101 (commit)
+Creating Subversion r102 (commit)
+Done
+Time for pass13 (CreateRevsPass): 0.057 seconds.
+----- pass 14 (SortSymbolOpeningsClosingsPass) -----
+Sorting symbolic name source revisions...
+Done
+Time for pass14 (SortSymbolOpeningsClosingsPass): 0.011 seconds.
+----- pass 15 (IndexSymbolsPass) -----
+Determining offsets for all symbolic names...
+Done.
+Time for pass15 (IndexSymbolsPass): 0.006 seconds.
+----- pass 16 (OutputPass) -----
+Time for pass16 (OutputPass): 0.068 seconds.
+
+cvs2svn Statistics:
+------------------
+Total CVS Files: 270
+Total CVS Revisions: 467
+Total CVS Branches: 0
+Total CVS Tags: 0
+Total Unique Tags: 0
+Total Unique Branches: 0
+CVS Repos Size in KB: 2629
+Total SVN Commits: 102
+First Revision Date: Fri Feb 23 16:57:06 2007
+Last Revision Date: Tue Oct 26 08:48:29 2010
+------------------
+Timings (seconds):
+------------------
+ 9.50 pass1 CollectRevsPass
+ 0.08 pass2 CleanMetadataPass
+ 0.01 pass3 CollateSymbolsPass
+ 3.98 pass4 FilterSymbolsPass
+ 0.03 pass5 SortRevisionsPass
+ 0.01 pass6 SortSymbolsPass
+ 0.05 pass7 InitializeChangesetsPass
+ 0.05 pass8 BreakRevisionChangesetCyclesPass
+ 0.04 pass9 RevisionTopologicalSortPass
+ 0.03 pass10 BreakSymbolChangesetCyclesPass
+ 0.04 pass11 BreakAllChangesetCyclesPass
+ 0.05 pass12 TopologicalSortPass
+ 0.06 pass13 CreateRevsPass
+ 0.01 pass14 SortSymbolOpeningsClosingsPass
+ 0.01 pass15 IndexSymbolsPass
+ 0.07 pass16 OutputPass
+14.00 total
diff --git a/eclipse.platform.incubator/pass1/symbol-info.txt b/eclipse.platform.incubator/pass1/symbol-info.txt
new file mode 100644
index 0000000..068988d
--- /dev/null
+++ b/eclipse.platform.incubator/pass1/symbol-info.txt
@@ -0,0 +1,3 @@
+# Columns: project_id symbol_name conversion symbol_path preferred_parent_name
+0 .trunk. trunk . .
+ # 'Trunk' is a tag in 0 files, a branch in 270 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 270 files
diff --git a/eclipse.platform.incubator/pass1/tag_report.sh b/eclipse.platform.incubator/pass1/tag_report.sh
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/eclipse.platform.incubator/pass1/tag_report.sh
diff --git a/eclipse.platform.incubator/pass1/tags.txt b/eclipse.platform.incubator/pass1/tags.txt
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/eclipse.platform.incubator/pass1/tags.txt

Back to the top