Example #1
0
    def _get_extraction_options_group(self):
        group = DVCSRunOptions._get_extraction_options_group(self)
        self._add_use_cvs_option(group)
        self._add_use_rcs_option(group)
        self.parser.set_default('use_external_blob_generator', False)
        group.add_option(
            IncompatibleOption(
                '--use-external-blob-generator',
                action='store_true',
                help=(
                    'Use an external Python program to extract file revision '
                    'contents (much faster than --use-rcs or --use-cvs but '
                    'leaves keywords unexpanded and requires a separate, '
                    'seekable blob file to write to in parallel to the main '
                    'cvs2git script.'),
                man_help=
                ('Use an external Python program to extract the file revision '
                 'contents from the RCS files and output them to the blobfile.  '
                 'This option is much faster than \\fB--use-rcs\\fR or '
                 '\\fB--use-cvs\\fR but leaves keywords unexpanded and requires '
                 'a separate, seekable blob file to write to in parallel to the '
                 'main cvs2git script.'),
            ))

        return group
Example #2
0
  def _get_extraction_options_group(self):
    group = DVCSRunOptions._get_extraction_options_group(self)
    self._add_use_cvs_option(group)
    self._add_use_rcs_option(group)
    self.parser.set_default('use_external_blob_generator', False)
    group.add_option(IncompatibleOption(
        '--use-external-blob-generator',
        action='store_true',
        help=(
            'Use an external Python program to extract file revision '
            'contents (much faster than --use-rcs or --use-cvs but '
            'leaves keywords unexpanded and requires a separate, '
            'seekable blob file to write to in parallel to the main '
            'cvs2git script.'
            ),
        man_help=(
            'Use an external Python program to extract the file revision '
            'contents from the RCS files and output them to the blobfile.  '
            'This option is much faster than \\fB--use-rcs\\fR or '
            '\\fB--use-cvs\\fR but leaves keywords unexpanded and requires '
            'a separate, seekable blob file to write to in parallel to the '
            'main cvs2git script.'
            ),
        ))

    return group
Example #3
0
 def _get_extraction_options_group(self):
   group = DVCSRunOptions._get_extraction_options_group(self)
   self._add_use_cvs_option(group)
   self._add_use_rcs_option(group)
   return group
Example #4
0
 def _get_extraction_options_group(self):
   group = DVCSRunOptions._get_extraction_options_group(self)
   self._add_use_internal_co_option(group)
   self._add_use_cvs_option(group)
   self._add_use_rcs_option(group)
   return group