Esempio n. 1
0
    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)
Esempio n. 2
0
 def __init__(self):
     Command.__init__(self)
     self.tarname = None
     self.topdir = None
Esempio n. 3
0
File: build.py Progetto: dagss/Bento
 def __init__(self, *a, **kw):
     Command.__init__(self, *a, **kw)
     self.section_writer = SectionWriter()
     self.build_type = None
Esempio n. 4
0
 def __init__(self):
     Command.__init__(self)
Esempio n. 5
0
 def __init__(self, *a, **kw):
     Command.__init__(self, *a, **kw)