|
10 | 10 |
|
11 | 11 | import sys |
12 | 12 | from sys import platform |
13 | | -from os.path import (join, dirname, realpath, exists, basename, |
14 | | - expanduser, split) |
15 | | -from os import environ |
| 13 | +from os.path import (join, dirname, realpath, exists, expanduser) |
16 | 14 | import os |
17 | 15 | import glob |
18 | 16 | import shutil |
|
21 | 19 | import logging |
22 | 20 | import shlex |
23 | 21 | from functools import wraps |
24 | | -from datetime import datetime |
25 | 22 |
|
26 | 23 | import argparse |
27 | 24 | import sh |
28 | 25 |
|
29 | 26 |
|
30 | | -from pythonforandroid.recipe import (Recipe, NDKRecipe, IncludedFilesBehaviour, |
31 | | - PythonRecipe, CythonRecipe, |
32 | | - CompiledComponentsPythonRecipe) |
33 | | -from pythonforandroid.logger import (logger, info, debug, warning, error, |
| 27 | +from pythonforandroid.recipe import (Recipe, PythonRecipe, CythonRecipe, |
| 28 | + CompiledComponentsPythonRecipe, |
| 29 | + NDKRecipe) |
| 30 | +from pythonforandroid.archs import (ArchARM, ArchARMv7_a, Archx86) |
| 31 | +from pythonforandroid.logger import (logger, info, warning, |
34 | 32 | Out_Style, Out_Fore, Err_Style, Err_Fore, |
35 | 33 | info_notify, info_main, shprint, |
36 | 34 | Null_Fore, Null_Style) |
37 | | -from pythonforandroid.util import (ensure_dir, current_directory, |
38 | | - which) |
| 35 | +from pythonforandroid.util import current_directory |
39 | 36 | from pythonforandroid.bootstrap import Bootstrap |
40 | 37 | from pythonforandroid.distribution import Distribution, pretty_log_dists |
41 | 38 | from pythonforandroid.graph import get_recipe_order_and_bootstrap |
|
0 commit comments