MCPcopy Index your code
hub / github.com/kivy/python-for-android / bootstraps

Method bootstraps

pythonforandroid/toolchain.py:834–841  ·  view source on GitHub ↗

List all the bootstraps available to build with.

(self, _args)

Source from the content-addressed store, hash-verified

832 .format(recipe=recipe, Fore=Out_Fore))
833
834 def bootstraps(self, _args):
835 """List all the bootstraps available to build with."""
836 for bs in Bootstrap.all_bootstraps():
837 bs = Bootstrap.get_bootstrap(bs, self.ctx)
838 print('{Fore.BLUE}{Style.BRIGHT}{bs.name}{Style.RESET_ALL}'
839 .format(bs=bs, Fore=Out_Fore, Style=Out_Style))
840 print(' {Fore.GREEN}depends: {bs.recipe_depends}{Fore.RESET}'
841 .format(bs=bs, Fore=Out_Fore))
842
843 def clean(self, args):
844 components = args.component

Callers

nothing calls this directly

Calls 3

all_bootstrapsMethod · 0.80
get_bootstrapMethod · 0.80
formatMethod · 0.80

Tested by

no test coverage detected