コード例 #1
0
ファイル: configure.py プロジェクト: dagss/Bento
    def __init__(self):
        Command.__init__(self)
        self._user_opt_groups = {}
        def _dummy(self, o, a):
            pass
        self.option_callback = _dummy
        self.user_data = {}

        # As the configure command line handling is customized from
        # the script file (flags, paths variables), we cannot just
        # call set_options_parser, and we set it up manually instead
        self.reset_parser()
        for opt in self.opts:
            self.parser.add_option(opt)
コード例 #2
0
ファイル: sdist.py プロジェクト: abadger/Bento
 def __init__(self):
     Command.__init__(self)
     self.tarname = None
     self.topdir = None
コード例 #3
0
ファイル: build.py プロジェクト: dagss/Bento
 def __init__(self, *a, **kw):
     Command.__init__(self, *a, **kw)
     self.section_writer = SectionWriter()
     self.build_type = None
コード例 #4
0
ファイル: configure.py プロジェクト: abadger/Bento
 def __init__(self):
     Command.__init__(self)
コード例 #5
0
ファイル: build.py プロジェクト: abadger/Bento
 def __init__(self, *a, **kw):
     Command.__init__(self, *a, **kw)