当前位置: 首页>>代码示例>>Python>>正文


Python Command.__init__方法代码示例

本文整理汇总了Python中cerbero.commands.Command.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python Command.__init__方法的具体用法?Python Command.__init__怎么用?Python Command.__init__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在cerbero.commands.Command的用法示例。


在下文中一共展示了Command.__init__方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: from cerbero.commands import Command [as 别名]
# 或者: from cerbero.commands.Command import __init__ [as 别名]
 def __init__(self):
     Command.__init__(self,
         [ArgparseArgument('package', nargs='*',
                          help=_('name of the package to create')),
         ArgparseArgument('-o', '--output-dir', default='.',
                          help=_('Output directory for the tarball file')),
         ArgparseArgument('-t', '--type', type=str, default='native',
             choices=['native', ArchiveType.TARBALL , ArchiveType.ZIP],
             help=_('Choose a package type, native or archive')),
         ArgparseArgument('-f', '--force', action='store_true',
             default=False, help=_('Delete any existing package file')),
         ArgparseArgument('-d', '--no-devel', action='store_true',
             default=False, help=_('Do not create the development version '
                 'of this package')),
         ArgparseArgument('-s', '--skip-deps-build', action='store_true',
             default=False, help=_('Do not build the recipes needed to '
                 'create this package (conflicts with --only-build-deps)')),
         ArgparseArgument('-b', '--only-build-deps', action='store_true',
             default=False, help=_('Only build the recipes needed to '
                 'create this package (conflicts with --skip-deps-build)')),
         ArgparseArgument('-k', '--keep-temp', action='store_true',
             default=False, help=_('Keep temporary files for debug')),
         ArgparseArgument('-u', '--use-binaries', action='store_true',
             default=False,
             help=_('use binaries from the repo before building')),
         ArgparseArgument('-p', '--upload-binaries', action='store_true',
             default=False,
             help=_('after a recipe is built upload the corresponding binary package')),
         ArgparseArgument('-m', '--build-missing', action='store_true',
             default=False,
             help=_('in case a binary package is missing try to build it')),
         ])
开发者ID:fluendo,项目名称:cerbero,代码行数:34,代码来源:package.py

示例2: __init__

# 需要导入模块: from cerbero.commands import Command [as 别名]
# 或者: from cerbero.commands.Command import __init__ [as 别名]
 def __init__(self):
     Command.__init__(self,
         [ArgparseArgument('recipe', nargs=1,
                          help=_('name of the recipe to run checks on')),
         ArgparseArgument('--recursive', action='store_true', default=False,
                          help=_('Recursively run checks on dependencies')),
         ])
开发者ID:centricular,项目名称:cerbero,代码行数:9,代码来源:check.py

示例3: __init__

# 需要导入模块: from cerbero.commands import Command [as 别名]
# 或者: from cerbero.commands.Command import __init__ [as 别名]
    def __init__(self):
        self.supported_licenses = {}
        l = License
        for name in l.__dict__:
            attr = getattr(l, name)
            if not isinstance(attr, LicenseDescription):
                continue
            self.supported_licenses[attr.acronym] = name

        Command.__init__(self,
            [ArgparseArgument('name', nargs=1,
                             help=_('name of the recipe')),
            ArgparseArgument('version', nargs=1,
                             help=_('version of the recipe')),
            ArgparseArgument('-l', '--licenses', default='',
                             help=_('comma separated list of the recipe '
                                    'licenses. Supported licenses: %s') %
                                    ', '.join(list(self.supported_licenses.keys()))),
            ArgparseArgument('-c', '--commit', default='',
                             help=_('commit to use '
                                    '(default to "sdk-$version")')),
            ArgparseArgument('-o', '--origin', default='',
                             help=_('the origin repository of the recipe')),
            ArgparseArgument('-d', '--deps', default='',
                             help=_('comma separated list of the recipe '
                                    'dependencies')),
            ArgparseArgument('-f', '--force', action='store_true',
                default=False, help=_('Replace recipe if existing'))])
开发者ID:centricular,项目名称:cerbero,代码行数:30,代码来源:add_recipe.py

示例4: __init__

# 需要导入模块: from cerbero.commands import Command [as 别名]
# 或者: from cerbero.commands.Command import __init__ [as 别名]
    def __init__(self, force=None, no_deps=None):
            args = [
                ArgparseArgument('recipe', nargs='*',
                    help=_('name of the recipe to build')),
                ArgparseArgument('--missing-files', action='store_true',
                    default=False,
                    help=_('prints a list of files installed that are '
                           'listed in the recipe')),
                ArgparseArgument('--dry-run', action='store_true',
                    default=False,
                    help=_('only print commands instead of running them ')),
                ArgparseArgument('--use-binaries', action='store_true',
                    default=False,
                    help=_('use binaries from the repo before building')),
                ArgparseArgument('--upload-binaries', action='store_true',
                    default=False,
                    help=_('after a recipe is built upload the corresponding binary package')),
                ArgparseArgument('--build-missing', action='store_true',
                    default=False,
                    help=_('in case a binary package is missing try to build it'))]
            if force is None:
                args.append(
                    ArgparseArgument('--force', action='store_true',
                        default=False,
                        help=_('force the build of the recipe ingoring '
                                    'its cached state')))
            if no_deps is None:
                args.append(
                    ArgparseArgument('--no-deps', action='store_true',
                        default=False,
                        help=_('do not build dependencies')))

            self.force = force
            self.no_deps = no_deps
            Command.__init__(self, args)
开发者ID:fluendo,项目名称:cerbero,代码行数:37,代码来源:build.py

示例5: __init__

# 需要导入模块: from cerbero.commands import Command [as 别名]
# 或者: from cerbero.commands.Command import __init__ [as 别名]
 def __init__(self, args=[]):
     args.append(ArgparseArgument('--reset-rdeps', action='store_true',
                 default=False, help=_('reset the status of reverse '
                 'dependencies too')))
     args.append(ArgparseArgument('--full-reset', action='store_true',
                 default=False, help=_('reset to extract step if rebuild is needed')))
     Command.__init__(self, args)
开发者ID:AlertMe,项目名称:cerbero,代码行数:9,代码来源:fetch.py

示例6: __init__

# 需要导入模块: from cerbero.commands import Command [as 别名]
# 或者: from cerbero.commands.Command import __init__ [as 别名]
    def __init__(self, force=None, no_deps=None):
            args = [
                ArgparseArgument('recipe', nargs='*',
                    help=_('name of the recipe to build')),
                ArgparseArgument('--missing-files', action='store_true',
                    default=False,
                    help=_('prints a list of files installed that are '
                           'listed in the recipe')),
                ArgparseArgument('--dry-run', action='store_true',
                    default=False,
                    help=_('only print commands instead of running them '))]
            if force is None:
                args.append(
                    ArgparseArgument('--force', action='store_true',
                        default=False,
                        help=_('force the build of the recipe ingoring '
                                    'its cached state')))
            if no_deps is None:
                args.append(
                    ArgparseArgument('--no-deps', action='store_true',
                        default=False,
                        help=_('do not build dependencies')))

            self.force = force
            self.no_deps = no_deps
            Command.__init__(self, args)
开发者ID:AlertMe,项目名称:cerbero,代码行数:28,代码来源:build.py

示例7: __init__

# 需要导入模块: from cerbero.commands import Command [as 别名]
# 或者: from cerbero.commands.Command import __init__ [as 别名]
 def __init__(self):
     Command.__init__(self,
         [ArgparseArgument('package', nargs=1,
                          help=_('name of the package to create')),
         ArgparseArgument('-o', '--output-dir', default='.',
                          help=_('Output directory for the tarball file')),
         ArgparseArgument('-t', '--tarball', action='store_true',
             default=False,
             help=_('Creates a tarball instead of a native package')),
         ArgparseArgument('-n', '--no-split', action='store_true',
             default=False,
             help=_('(only meaningfull when --tarball is set) Create one single '
                    'tarball with devel and runtime files')),
         ArgparseArgument('-f', '--force', action='store_true',
             default=False, help=_('Delete any existing package file')),
         ArgparseArgument('-d', '--no-devel', action='store_false',
             default=True, help=_('Do not create the development version '
                 'of this package')),
         ArgparseArgument('-s', '--skip-deps-build', action='store_true',
             default=False, help=_('Do not build the recipes needed to '
                 'create this package (conflicts with --only-build-deps)')),
         ArgparseArgument('-b', '--only-build-deps', action='store_true',
             default=False, help=_('Only build the recipes needed to '
                 'create this package (conflicts with --skip-deps-build)')),
         ArgparseArgument('-k', '--keep-temp', action='store_true',
             default=False, help=_('Keep temporary files for debug')),
         ])
开发者ID:GStreamer,项目名称:cerbero,代码行数:29,代码来源:package.py

示例8: __init__

# 需要导入模块: from cerbero.commands import Command [as 别名]
# 或者: from cerbero.commands.Command import __init__ [as 别名]
 def __init__(self):
     Command.__init__(self,
         [ArgparseArgument('-o', '--output_dir', default='.',
             help=_('output directory where .vsprops files will be saved')),
          ArgparseArgument('-p', '--prefix', default=DEFAULT_PREFIX_MACRO,
              help=_('name of the prefix environment variable '
                     '(eg:CERBERO_SDK_ROOT_X86)')),
         ])
开发者ID:AlertMe,项目名称:cerbero,代码行数:10,代码来源:genvsprops.py

示例9: __init__

# 需要导入模块: from cerbero.commands import Command [as 别名]
# 或者: from cerbero.commands.Command import __init__ [as 别名]
 def __init__(self):
     Command.__init__(self,
         [ArgparseArgument('package', nargs=1,
                          help=_('name of the package')),
         ArgparseArgument('-l', '--list-files', action='store_true',
             default=False,
             help=_('List all files installed by this package')),
         ])
开发者ID:centricular,项目名称:cerbero,代码行数:10,代码来源:info.py

示例10: __init__

# 需要导入模块: from cerbero.commands import Command [as 别名]
# 或者: from cerbero.commands.Command import __init__ [as 别名]
    def __init__(self):
        args = [
            ArgparseArgument('--use-system-libs', action='store_true',
                    default=False,
                    help=_('add system paths to PKG_CONFIG_PATH')),
        ]

        Command.__init__(self, args)
开发者ID:AlertMe,项目名称:cerbero,代码行数:10,代码来源:shell.py

示例11: __init__

# 需要导入模块: from cerbero.commands import Command [as 别名]
# 或者: from cerbero.commands.Command import __init__ [as 别名]
 def __init__(self):
     Command.__init__(self,
         [ArgparseArgument('recipe', nargs=1,
                          help=_('name of the recipe')),
         ArgparseArgument('--all', action='store_true', default=False,
                          help=_('list all dependencies, including the '
                                 'build ones')),
         ])
开发者ID:BigBrother-International,项目名称:gst-cerbero,代码行数:10,代码来源:deps.py

示例12: __init__

# 需要导入模块: from cerbero.commands import Command [as 别名]
# 或者: from cerbero.commands.Command import __init__ [as 别名]
 def __init__(self):
     args = [
         ArgparseArgument('--dry-run', action='store_true',
             default=False,
             help=_('only print commands instead of running them ')),
         ArgparseArgument('-f', '--force', action='store_true',
             default=False, help=_('Force the creation of the binary package')),
     ]
     Command.__init__(self, args)
开发者ID:fluendo,项目名称:cerbero,代码行数:11,代码来源:genbinaries.py

示例13: __init__

# 需要导入模块: from cerbero.commands import Command [as 别名]
# 或者: from cerbero.commands.Command import __init__ [as 别名]
 def __init__(self):
     Command.__init__(self,
         [ArgparseArgument('cmd', nargs='+',
                          help=_('command to run')),
          ArgparseArgument('-v', '--verbose',
                          action='store_true',
                          default=False,
                          help=_('verbose mode'))
         ])
开发者ID:GStreamer,项目名称:cerbero,代码行数:11,代码来源:runit.py

示例14: __init__

# 需要导入模块: from cerbero.commands import Command [as 别名]
# 或者: from cerbero.commands.Command import __init__ [as 别名]
 def __init__(self):
     Command.__init__(self, [
             ArgparseArgument('--force', action='store_true',
                 default=False,
                 help=_('force the deletion of everything without user '
                        'input')),
             ArgparseArgument('--build-tools', action='store_true',
                 default=False,
                 help=_('wipe the build tools too'))])
开发者ID:deepak6,项目名称:cerbero,代码行数:11,代码来源:wipe.py

示例15: __init__

# 需要导入模块: from cerbero.commands import Command [as 别名]
# 或者: from cerbero.commands.Command import __init__ [as 别名]
 def __init__(self):
     Command.__init__(self,
         [ArgparseArgument('-o', '--output_dir', default='.',
             help=_('output directory where .xcconfig files will be saved')),
         ArgparseArgument('-f', '--filename', default=None,
             help=_('filename of the .xcconfig file')),
         ArgparseArgument('libraries', nargs='*',
             help=_('List of libraries to include')),
         ])
开发者ID:AlertMe,项目名称:cerbero,代码行数:11,代码来源:genxcconfig.py


注:本文中的cerbero.commands.Command.__init__方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。