@nativescript/ios 8.2.0-custom.0 → 8.2.2-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/framework/internal/XCFrameworks.zip +0 -0
- package/framework/internal/metadata-generator-arm64/bin/build-step-metadata-generator.py +31 -10
- package/framework/internal/metadata-generator-arm64/bin/objc-metadata-generator +0 -0
- package/framework/internal/metadata-generator-x86_64/bin/build-step-metadata-generator.py +31 -10
- package/framework/internal/metadata-generator-x86_64/bin/objc-metadata-generator +0 -0
- package/package.json +1 -1
|
Binary file
|
|
@@ -35,11 +35,38 @@ def map_and_list(func, iterable):
|
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
# process environment variables
|
|
38
|
+
effective_platofrm_name = env("EFFECTIVE_PLATFORM_NAME")
|
|
39
|
+
docset_platform = "iOS"
|
|
40
|
+
default_deployment_target_flag_name = "-mios-simulator-version-min"
|
|
41
|
+
default_deployment_target_clang_env_name = "IPHONEOS_DEPLOYMENT_TARGET"
|
|
42
|
+
if effective_platofrm_name is "-macosx":
|
|
43
|
+
docset_platform = "OSX"
|
|
44
|
+
default_deployment_target_flag_name = "-mmacosx-version-min"
|
|
45
|
+
default_deployment_target_clang_env_name = "MACOSX_DEPLOYMENT_TARGET"
|
|
46
|
+
elif effective_platofrm_name is "-watchos":
|
|
47
|
+
docset_platform = "watchOS"
|
|
48
|
+
default_deployment_target_flag_name = "-mwatchos-version-min"
|
|
49
|
+
default_deployment_target_clang_env_name = "WATCHOS_DEPLOYMENT_TARGET"
|
|
50
|
+
elif effective_platofrm_name is "-watchsimulator":
|
|
51
|
+
docset_platform = "watchOS"
|
|
52
|
+
default_deployment_target_flag_name = "-mwatchos-simulator-version-min"
|
|
53
|
+
default_deployment_target_clang_env_name = "WATCHOS_DEPLOYMENT_TARGET"
|
|
54
|
+
elif effective_platofrm_name is "-appletvos":
|
|
55
|
+
docset_platform = "tvOS"
|
|
56
|
+
default_deployment_target_flag_name = "-mappletvos-version-min"
|
|
57
|
+
default_deployment_target_clang_env_name = "APPLETVOS_DEPLOYMENT_TARGET"
|
|
58
|
+
elif effective_platofrm_name is "-appletvsimulator":
|
|
59
|
+
docset_platform = "tvOS"
|
|
60
|
+
default_deployment_target_flag_name = "-mappletvsimulator-version-min"
|
|
61
|
+
default_deployment_target_clang_env_name = "APPLETVOS_DEPLOYMENT_TARGET"
|
|
62
|
+
elif effective_platofrm_name is "-iphoneos":
|
|
63
|
+
default_deployment_target_flag_name = "-miphoneos-version-min"
|
|
64
|
+
|
|
38
65
|
conf_build_dir = env("CONFIGURATION_BUILD_DIR")
|
|
39
66
|
sdk_root = env("SDKROOT")
|
|
40
67
|
src_root = env("SRCROOT")
|
|
41
|
-
deployment_target_flag_name =
|
|
42
|
-
deployment_target = env(
|
|
68
|
+
deployment_target_flag_name = env_or_empty("DEPLOYMENT_TARGET_CLANG_FLAG_NAME") or default_deployment_target_flag_name
|
|
69
|
+
deployment_target = env(env_or_empty("DEPLOYMENT_TARGET_CLANG_ENV_NAME") or default_deployment_target_clang_env_name)
|
|
43
70
|
std = env("GCC_C_LANGUAGE_STANDARD")
|
|
44
71
|
header_search_paths = env_or_empty("HEADER_SEARCH_PATHS")
|
|
45
72
|
header_search_paths_parsed = map_and_list((lambda s: "-I" + s), shlex.split(header_search_paths))
|
|
@@ -51,15 +78,9 @@ enable_modules = env_bool("CLANG_ENABLE_MODULES")
|
|
|
51
78
|
preprocessor_defs = env_or_empty("GCC_PREPROCESSOR_DEFINITIONS")
|
|
52
79
|
preprocessor_defs_parsed = map_and_list((lambda s: "-D" + s), shlex.split(preprocessor_defs, '\''))
|
|
53
80
|
typescript_output_folder = env_or_none("TNS_TYPESCRIPT_DECLARATIONS_PATH")
|
|
54
|
-
docset_platform = "iOS"
|
|
55
|
-
effective_platofrm_name = env("EFFECTIVE_PLATFORM_NAME")
|
|
56
81
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
elif effective_platofrm_name is "-watchos" or effective_platofrm_name is "-watchsimulator":
|
|
60
|
-
docset_platform = "watchOS"
|
|
61
|
-
elif effective_platofrm_name is "-appletvos" or effective_platofrm_name is "-appletvsimulator":
|
|
62
|
-
docset_platform = "tvOS"
|
|
82
|
+
|
|
83
|
+
|
|
63
84
|
|
|
64
85
|
docset_path = os.path.join(os.path.expanduser("~"),
|
|
65
86
|
"Library/Developer/Shared/Documentation/DocSets/com.apple.adc.documentation.{}.docset"
|
|
Binary file
|
|
@@ -35,11 +35,38 @@ def map_and_list(func, iterable):
|
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
# process environment variables
|
|
38
|
+
effective_platofrm_name = env("EFFECTIVE_PLATFORM_NAME")
|
|
39
|
+
docset_platform = "iOS"
|
|
40
|
+
default_deployment_target_flag_name = "-mios-simulator-version-min"
|
|
41
|
+
default_deployment_target_clang_env_name = "IPHONEOS_DEPLOYMENT_TARGET"
|
|
42
|
+
if effective_platofrm_name is "-macosx":
|
|
43
|
+
docset_platform = "OSX"
|
|
44
|
+
default_deployment_target_flag_name = "-mmacosx-version-min"
|
|
45
|
+
default_deployment_target_clang_env_name = "MACOSX_DEPLOYMENT_TARGET"
|
|
46
|
+
elif effective_platofrm_name is "-watchos":
|
|
47
|
+
docset_platform = "watchOS"
|
|
48
|
+
default_deployment_target_flag_name = "-mwatchos-version-min"
|
|
49
|
+
default_deployment_target_clang_env_name = "WATCHOS_DEPLOYMENT_TARGET"
|
|
50
|
+
elif effective_platofrm_name is "-watchsimulator":
|
|
51
|
+
docset_platform = "watchOS"
|
|
52
|
+
default_deployment_target_flag_name = "-mwatchos-simulator-version-min"
|
|
53
|
+
default_deployment_target_clang_env_name = "WATCHOS_DEPLOYMENT_TARGET"
|
|
54
|
+
elif effective_platofrm_name is "-appletvos":
|
|
55
|
+
docset_platform = "tvOS"
|
|
56
|
+
default_deployment_target_flag_name = "-mappletvos-version-min"
|
|
57
|
+
default_deployment_target_clang_env_name = "APPLETVOS_DEPLOYMENT_TARGET"
|
|
58
|
+
elif effective_platofrm_name is "-appletvsimulator":
|
|
59
|
+
docset_platform = "tvOS"
|
|
60
|
+
default_deployment_target_flag_name = "-mappletvsimulator-version-min"
|
|
61
|
+
default_deployment_target_clang_env_name = "APPLETVOS_DEPLOYMENT_TARGET"
|
|
62
|
+
elif effective_platofrm_name is "-iphoneos":
|
|
63
|
+
default_deployment_target_flag_name = "-miphoneos-version-min"
|
|
64
|
+
|
|
38
65
|
conf_build_dir = env("CONFIGURATION_BUILD_DIR")
|
|
39
66
|
sdk_root = env("SDKROOT")
|
|
40
67
|
src_root = env("SRCROOT")
|
|
41
|
-
deployment_target_flag_name =
|
|
42
|
-
deployment_target = env(
|
|
68
|
+
deployment_target_flag_name = env_or_empty("DEPLOYMENT_TARGET_CLANG_FLAG_NAME") or default_deployment_target_flag_name
|
|
69
|
+
deployment_target = env(env_or_empty("DEPLOYMENT_TARGET_CLANG_ENV_NAME") or default_deployment_target_clang_env_name)
|
|
43
70
|
std = env("GCC_C_LANGUAGE_STANDARD")
|
|
44
71
|
header_search_paths = env_or_empty("HEADER_SEARCH_PATHS")
|
|
45
72
|
header_search_paths_parsed = map_and_list((lambda s: "-I" + s), shlex.split(header_search_paths))
|
|
@@ -51,15 +78,9 @@ enable_modules = env_bool("CLANG_ENABLE_MODULES")
|
|
|
51
78
|
preprocessor_defs = env_or_empty("GCC_PREPROCESSOR_DEFINITIONS")
|
|
52
79
|
preprocessor_defs_parsed = map_and_list((lambda s: "-D" + s), shlex.split(preprocessor_defs, '\''))
|
|
53
80
|
typescript_output_folder = env_or_none("TNS_TYPESCRIPT_DECLARATIONS_PATH")
|
|
54
|
-
docset_platform = "iOS"
|
|
55
|
-
effective_platofrm_name = env("EFFECTIVE_PLATFORM_NAME")
|
|
56
81
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
elif effective_platofrm_name is "-watchos" or effective_platofrm_name is "-watchsimulator":
|
|
60
|
-
docset_platform = "watchOS"
|
|
61
|
-
elif effective_platofrm_name is "-appletvos" or effective_platofrm_name is "-appletvsimulator":
|
|
62
|
-
docset_platform = "tvOS"
|
|
82
|
+
|
|
83
|
+
|
|
63
84
|
|
|
64
85
|
docset_path = os.path.join(os.path.expanduser("~"),
|
|
65
86
|
"Library/Developer/Shared/Documentation/DocSets/com.apple.adc.documentation.{}.docset"
|
|
Binary file
|