@@ -81,11 +81,6 @@ def format(self, record):
81
81
('It should work (mostly), but you may experience '
82
82
'missing features or bugs.' ),
83
83
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
-
89
84
90
85
def info_main (* args ):
91
86
logger .info ('' .join ([Style .BRIGHT , Fore .GREEN ] + list (args ) +
@@ -739,7 +734,6 @@ def prepare_build_environment(self, user_sdk_dir, user_ndk_dir,
739
734
'platforms' ,
740
735
'android-{}' .format (self .android_api ),
741
736
'arch-arm' )
742
- print ('ndk platform' , self .ndk_platform )
743
737
if not exists (self .ndk_platform ):
744
738
warning ('ndk_platform doesn\' t exist' )
745
739
ok = False
@@ -978,7 +972,7 @@ def get_distribution(cls, ctx, name=None, recipes=[], allow_download=True,
978
972
continue
979
973
if (set (dist .recipes ) == set (recipes ) or
980
974
(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 ))
982
976
return dist
983
977
984
978
assert len (possible_dists ) < 2
@@ -2108,7 +2102,7 @@ def build_dist_from_args(ctx, dist, args_list):
2108
2102
args , unknown = parser .parse_known_args (args_list )
2109
2103
2110
2104
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 ))
2112
2106
bs .distribution = dist
2113
2107
info_notify ('Dist will have name {} and recipes ({})' .format (
2114
2108
dist .name , ', ' .join (dist .recipes )))
0 commit comments