@@ -81,11 +81,6 @@ def format(self, record):
8181 ('It should work (mostly), but you may experience '
8282 'missing features or bugs.' ),
8383 Style .RESET_ALL ]))
84- info ('' .join ([Fore .RED ,
85- ('See http://inclem.net/files/p4a_revamp_doc/index.html '
86- 'for the current (WIP) documentation.' ),
87- Style .RESET_ALL ]))
88-
8984
9085def info_main (* args ):
9186 logger .info ('' .join ([Style .BRIGHT , Fore .GREEN ] + list (args ) +
@@ -739,7 +734,6 @@ def prepare_build_environment(self, user_sdk_dir, user_ndk_dir,
739734 'platforms' ,
740735 'android-{}' .format (self .android_api ),
741736 'arch-arm' )
742- print ('ndk platform' , self .ndk_platform )
743737 if not exists (self .ndk_platform ):
744738 warning ('ndk_platform doesn\' t exist' )
745739 ok = False
@@ -978,7 +972,7 @@ def get_distribution(cls, ctx, name=None, recipes=[], allow_download=True,
978972 continue
979973 if (set (dist .recipes ) == set (recipes ) or
980974 (set (recipes ).issubset (set (dist .recipes )) and not require_perfect_match )):
981- info ('{} has compatible recipes, using this one' .format (dist .name ))
975+ info_notify ('{} has compatible recipes, using this one' .format (dist .name ))
982976 return dist
983977
984978 assert len (possible_dists ) < 2
@@ -2108,7 +2102,7 @@ def build_dist_from_args(ctx, dist, args_list):
21082102 args , unknown = parser .parse_known_args (args_list )
21092103
21102104 bs = Bootstrap .get_bootstrap (args .bootstrap , ctx )
2111- info_main ('# Creating dist with with {} bootstrap' .format (bs .name ))
2105+ info_main ('# Creating dist with {} bootstrap' .format (bs .name ))
21122106 bs .distribution = dist
21132107 info_notify ('Dist will have name {} and recipes ({})' .format (
21142108 dist .name , ', ' .join (dist .recipes )))
0 commit comments