예제 #1
0
    def _build_deps(self, config, package, has_devel):
        build_command = build.Build()

        build_command.runargs(config,
                              package.recipes_dependencies(
                                  has_devel, include_dep_packages=False),
                              cookbook=self.store.cookbook)
예제 #2
0
 def _build_deps(self, config, package, has_devel, offline, dry_run):
     build_command = build.Build()
     build_command.runargs(config,
                           package.recipes_dependencies(has_devel),
                           cookbook=self.store.cookbook,
                           dry_run=dry_run,
                           offline=offline)
예제 #3
0
 def _build_deps(self, config, package):
     build_command = build.Build()
     build_command.runargs(config, package.recipes_dependencies(),
         cookbook=self.store.cookbook)