Esempio n. 1
0
 def __init__(self):
     options = [
         make_option(
             "-d", "--deep", action="store_true", dest="deep", help="Deep clean: erase also downloaded files, etc..."
         )
     ]
     Command.__init__(self, options)
Esempio n. 2
0
 def __init__(self):
     options = [make_option('-e', '--exclude', action='append',
                            dest='exclude',
                            default=[],
                            help='Do not remove packages matching REGEX. Can be specified multiple times.',
                            metavar='REGEX')
                ]
     Command.__init__(self, options)
Esempio n. 3
0
 def __init__(self):
     options = [
         make_option('-d',
                     '--deep',
                     action='store_true',
                     dest='deep',
                     help='Deep clean: erase also downloaded files, etc...')
     ]
     Command.__init__(self, options)
Esempio n. 4
0
 def __init__(self):
     options = [
         make_option('-r',
                     '--remove',
                     action='store_true',
                     dest='remove',
                     help='Remove the packages after disabling them.')
     ]
     Command.__init__(self, options)
Esempio n. 5
0
 def __init__(self):
     options = [make_option('-k', '--keep-intermediate', action='store_true',
                            dest='keep',
                            help='Do not delete intermediate files.'),
                make_option('-c', '--configure_options', action='store',
                            dest='configure_options',
                            default='',
                            help='Options to pass to the configure/setup.py command line.')
                ]
     Command.__init__(self, options)
Esempio n. 6
0
 def __init__(self):
     options = [
         make_option(
             "-c",
             "--clean-before",
             action="store_true",
             dest="clean_before",
             help="Clean sourcedir before building it.",
         ),
         make_option(
             "-s", "--suffix", action="store", dest="suffix", default="", help="Append a suffix to the package name."
         ),
         make_option(
             "-t", "--test", action="store_true", dest="test", help="Run the tests after building the package."
         ),
     ]
     Command.__init__(self, options)
Esempio n. 7
0
 def __init__(self):
     options = [
         make_option('-c',
                     '--clean-before',
                     action='store_true',
                     dest='clean_before',
                     help='Clean sourcedir before building it.'),
         make_option('-s',
                     '--suffix',
                     action='store',
                     dest='suffix',
                     default='',
                     help='Append a suffix to the package name.'),
         make_option('-t',
                     '--test',
                     action='store_true',
                     dest='test',
                     help='Run the tests after building the package.')
     ]
     Command.__init__(self, options)
Esempio n. 8
0
 def __init__(self):
     options = [make_option('-r', '--remove', action='store_true',
                            dest='remove',
                            help='Remove the packages after disabling them.')
                ]
     Command.__init__(self, options)