@akylas/nativescript-cli 8.8.2 → 8.8.3

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.
Files changed (275) hide show
  1. package/lib/android-tools-info.js +9 -20
  2. package/lib/base-package-manager.js +47 -64
  3. package/lib/bun-package-manager.js +65 -88
  4. package/lib/color.js +2 -2
  5. package/lib/commands/add-platform.js +14 -30
  6. package/lib/commands/apple-login.js +18 -29
  7. package/lib/commands/appstore-list.js +34 -45
  8. package/lib/commands/appstore-upload.js +55 -68
  9. package/lib/commands/build.js +57 -86
  10. package/lib/commands/clean.js +161 -176
  11. package/lib/commands/command-base.js +14 -27
  12. package/lib/commands/config.js +51 -70
  13. package/lib/commands/create-project.js +210 -229
  14. package/lib/commands/debug.js +66 -88
  15. package/lib/commands/deploy.js +28 -44
  16. package/lib/commands/embedding/embed.js +33 -52
  17. package/lib/commands/extensibility/install-extension.js +5 -16
  18. package/lib/commands/extensibility/list-extensions.js +13 -24
  19. package/lib/commands/extensibility/uninstall-extension.js +4 -15
  20. package/lib/commands/fonts.js +30 -41
  21. package/lib/commands/generate-assets.js +13 -28
  22. package/lib/commands/generate-help.js +2 -13
  23. package/lib/commands/generate.js +17 -26
  24. package/lib/commands/info.js +2 -13
  25. package/lib/commands/install.js +34 -49
  26. package/lib/commands/list-platforms.js +14 -25
  27. package/lib/commands/migrate.js +15 -26
  28. package/lib/commands/native-add.js +23 -46
  29. package/lib/commands/platform-clean.js +19 -32
  30. package/lib/commands/plugin/add-plugin.js +12 -25
  31. package/lib/commands/plugin/build-plugin.js +34 -39
  32. package/lib/commands/plugin/create-plugin.js +110 -133
  33. package/lib/commands/plugin/list-plugins.js +22 -33
  34. package/lib/commands/plugin/remove-plugin.js +20 -33
  35. package/lib/commands/plugin/update-plugin.js +20 -33
  36. package/lib/commands/post-install.js +20 -33
  37. package/lib/commands/prepare.js +19 -35
  38. package/lib/commands/preview.js +49 -62
  39. package/lib/commands/remove-platform.js +7 -18
  40. package/lib/commands/resources/resources-update.js +13 -26
  41. package/lib/commands/run.js +55 -76
  42. package/lib/commands/start.js +6 -19
  43. package/lib/commands/test-init.js +123 -134
  44. package/lib/commands/test.js +66 -89
  45. package/lib/commands/typings.js +126 -142
  46. package/lib/commands/update-platform.js +22 -35
  47. package/lib/commands/update.js +30 -43
  48. package/lib/common/child-process.js +53 -72
  49. package/lib/common/codeGeneration/code-entity.js +1 -1
  50. package/lib/common/codeGeneration/code-printer.js +1 -1
  51. package/lib/common/command-params.js +7 -18
  52. package/lib/common/commands/analytics.js +27 -40
  53. package/lib/common/commands/autocompletion.js +39 -56
  54. package/lib/common/commands/device/device-log-stream.js +12 -23
  55. package/lib/common/commands/device/get-file.js +22 -33
  56. package/lib/common/commands/device/list-applications.js +12 -23
  57. package/lib/common/commands/device/list-devices.js +72 -87
  58. package/lib/common/commands/device/list-files.js +23 -34
  59. package/lib/common/commands/device/put-file.js +22 -33
  60. package/lib/common/commands/device/run-application.js +12 -25
  61. package/lib/common/commands/device/stop-application.js +11 -22
  62. package/lib/common/commands/device/uninstall-application.js +6 -17
  63. package/lib/common/commands/generate-messages.js +17 -28
  64. package/lib/common/commands/help.js +20 -33
  65. package/lib/common/commands/package-manager-get.js +6 -17
  66. package/lib/common/commands/package-manager-set.js +9 -20
  67. package/lib/common/commands/post-install.js +2 -13
  68. package/lib/common/commands/preuninstall.js +23 -38
  69. package/lib/common/commands/proxy/proxy-base.js +8 -19
  70. package/lib/common/commands/proxy/proxy-clear.js +4 -15
  71. package/lib/common/commands/proxy/proxy-get.js +3 -14
  72. package/lib/common/commands/proxy/proxy-set.js +87 -100
  73. package/lib/common/constants.js +11 -11
  74. package/lib/common/decorators.js +10 -22
  75. package/lib/common/dispatchers.js +79 -96
  76. package/lib/common/errors.js +89 -104
  77. package/lib/common/file-system.js +106 -127
  78. package/lib/common/header.js +1 -2
  79. package/lib/common/helpers.js +149 -178
  80. package/lib/common/host-info.js +37 -50
  81. package/lib/common/http-client.js +93 -108
  82. package/lib/common/logger/appenders/cli-appender.js +1 -2
  83. package/lib/common/logger/appenders/emit-appender.js +1 -2
  84. package/lib/common/logger/layouts/cli-layout.js +1 -2
  85. package/lib/common/logger/logger.js +1 -1
  86. package/lib/common/mobile/android/android-application-manager.js +121 -142
  87. package/lib/common/mobile/android/android-debug-bridge-result-handler.js +1 -1
  88. package/lib/common/mobile/android/android-debug-bridge.js +87 -112
  89. package/lib/common/mobile/android/android-device-file-system.js +98 -131
  90. package/lib/common/mobile/android/android-device-hash-service.js +50 -75
  91. package/lib/common/mobile/android/android-device.js +74 -91
  92. package/lib/common/mobile/android/android-emulator-services.js +105 -130
  93. package/lib/common/mobile/android/android-log-filter.js +1 -1
  94. package/lib/common/mobile/android/android-virtual-device-service.js +76 -97
  95. package/lib/common/mobile/android/device-android-debug-bridge.js +13 -29
  96. package/lib/common/mobile/android/genymotion/genymotion-service.js +91 -118
  97. package/lib/common/mobile/android/genymotion/virtualbox-service.js +64 -81
  98. package/lib/common/mobile/android/logcat-helper.js +108 -127
  99. package/lib/common/mobile/application-manager-base.js +84 -107
  100. package/lib/common/mobile/device-log-provider-base.js +7 -18
  101. package/lib/common/mobile/ios/device/ios-application-manager.js +79 -108
  102. package/lib/common/mobile/ios/device/ios-device-file-system.js +78 -105
  103. package/lib/common/mobile/ios/device/ios-device-operations.js +105 -142
  104. package/lib/common/mobile/ios/device/ios-device.js +20 -36
  105. package/lib/common/mobile/ios/ios-device-base.js +58 -81
  106. package/lib/common/mobile/ios/simulator/ios-emulator-services.js +63 -92
  107. package/lib/common/mobile/ios/simulator/ios-sim-resolver.js +1 -1
  108. package/lib/common/mobile/ios/simulator/ios-simulator-application-manager.js +60 -89
  109. package/lib/common/mobile/ios/simulator/ios-simulator-device.js +27 -43
  110. package/lib/common/mobile/ios/simulator/ios-simulator-file-system.js +37 -62
  111. package/lib/common/mobile/ios/simulator/ios-simulator-log-provider.js +24 -35
  112. package/lib/common/mobile/mobile-core/android-device-discovery.js +43 -62
  113. package/lib/common/mobile/mobile-core/android-emulator-discovery.js +21 -32
  114. package/lib/common/mobile/mobile-core/android-process-service.js +143 -182
  115. package/lib/common/mobile/mobile-core/device-discovery.js +2 -13
  116. package/lib/common/mobile/mobile-core/devices-service.js +385 -436
  117. package/lib/common/mobile/mobile-core/ios-device-discovery.js +24 -35
  118. package/lib/common/mobile/mobile-core/ios-simulator-discovery.js +47 -62
  119. package/lib/common/mobile/mobile-helper.js +15 -26
  120. package/lib/common/mobile/wp8/wp8-emulator-services.js +25 -52
  121. package/lib/common/opener.js +2 -2
  122. package/lib/common/plist-parser.js +2 -2
  123. package/lib/common/prompter.js +90 -105
  124. package/lib/common/queue.js +9 -20
  125. package/lib/common/services/auto-completion-service.js +39 -52
  126. package/lib/common/services/cancellation.js +17 -28
  127. package/lib/common/services/commands-service.js +146 -169
  128. package/lib/common/services/help-service.js +132 -157
  129. package/lib/common/services/hooks-service.js +93 -108
  130. package/lib/common/services/ios-notification-service.js +21 -34
  131. package/lib/common/services/json-file-settings-service.js +52 -71
  132. package/lib/common/services/lock-service.js +35 -52
  133. package/lib/common/services/message-contract-generator.js +35 -46
  134. package/lib/common/services/micro-templating-service.js +4 -15
  135. package/lib/common/services/net-service.js +90 -107
  136. package/lib/common/services/project-files-manager.js +10 -23
  137. package/lib/common/services/proxy-service.js +13 -24
  138. package/lib/common/services/qr.js +13 -24
  139. package/lib/common/services/settings-service.js +1 -1
  140. package/lib/common/services/xcode-select-service.js +20 -35
  141. package/lib/common/utils.js +2 -2
  142. package/lib/common/validators/project-name-validator.js +1 -1
  143. package/lib/common/validators/validation-result.js +1 -1
  144. package/lib/common/verify-node-version.js +2 -3
  145. package/lib/common/yok.js +23 -36
  146. package/lib/config.js +7 -58
  147. package/lib/constants.js +24 -24
  148. package/lib/controllers/build-controller.js +82 -99
  149. package/lib/controllers/debug-controller.js +107 -128
  150. package/lib/controllers/deploy-controller.js +17 -22
  151. package/lib/controllers/migrate-controller.js +722 -795
  152. package/lib/controllers/platform-controller.js +72 -87
  153. package/lib/controllers/prepare-controller.js +266 -299
  154. package/lib/controllers/run-controller.js +392 -406
  155. package/lib/controllers/update-controller-base.js +16 -29
  156. package/lib/controllers/update-controller.js +94 -119
  157. package/lib/data/prepare-data.js +4 -1
  158. package/lib/definitions/ios-debugger-port-service.d.ts +1 -1
  159. package/lib/definitions/livesync.d.ts +1 -1
  160. package/lib/detached-processes/cleanup-js-subprocess.js +3 -12
  161. package/lib/detached-processes/cleanup-process.js +16 -25
  162. package/lib/device-path-provider.js +23 -34
  163. package/lib/device-sockets/ios/app-debug-socket-proxy-factory.js +149 -164
  164. package/lib/device-sockets/ios/notification.js +1 -1
  165. package/lib/device-sockets/ios/socket-request-executor.js +24 -39
  166. package/lib/helpers/android-bundle-validator-helper.js +1 -1
  167. package/lib/helpers/deploy-command-helper.js +45 -49
  168. package/lib/helpers/key-command-helper.js +4 -13
  169. package/lib/helpers/livesync-command-helper.js +137 -152
  170. package/lib/helpers/network-connectivity-validator.js +6 -17
  171. package/lib/helpers/options-track-helper.js +6 -17
  172. package/lib/helpers/platform-command-helper.js +99 -120
  173. package/lib/key-commands/index.js +161 -211
  174. package/lib/nativescript-cli.js +5 -14
  175. package/lib/node-package-manager.js +81 -104
  176. package/lib/options.js +3 -12
  177. package/lib/package-installation-manager.js +130 -165
  178. package/lib/package-manager.js +63 -86
  179. package/lib/platform-command-param.js +4 -15
  180. package/lib/pnpm-package-manager.js +59 -78
  181. package/lib/project-data.js +1 -1
  182. package/lib/providers/project-files-provider.js +1 -1
  183. package/lib/services/analytics/analytics-broker-process.js +13 -22
  184. package/lib/services/analytics/analytics-broker.js +17 -30
  185. package/lib/services/analytics/analytics-service.js +161 -198
  186. package/lib/services/analytics/google-analytics-provider.js +41 -56
  187. package/lib/services/analytics-settings-service.js +15 -32
  188. package/lib/services/android/android-bundle-tool-service.js +43 -60
  189. package/lib/services/android/gradle-build-args-service.js +9 -20
  190. package/lib/services/android/gradle-build-service.js +34 -47
  191. package/lib/services/android/gradle-command-service.js +22 -35
  192. package/lib/services/android-device-debug-service.js +90 -117
  193. package/lib/services/android-plugin-build-service.js +230 -256
  194. package/lib/services/android-project-service.js +163 -199
  195. package/lib/services/android-resources-migration-service.js +51 -64
  196. package/lib/services/apple-portal/apple-portal-application-service.js +46 -63
  197. package/lib/services/apple-portal/apple-portal-session-service.js +171 -188
  198. package/lib/services/assets-generation/assets-generation-service.js +98 -115
  199. package/lib/services/build-artifacts-service.js +9 -20
  200. package/lib/services/build-info-file-service.js +20 -35
  201. package/lib/services/cleanup-service.js +47 -76
  202. package/lib/services/cocoapods-service.js +115 -136
  203. package/lib/services/device/device-install-app-service.js +73 -90
  204. package/lib/services/doctor-service.js +99 -118
  205. package/lib/services/extensibility-service.js +81 -100
  206. package/lib/services/files-hash-service.js +26 -43
  207. package/lib/services/hmr-status-service.js +1 -1
  208. package/lib/services/initialize-service.js +37 -50
  209. package/lib/services/ios/export-options-plist-service.js +38 -51
  210. package/lib/services/ios/ios-signing-service.js +161 -180
  211. package/lib/services/ios/spm-service.js +40 -53
  212. package/lib/services/ios/xcodebuild-args-service.js +77 -94
  213. package/lib/services/ios/xcodebuild-command-service.js +14 -25
  214. package/lib/services/ios/xcodebuild-service.js +50 -69
  215. package/lib/services/ios-debugger-port-service.js +23 -36
  216. package/lib/services/ios-device-debug-service.js +75 -102
  217. package/lib/services/ios-entitlements-service.js +31 -42
  218. package/lib/services/ios-extensions-service.js +18 -29
  219. package/lib/services/ios-project-service.js +405 -460
  220. package/lib/services/ios-provision-service.js +108 -129
  221. package/lib/services/ios-watch-app-service.js +21 -32
  222. package/lib/services/ip-service.js +38 -53
  223. package/lib/services/itmstransporter-service.js +129 -152
  224. package/lib/services/livesync/android-device-livesync-service-base.js +31 -48
  225. package/lib/services/livesync/android-device-livesync-service.js +120 -149
  226. package/lib/services/livesync/android-device-livesync-sockets-service.js +121 -152
  227. package/lib/services/livesync/android-livesync-service.js +14 -35
  228. package/lib/services/livesync/android-livesync-tool.js +89 -112
  229. package/lib/services/livesync/device-livesync-service-base.js +15 -28
  230. package/lib/services/livesync/ios-device-livesync-service.js +114 -143
  231. package/lib/services/livesync/ios-livesync-service.js +42 -58
  232. package/lib/services/livesync/platform-livesync-service-base.js +94 -119
  233. package/lib/services/log-parser-service.js +1 -1
  234. package/lib/services/log-source-map-service.js +30 -41
  235. package/lib/services/marking-mode-service.js +15 -28
  236. package/lib/services/npm-config-service.js +1 -1
  237. package/lib/services/pacote-service.js +49 -64
  238. package/lib/services/performance-service.js +1 -1
  239. package/lib/services/platform/add-platform-service.js +50 -71
  240. package/lib/services/platform/platform-validation-service.js +22 -33
  241. package/lib/services/platform/prepare-native-platform-service.js +49 -62
  242. package/lib/services/platform-environment-requirements.js +26 -37
  243. package/lib/services/plugins-service.js +122 -147
  244. package/lib/services/project-backup-service.js +1 -1
  245. package/lib/services/project-changes-service.js +124 -141
  246. package/lib/services/project-cleanup-service.js +64 -77
  247. package/lib/services/project-config-service.js +71 -80
  248. package/lib/services/project-data-service.js +101 -118
  249. package/lib/services/project-name-service.js +28 -43
  250. package/lib/services/project-service.js +84 -103
  251. package/lib/services/project-templates-service.js +52 -67
  252. package/lib/services/start-service.js +41 -59
  253. package/lib/services/temp-service.js +8 -21
  254. package/lib/services/terminal-spinner-service.js +13 -24
  255. package/lib/services/test-execution-service.js +59 -72
  256. package/lib/services/test-initialization-service.js +2 -2
  257. package/lib/services/timeline-profiler-service.js +1 -1
  258. package/lib/services/versions-service.js +119 -138
  259. package/lib/services/webpack/webpack-compiler-service.js +211 -231
  260. package/lib/services/xcconfig-service.js +8 -19
  261. package/lib/sys-info.js +45 -62
  262. package/lib/tools/node-modules/node-modules-builder.js +16 -27
  263. package/lib/yarn-package-manager.js +59 -78
  264. package/lib/yarn2-package-manager.js +60 -79
  265. package/package.json +57 -55
  266. package/vendor/aab-tool/bundletool.jar +0 -0
  267. package/lib/common/resources/platform-tools/android/darwin/NOTICE.txt +0 -3407
  268. package/lib/common/resources/platform-tools/android/darwin/adb +0 -0
  269. package/lib/common/resources/platform-tools/android/linux/NOTICE.txt +0 -4451
  270. package/lib/common/resources/platform-tools/android/linux/adb +0 -0
  271. package/lib/common/resources/platform-tools/android/win32/AdbWinApi.dll +0 -0
  272. package/lib/common/resources/platform-tools/android/win32/AdbWinUsbApi.dll +0 -0
  273. package/lib/common/resources/platform-tools/android/win32/NOTICE.txt +0 -4451
  274. package/lib/common/resources/platform-tools/android/win32/adb.exe +0 -0
  275. package/lib/common/resources/platform-tools/android/win32/fastboot.exe +0 -0
@@ -1,3407 +0,0 @@
1
- Notices for files contained in the tools directory:
2
- ============================================================
3
- Notices for file(s):
4
- /bin/aprotoc
5
- ------------------------------------------------------------
6
- Copyright 2008, Google Inc.
7
- All rights reserved.
8
-
9
- Redistribution and use in source and binary forms, with or without
10
- modification, are permitted provided that the following conditions are
11
- met:
12
-
13
- * Redistributions of source code must retain the above copyright
14
- notice, this list of conditions and the following disclaimer.
15
- * Redistributions in binary form must reproduce the above
16
- copyright notice, this list of conditions and the following disclaimer
17
- in the documentation and/or other materials provided with the
18
- distribution.
19
- * Neither the name of Google Inc. nor the names of its
20
- contributors may be used to endorse or promote products derived from
21
- this software without specific prior written permission.
22
-
23
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
-
35
- Code generated by the Protocol Buffer compiler is owned by the owner
36
- of the input file used when generating it. This code is not
37
- standalone and requires a support library to be linked with it. This
38
- support library is itself covered by the above license.
39
-
40
- ============================================================
41
- Notices for file(s):
42
- /lib/libc++.dylib
43
- /lib/libc++_static.a
44
- /lib64/libc++.dylib
45
- /lib64/libc++_static.a
46
- ------------------------------------------------------------
47
- ==============================================================================
48
- libc++ License
49
- ==============================================================================
50
-
51
- The libc++ library is dual licensed under both the University of Illinois
52
- "BSD-Like" license and the MIT license. As a user of this code you may choose
53
- to use it under either license. As a contributor, you agree to allow your code
54
- to be used under both.
55
-
56
- Full text of the relevant licenses is included below.
57
-
58
- ==============================================================================
59
-
60
- University of Illinois/NCSA
61
- Open Source License
62
-
63
- Copyright (c) 2009-2014 by the contributors listed in CREDITS.TXT
64
-
65
- All rights reserved.
66
-
67
- Developed by:
68
-
69
- LLVM Team
70
-
71
- University of Illinois at Urbana-Champaign
72
-
73
- http://llvm.org
74
-
75
- Permission is hereby granted, free of charge, to any person obtaining a copy of
76
- this software and associated documentation files (the "Software"), to deal with
77
- the Software without restriction, including without limitation the rights to
78
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
79
- of the Software, and to permit persons to whom the Software is furnished to do
80
- so, subject to the following conditions:
81
-
82
- * Redistributions of source code must retain the above copyright notice,
83
- this list of conditions and the following disclaimers.
84
-
85
- * Redistributions in binary form must reproduce the above copyright notice,
86
- this list of conditions and the following disclaimers in the
87
- documentation and/or other materials provided with the distribution.
88
-
89
- * Neither the names of the LLVM Team, University of Illinois at
90
- Urbana-Champaign, nor the names of its contributors may be used to
91
- endorse or promote products derived from this Software without specific
92
- prior written permission.
93
-
94
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
95
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
96
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
97
- CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
98
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
99
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
100
- SOFTWARE.
101
-
102
- ==============================================================================
103
-
104
- Copyright (c) 2009-2014 by the contributors listed in CREDITS.TXT
105
-
106
- Permission is hereby granted, free of charge, to any person obtaining a copy
107
- of this software and associated documentation files (the "Software"), to deal
108
- in the Software without restriction, including without limitation the rights
109
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
110
- copies of the Software, and to permit persons to whom the Software is
111
- furnished to do so, subject to the following conditions:
112
-
113
- The above copyright notice and this permission notice shall be included in
114
- all copies or substantial portions of the Software.
115
-
116
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
117
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
118
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
119
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
120
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
121
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
122
- THE SOFTWARE.
123
-
124
- ============================================================
125
- Notices for file(s):
126
- /bin/make_ext4fs
127
- /bin/mkuserimg.sh
128
- /lib/libext4_utils_host.a
129
- /lib64/libext4_utils_host.a
130
- ------------------------------------------------------------
131
-
132
- Copyright (c) 2010, The Android Open Source Project
133
-
134
- Licensed under the Apache License, Version 2.0 (the "License");
135
- you may not use this file except in compliance with the License.
136
-
137
- Unless required by applicable law or agreed to in writing, software
138
- distributed under the License is distributed on an "AS IS" BASIS,
139
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
140
- See the License for the specific language governing permissions and
141
- limitations under the License.
142
-
143
-
144
- Apache License
145
- Version 2.0, January 2004
146
- http://www.apache.org/licenses/
147
-
148
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
149
-
150
- 1. Definitions.
151
-
152
- "License" shall mean the terms and conditions for use, reproduction,
153
- and distribution as defined by Sections 1 through 9 of this document.
154
-
155
- "Licensor" shall mean the copyright owner or entity authorized by
156
- the copyright owner that is granting the License.
157
-
158
- "Legal Entity" shall mean the union of the acting entity and all
159
- other entities that control, are controlled by, or are under common
160
- control with that entity. For the purposes of this definition,
161
- "control" means (i) the power, direct or indirect, to cause the
162
- direction or management of such entity, whether by contract or
163
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
164
- outstanding shares, or (iii) beneficial ownership of such entity.
165
-
166
- "You" (or "Your") shall mean an individual or Legal Entity
167
- exercising permissions granted by this License.
168
-
169
- "Source" form shall mean the preferred form for making modifications,
170
- including but not limited to software source code, documentation
171
- source, and configuration files.
172
-
173
- "Object" form shall mean any form resulting from mechanical
174
- transformation or translation of a Source form, including but
175
- not limited to compiled object code, generated documentation,
176
- and conversions to other media types.
177
-
178
- "Work" shall mean the work of authorship, whether in Source or
179
- Object form, made available under the License, as indicated by a
180
- copyright notice that is included in or attached to the work
181
- (an example is provided in the Appendix below).
182
-
183
- "Derivative Works" shall mean any work, whether in Source or Object
184
- form, that is based on (or derived from) the Work and for which the
185
- editorial revisions, annotations, elaborations, or other modifications
186
- represent, as a whole, an original work of authorship. For the purposes
187
- of this License, Derivative Works shall not include works that remain
188
- separable from, or merely link (or bind by name) to the interfaces of,
189
- the Work and Derivative Works thereof.
190
-
191
- "Contribution" shall mean any work of authorship, including
192
- the original version of the Work and any modifications or additions
193
- to that Work or Derivative Works thereof, that is intentionally
194
- submitted to Licensor for inclusion in the Work by the copyright owner
195
- or by an individual or Legal Entity authorized to submit on behalf of
196
- the copyright owner. For the purposes of this definition, "submitted"
197
- means any form of electronic, verbal, or written communication sent
198
- to the Licensor or its representatives, including but not limited to
199
- communication on electronic mailing lists, source code control systems,
200
- and issue tracking systems that are managed by, or on behalf of, the
201
- Licensor for the purpose of discussing and improving the Work, but
202
- excluding communication that is conspicuously marked or otherwise
203
- designated in writing by the copyright owner as "Not a Contribution."
204
-
205
- "Contributor" shall mean Licensor and any individual or Legal Entity
206
- on behalf of whom a Contribution has been received by Licensor and
207
- subsequently incorporated within the Work.
208
-
209
- 2. Grant of Copyright License. Subject to the terms and conditions of
210
- this License, each Contributor hereby grants to You a perpetual,
211
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
212
- copyright license to reproduce, prepare Derivative Works of,
213
- publicly display, publicly perform, sublicense, and distribute the
214
- Work and such Derivative Works in Source or Object form.
215
-
216
- 3. Grant of Patent License. Subject to the terms and conditions of
217
- this License, each Contributor hereby grants to You a perpetual,
218
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
219
- (except as stated in this section) patent license to make, have made,
220
- use, offer to sell, sell, import, and otherwise transfer the Work,
221
- where such license applies only to those patent claims licensable
222
- by such Contributor that are necessarily infringed by their
223
- Contribution(s) alone or by combination of their Contribution(s)
224
- with the Work to which such Contribution(s) was submitted. If You
225
- institute patent litigation against any entity (including a
226
- cross-claim or counterclaim in a lawsuit) alleging that the Work
227
- or a Contribution incorporated within the Work constitutes direct
228
- or contributory patent infringement, then any patent licenses
229
- granted to You under this License for that Work shall terminate
230
- as of the date such litigation is filed.
231
-
232
- 4. Redistribution. You may reproduce and distribute copies of the
233
- Work or Derivative Works thereof in any medium, with or without
234
- modifications, and in Source or Object form, provided that You
235
- meet the following conditions:
236
-
237
- (a) You must give any other recipients of the Work or
238
- Derivative Works a copy of this License; and
239
-
240
- (b) You must cause any modified files to carry prominent notices
241
- stating that You changed the files; and
242
-
243
- (c) You must retain, in the Source form of any Derivative Works
244
- that You distribute, all copyright, patent, trademark, and
245
- attribution notices from the Source form of the Work,
246
- excluding those notices that do not pertain to any part of
247
- the Derivative Works; and
248
-
249
- (d) If the Work includes a "NOTICE" text file as part of its
250
- distribution, then any Derivative Works that You distribute must
251
- include a readable copy of the attribution notices contained
252
- within such NOTICE file, excluding those notices that do not
253
- pertain to any part of the Derivative Works, in at least one
254
- of the following places: within a NOTICE text file distributed
255
- as part of the Derivative Works; within the Source form or
256
- documentation, if provided along with the Derivative Works; or,
257
- within a display generated by the Derivative Works, if and
258
- wherever such third-party notices normally appear. The contents
259
- of the NOTICE file are for informational purposes only and
260
- do not modify the License. You may add Your own attribution
261
- notices within Derivative Works that You distribute, alongside
262
- or as an addendum to the NOTICE text from the Work, provided
263
- that such additional attribution notices cannot be construed
264
- as modifying the License.
265
-
266
- You may add Your own copyright statement to Your modifications and
267
- may provide additional or different license terms and conditions
268
- for use, reproduction, or distribution of Your modifications, or
269
- for any such Derivative Works as a whole, provided Your use,
270
- reproduction, and distribution of the Work otherwise complies with
271
- the conditions stated in this License.
272
-
273
- 5. Submission of Contributions. Unless You explicitly state otherwise,
274
- any Contribution intentionally submitted for inclusion in the Work
275
- by You to the Licensor shall be under the terms and conditions of
276
- this License, without any additional terms or conditions.
277
- Notwithstanding the above, nothing herein shall supersede or modify
278
- the terms of any separate license agreement you may have executed
279
- with Licensor regarding such Contributions.
280
-
281
- 6. Trademarks. This License does not grant permission to use the trade
282
- names, trademarks, service marks, or product names of the Licensor,
283
- except as required for reasonable and customary use in describing the
284
- origin of the Work and reproducing the content of the NOTICE file.
285
-
286
- 7. Disclaimer of Warranty. Unless required by applicable law or
287
- agreed to in writing, Licensor provides the Work (and each
288
- Contributor provides its Contributions) on an "AS IS" BASIS,
289
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
290
- implied, including, without limitation, any warranties or conditions
291
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
292
- PARTICULAR PURPOSE. You are solely responsible for determining the
293
- appropriateness of using or redistributing the Work and assume any
294
- risks associated with Your exercise of permissions under this License.
295
-
296
- 8. Limitation of Liability. In no event and under no legal theory,
297
- whether in tort (including negligence), contract, or otherwise,
298
- unless required by applicable law (such as deliberate and grossly
299
- negligent acts) or agreed to in writing, shall any Contributor be
300
- liable to You for damages, including any direct, indirect, special,
301
- incidental, or consequential damages of any character arising as a
302
- result of this License or out of the use or inability to use the
303
- Work (including but not limited to damages for loss of goodwill,
304
- work stoppage, computer failure or malfunction, or any and all
305
- other commercial damages or losses), even if such Contributor
306
- has been advised of the possibility of such damages.
307
-
308
- 9. Accepting Warranty or Additional Liability. While redistributing
309
- the Work or Derivative Works thereof, You may choose to offer,
310
- and charge a fee for, acceptance of support, warranty, indemnity,
311
- or other liability obligations and/or rights consistent with this
312
- License. However, in accepting such obligations, You may act only
313
- on Your own behalf and on Your sole responsibility, not on behalf
314
- of any other Contributor, and only if You agree to indemnify,
315
- defend, and hold each Contributor harmless for any liability
316
- incurred by, or claims asserted against, such Contributor by reason
317
- of your accepting any such warranty or additional liability.
318
-
319
- END OF TERMS AND CONDITIONS
320
-
321
-
322
- ============================================================
323
- Notices for file(s):
324
- /lib/libsqlite_jni.dylib
325
- /lib64/libsqlite_jni.dylib
326
- ------------------------------------------------------------
327
- This software is copyrighted by Christian Werner <chw@ch-werner.de>
328
- and others. The following terms apply to all files associated with the
329
- software unless explicitly disclaimed in individual files.
330
-
331
- The authors hereby grant permission to use, copy, modify, distribute,
332
- and license this software and its documentation for any purpose, provided
333
- that existing copyright notices are retained in all copies and that this
334
- notice is included verbatim in any distributions. No written agreement,
335
- license, or royalty fee is required for any of the authorized uses.
336
- Modifications to this software may be copyrighted by their authors
337
- and need not follow the licensing terms described here, provided that
338
- the new terms are clearly indicated on the first page of each file where
339
- they apply.
340
-
341
- IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
342
- FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
343
- ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
344
- DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
345
- POSSIBILITY OF SUCH DAMAGE.
346
-
347
- THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
348
- INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
349
- FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
350
- IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
351
- NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
352
- MODIFICATIONS.
353
-
354
- ============================================================
355
- Notices for file(s):
356
- /bin/aapt
357
- /bin/aidl
358
- /bin/dexdump
359
- /bin/dx
360
- /lib/libaapt.a
361
- /lib/libaidl-common.a
362
- /lib/libandroidfw.a
363
- /lib/libcutils.a
364
- /lib/libcutils.dylib
365
- /lib/libnativehelper.dylib
366
- /lib/libsqlite3_android.a
367
- /lib/libutils.a
368
- /lib64/libaapt.a
369
- /lib64/libaidl-common.a
370
- /lib64/libandroidfw.a
371
- /lib64/libcutils.a
372
- /lib64/libcutils.dylib
373
- /lib64/libnativehelper.dylib
374
- /lib64/libsqlite3_android.a
375
- /lib64/libutils.a
376
- ------------------------------------------------------------
377
-
378
- Copyright (c) 2005-2008, The Android Open Source Project
379
-
380
- Licensed under the Apache License, Version 2.0 (the "License");
381
- you may not use this file except in compliance with the License.
382
-
383
- Unless required by applicable law or agreed to in writing, software
384
- distributed under the License is distributed on an "AS IS" BASIS,
385
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
386
- See the License for the specific language governing permissions and
387
- limitations under the License.
388
-
389
-
390
- Apache License
391
- Version 2.0, January 2004
392
- http://www.apache.org/licenses/
393
-
394
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
395
-
396
- 1. Definitions.
397
-
398
- "License" shall mean the terms and conditions for use, reproduction,
399
- and distribution as defined by Sections 1 through 9 of this document.
400
-
401
- "Licensor" shall mean the copyright owner or entity authorized by
402
- the copyright owner that is granting the License.
403
-
404
- "Legal Entity" shall mean the union of the acting entity and all
405
- other entities that control, are controlled by, or are under common
406
- control with that entity. For the purposes of this definition,
407
- "control" means (i) the power, direct or indirect, to cause the
408
- direction or management of such entity, whether by contract or
409
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
410
- outstanding shares, or (iii) beneficial ownership of such entity.
411
-
412
- "You" (or "Your") shall mean an individual or Legal Entity
413
- exercising permissions granted by this License.
414
-
415
- "Source" form shall mean the preferred form for making modifications,
416
- including but not limited to software source code, documentation
417
- source, and configuration files.
418
-
419
- "Object" form shall mean any form resulting from mechanical
420
- transformation or translation of a Source form, including but
421
- not limited to compiled object code, generated documentation,
422
- and conversions to other media types.
423
-
424
- "Work" shall mean the work of authorship, whether in Source or
425
- Object form, made available under the License, as indicated by a
426
- copyright notice that is included in or attached to the work
427
- (an example is provided in the Appendix below).
428
-
429
- "Derivative Works" shall mean any work, whether in Source or Object
430
- form, that is based on (or derived from) the Work and for which the
431
- editorial revisions, annotations, elaborations, or other modifications
432
- represent, as a whole, an original work of authorship. For the purposes
433
- of this License, Derivative Works shall not include works that remain
434
- separable from, or merely link (or bind by name) to the interfaces of,
435
- the Work and Derivative Works thereof.
436
-
437
- "Contribution" shall mean any work of authorship, including
438
- the original version of the Work and any modifications or additions
439
- to that Work or Derivative Works thereof, that is intentionally
440
- submitted to Licensor for inclusion in the Work by the copyright owner
441
- or by an individual or Legal Entity authorized to submit on behalf of
442
- the copyright owner. For the purposes of this definition, "submitted"
443
- means any form of electronic, verbal, or written communication sent
444
- to the Licensor or its representatives, including but not limited to
445
- communication on electronic mailing lists, source code control systems,
446
- and issue tracking systems that are managed by, or on behalf of, the
447
- Licensor for the purpose of discussing and improving the Work, but
448
- excluding communication that is conspicuously marked or otherwise
449
- designated in writing by the copyright owner as "Not a Contribution."
450
-
451
- "Contributor" shall mean Licensor and any individual or Legal Entity
452
- on behalf of whom a Contribution has been received by Licensor and
453
- subsequently incorporated within the Work.
454
-
455
- 2. Grant of Copyright License. Subject to the terms and conditions of
456
- this License, each Contributor hereby grants to You a perpetual,
457
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
458
- copyright license to reproduce, prepare Derivative Works of,
459
- publicly display, publicly perform, sublicense, and distribute the
460
- Work and such Derivative Works in Source or Object form.
461
-
462
- 3. Grant of Patent License. Subject to the terms and conditions of
463
- this License, each Contributor hereby grants to You a perpetual,
464
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
465
- (except as stated in this section) patent license to make, have made,
466
- use, offer to sell, sell, import, and otherwise transfer the Work,
467
- where such license applies only to those patent claims licensable
468
- by such Contributor that are necessarily infringed by their
469
- Contribution(s) alone or by combination of their Contribution(s)
470
- with the Work to which such Contribution(s) was submitted. If You
471
- institute patent litigation against any entity (including a
472
- cross-claim or counterclaim in a lawsuit) alleging that the Work
473
- or a Contribution incorporated within the Work constitutes direct
474
- or contributory patent infringement, then any patent licenses
475
- granted to You under this License for that Work shall terminate
476
- as of the date such litigation is filed.
477
-
478
- 4. Redistribution. You may reproduce and distribute copies of the
479
- Work or Derivative Works thereof in any medium, with or without
480
- modifications, and in Source or Object form, provided that You
481
- meet the following conditions:
482
-
483
- (a) You must give any other recipients of the Work or
484
- Derivative Works a copy of this License; and
485
-
486
- (b) You must cause any modified files to carry prominent notices
487
- stating that You changed the files; and
488
-
489
- (c) You must retain, in the Source form of any Derivative Works
490
- that You distribute, all copyright, patent, trademark, and
491
- attribution notices from the Source form of the Work,
492
- excluding those notices that do not pertain to any part of
493
- the Derivative Works; and
494
-
495
- (d) If the Work includes a "NOTICE" text file as part of its
496
- distribution, then any Derivative Works that You distribute must
497
- include a readable copy of the attribution notices contained
498
- within such NOTICE file, excluding those notices that do not
499
- pertain to any part of the Derivative Works, in at least one
500
- of the following places: within a NOTICE text file distributed
501
- as part of the Derivative Works; within the Source form or
502
- documentation, if provided along with the Derivative Works; or,
503
- within a display generated by the Derivative Works, if and
504
- wherever such third-party notices normally appear. The contents
505
- of the NOTICE file are for informational purposes only and
506
- do not modify the License. You may add Your own attribution
507
- notices within Derivative Works that You distribute, alongside
508
- or as an addendum to the NOTICE text from the Work, provided
509
- that such additional attribution notices cannot be construed
510
- as modifying the License.
511
-
512
- You may add Your own copyright statement to Your modifications and
513
- may provide additional or different license terms and conditions
514
- for use, reproduction, or distribution of Your modifications, or
515
- for any such Derivative Works as a whole, provided Your use,
516
- reproduction, and distribution of the Work otherwise complies with
517
- the conditions stated in this License.
518
-
519
- 5. Submission of Contributions. Unless You explicitly state otherwise,
520
- any Contribution intentionally submitted for inclusion in the Work
521
- by You to the Licensor shall be under the terms and conditions of
522
- this License, without any additional terms or conditions.
523
- Notwithstanding the above, nothing herein shall supersede or modify
524
- the terms of any separate license agreement you may have executed
525
- with Licensor regarding such Contributions.
526
-
527
- 6. Trademarks. This License does not grant permission to use the trade
528
- names, trademarks, service marks, or product names of the Licensor,
529
- except as required for reasonable and customary use in describing the
530
- origin of the Work and reproducing the content of the NOTICE file.
531
-
532
- 7. Disclaimer of Warranty. Unless required by applicable law or
533
- agreed to in writing, Licensor provides the Work (and each
534
- Contributor provides its Contributions) on an "AS IS" BASIS,
535
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
536
- implied, including, without limitation, any warranties or conditions
537
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
538
- PARTICULAR PURPOSE. You are solely responsible for determining the
539
- appropriateness of using or redistributing the Work and assume any
540
- risks associated with Your exercise of permissions under this License.
541
-
542
- 8. Limitation of Liability. In no event and under no legal theory,
543
- whether in tort (including negligence), contract, or otherwise,
544
- unless required by applicable law (such as deliberate and grossly
545
- negligent acts) or agreed to in writing, shall any Contributor be
546
- liable to You for damages, including any direct, indirect, special,
547
- incidental, or consequential damages of any character arising as a
548
- result of this License or out of the use or inability to use the
549
- Work (including but not limited to damages for loss of goodwill,
550
- work stoppage, computer failure or malfunction, or any and all
551
- other commercial damages or losses), even if such Contributor
552
- has been advised of the possibility of such damages.
553
-
554
- 9. Accepting Warranty or Additional Liability. While redistributing
555
- the Work or Derivative Works thereof, You may choose to offer,
556
- and charge a fee for, acceptance of support, warranty, indemnity,
557
- or other liability obligations and/or rights consistent with this
558
- License. However, in accepting such obligations, You may act only
559
- on Your own behalf and on Your sole responsibility, not on behalf
560
- of any other Contributor, and only if You agree to indemnify,
561
- defend, and hold each Contributor harmless for any liability
562
- incurred by, or claims asserted against, such Contributor by reason
563
- of your accepting any such warranty or additional liability.
564
-
565
- END OF TERMS AND CONDITIONS
566
-
567
-
568
- ============================================================
569
- Notices for file(s):
570
- /lib/libcompiler_rt-extras.a
571
- /lib/libcompiler_rt.a
572
- /lib64/libcompiler_rt-extras.a
573
- /lib64/libcompiler_rt.a
574
- /lib64/libcompiler_rt.dylib
575
- ------------------------------------------------------------
576
- ==============================================================================
577
- compiler_rt License
578
- ==============================================================================
579
-
580
- The compiler_rt library is dual licensed under both the University of Illinois
581
- "BSD-Like" license and the MIT license. As a user of this code you may choose
582
- to use it under either license. As a contributor, you agree to allow your code
583
- to be used under both.
584
-
585
- Full text of the relevant licenses is included below.
586
-
587
- ==============================================================================
588
-
589
- University of Illinois/NCSA
590
- Open Source License
591
-
592
- Copyright (c) 2009-2014 by the contributors listed in CREDITS.TXT
593
-
594
- All rights reserved.
595
-
596
- Developed by:
597
-
598
- LLVM Team
599
-
600
- University of Illinois at Urbana-Champaign
601
-
602
- http://llvm.org
603
-
604
- Permission is hereby granted, free of charge, to any person obtaining a copy of
605
- this software and associated documentation files (the "Software"), to deal with
606
- the Software without restriction, including without limitation the rights to
607
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
608
- of the Software, and to permit persons to whom the Software is furnished to do
609
- so, subject to the following conditions:
610
-
611
- * Redistributions of source code must retain the above copyright notice,
612
- this list of conditions and the following disclaimers.
613
-
614
- * Redistributions in binary form must reproduce the above copyright notice,
615
- this list of conditions and the following disclaimers in the
616
- documentation and/or other materials provided with the distribution.
617
-
618
- * Neither the names of the LLVM Team, University of Illinois at
619
- Urbana-Champaign, nor the names of its contributors may be used to
620
- endorse or promote products derived from this Software without specific
621
- prior written permission.
622
-
623
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
624
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
625
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
626
- CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
627
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
628
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
629
- SOFTWARE.
630
-
631
- ==============================================================================
632
-
633
- Copyright (c) 2009-2014 by the contributors listed in CREDITS.TXT
634
-
635
- Permission is hereby granted, free of charge, to any person obtaining a copy
636
- of this software and associated documentation files (the "Software"), to deal
637
- in the Software without restriction, including without limitation the rights
638
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
639
- copies of the Software, and to permit persons to whom the Software is
640
- furnished to do so, subject to the following conditions:
641
-
642
- The above copyright notice and this permission notice shall be included in
643
- all copies or substantial portions of the Software.
644
-
645
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
646
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
647
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
648
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
649
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
650
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
651
- THE SOFTWARE.
652
-
653
- ==============================================================================
654
- Copyrights and Licenses for Third Party Software Distributed with LLVM:
655
- ==============================================================================
656
- The LLVM software contains code written by third parties. Such software will
657
- have its own individual LICENSE.TXT file in the directory in which it appears.
658
- This file will describe the copyrights, license, and restrictions which apply
659
- to that code.
660
-
661
- The disclaimer of warranty in the University of Illinois Open Source License
662
- applies to all code in the LLVM Distribution, and nothing in any of the
663
- other licenses gives permission to use the names of the LLVM Team or the
664
- University of Illinois to endorse or promote products derived from this
665
- Software.
666
-
667
-
668
- ============================================================
669
- Notices for file(s):
670
- /framework/commons-compress-1.0.jar
671
- ------------------------------------------------------------
672
- Apache Commons Compress
673
- Copyright 2002-2009 The Apache Software Foundation
674
-
675
- This product includes software developed by
676
- The Apache Software Foundation (http://www.apache.org/).
677
-
678
- Original BZip2 classes contributed by Keiron Liddle
679
- <keiron@aftexsw.com>, Aftex Software to the Apache Ant project
680
-
681
- Original Tar classes from contributors of the Apache Ant project
682
-
683
- Original Zip classes from contributors of the Apache Ant project
684
-
685
- Original CPIO classes contributed by Markus Kuss and the jRPM project
686
- (jrpm.sourceforge.net)
687
-
688
- ============================================================
689
- Notices for file(s):
690
- /lib64/libbcc.dylib
691
- ------------------------------------------------------------
692
- ==========================
693
- NOTICE file for libbcc.git
694
- ==========================
695
-
696
- * NOTICE for lib/ExecutionEngine/, lib/ScriptCRT/, include and helper/.
697
-
698
- Copyright (c) 2005-2011, The Android Open Source Project
699
-
700
- Licensed under the Apache License, Version 2.0 (the "License");
701
- you may not use this file except in compliance with the License.
702
-
703
- Unless required by applicable law or agreed to in writing, software
704
- distributed under the License is distributed on an "AS IS" BASIS,
705
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
706
- See the License for the specific language governing permissions and
707
- limitations under the License.
708
-
709
-
710
- Apache License
711
- Version 2.0, January 2004
712
- http://www.apache.org/licenses/
713
-
714
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
715
-
716
- 1. Definitions.
717
-
718
- "License" shall mean the terms and conditions for use, reproduction,
719
- and distribution as defined by Sections 1 through 9 of this document.
720
-
721
- "Licensor" shall mean the copyright owner or entity authorized by
722
- the copyright owner that is granting the License.
723
-
724
- "Legal Entity" shall mean the union of the acting entity and all
725
- other entities that control, are controlled by, or are under common
726
- control with that entity. For the purposes of this definition,
727
- "control" means (i) the power, direct or indirect, to cause the
728
- direction or management of such entity, whether by contract or
729
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
730
- outstanding shares, or (iii) beneficial ownership of such entity.
731
-
732
- "You" (or "Your") shall mean an individual or Legal Entity
733
- exercising permissions granted by this License.
734
-
735
- "Source" form shall mean the preferred form for making modifications,
736
- including but not limited to software source code, documentation
737
- source, and configuration files.
738
-
739
- "Object" form shall mean any form resulting from mechanical
740
- transformation or translation of a Source form, including but
741
- not limited to compiled object code, generated documentation,
742
- and conversions to other media types.
743
-
744
- "Work" shall mean the work of authorship, whether in Source or
745
- Object form, made available under the License, as indicated by a
746
- copyright notice that is included in or attached to the work
747
- (an example is provided in the Appendix below).
748
-
749
- "Derivative Works" shall mean any work, whether in Source or Object
750
- form, that is based on (or derived from) the Work and for which the
751
- editorial revisions, annotations, elaborations, or other modifications
752
- represent, as a whole, an original work of authorship. For the purposes
753
- of this License, Derivative Works shall not include works that remain
754
- separable from, or merely link (or bind by name) to the interfaces of,
755
- the Work and Derivative Works thereof.
756
-
757
- "Contribution" shall mean any work of authorship, including
758
- the original version of the Work and any modifications or additions
759
- to that Work or Derivative Works thereof, that is intentionally
760
- submitted to Licensor for inclusion in the Work by the copyright owner
761
- or by an individual or Legal Entity authorized to submit on behalf of
762
- the copyright owner. For the purposes of this definition, "submitted"
763
- means any form of electronic, verbal, or written communication sent
764
- to the Licensor or its representatives, including but not limited to
765
- communication on electronic mailing lists, source code control systems,
766
- and issue tracking systems that are managed by, or on behalf of, the
767
- Licensor for the purpose of discussing and improving the Work, but
768
- excluding communication that is conspicuously marked or otherwise
769
- designated in writing by the copyright owner as "Not a Contribution."
770
-
771
- "Contributor" shall mean Licensor and any individual or Legal Entity
772
- on behalf of whom a Contribution has been received by Licensor and
773
- subsequently incorporated within the Work.
774
-
775
- 2. Grant of Copyright License. Subject to the terms and conditions of
776
- this License, each Contributor hereby grants to You a perpetual,
777
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
778
- copyright license to reproduce, prepare Derivative Works of,
779
- publicly display, publicly perform, sublicense, and distribute the
780
- Work and such Derivative Works in Source or Object form.
781
-
782
- 3. Grant of Patent License. Subject to the terms and conditions of
783
- this License, each Contributor hereby grants to You a perpetual,
784
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
785
- (except as stated in this section) patent license to make, have made,
786
- use, offer to sell, sell, import, and otherwise transfer the Work,
787
- where such license applies only to those patent claims licensable
788
- by such Contributor that are necessarily infringed by their
789
- Contribution(s) alone or by combination of their Contribution(s)
790
- with the Work to which such Contribution(s) was submitted. If You
791
- institute patent litigation against any entity (including a
792
- cross-claim or counterclaim in a lawsuit) alleging that the Work
793
- or a Contribution incorporated within the Work constitutes direct
794
- or contributory patent infringement, then any patent licenses
795
- granted to You under this License for that Work shall terminate
796
- as of the date such litigation is filed.
797
-
798
- 4. Redistribution. You may reproduce and distribute copies of the
799
- Work or Derivative Works thereof in any medium, with or without
800
- modifications, and in Source or Object form, provided that You
801
- meet the following conditions:
802
-
803
- (a) You must give any other recipients of the Work or
804
- Derivative Works a copy of this License; and
805
-
806
- (b) You must cause any modified files to carry prominent notices
807
- stating that You changed the files; and
808
-
809
- (c) You must retain, in the Source form of any Derivative Works
810
- that You distribute, all copyright, patent, trademark, and
811
- attribution notices from the Source form of the Work,
812
- excluding those notices that do not pertain to any part of
813
- the Derivative Works; and
814
-
815
- (d) If the Work includes a "NOTICE" text file as part of its
816
- distribution, then any Derivative Works that You distribute must
817
- include a readable copy of the attribution notices contained
818
- within such NOTICE file, excluding those notices that do not
819
- pertain to any part of the Derivative Works, in at least one
820
- of the following places: within a NOTICE text file distributed
821
- as part of the Derivative Works; within the Source form or
822
- documentation, if provided along with the Derivative Works; or,
823
- within a display generated by the Derivative Works, if and
824
- wherever such third-party notices normally appear. The contents
825
- of the NOTICE file are for informational purposes only and
826
- do not modify the License. You may add Your own attribution
827
- notices within Derivative Works that You distribute, alongside
828
- or as an addendum to the NOTICE text from the Work, provided
829
- that such additional attribution notices cannot be construed
830
- as modifying the License.
831
-
832
- You may add Your own copyright statement to Your modifications and
833
- may provide additional or different license terms and conditions
834
- for use, reproduction, or distribution of Your modifications, or
835
- for any such Derivative Works as a whole, provided Your use,
836
- reproduction, and distribution of the Work otherwise complies with
837
- the conditions stated in this License.
838
-
839
- 5. Submission of Contributions. Unless You explicitly state otherwise,
840
- any Contribution intentionally submitted for inclusion in the Work
841
- by You to the Licensor shall be under the terms and conditions of
842
- this License, without any additional terms or conditions.
843
- Notwithstanding the above, nothing herein shall supersede or modify
844
- the terms of any separate license agreement you may have executed
845
- with Licensor regarding such Contributions.
846
-
847
- 6. Trademarks. This License does not grant permission to use the trade
848
- names, trademarks, service marks, or product names of the Licensor,
849
- except as required for reasonable and customary use in describing the
850
- origin of the Work and reproducing the content of the NOTICE file.
851
-
852
- 7. Disclaimer of Warranty. Unless required by applicable law or
853
- agreed to in writing, Licensor provides the Work (and each
854
- Contributor provides its Contributions) on an "AS IS" BASIS,
855
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
856
- implied, including, without limitation, any warranties or conditions
857
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
858
- PARTICULAR PURPOSE. You are solely responsible for determining the
859
- appropriateness of using or redistributing the Work and assume any
860
- risks associated with Your exercise of permissions under this License.
861
-
862
- 8. Limitation of Liability. In no event and under no legal theory,
863
- whether in tort (including negligence), contract, or otherwise,
864
- unless required by applicable law (such as deliberate and grossly
865
- negligent acts) or agreed to in writing, shall any Contributor be
866
- liable to You for damages, including any direct, indirect, special,
867
- incidental, or consequential damages of any character arising as a
868
- result of this License or out of the use or inability to use the
869
- Work (including but not limited to damages for loss of goodwill,
870
- work stoppage, computer failure or malfunction, or any and all
871
- other commercial damages or losses), even if such Contributor
872
- has been advised of the possibility of such damages.
873
-
874
- 9. Accepting Warranty or Additional Liability. While redistributing
875
- the Work or Derivative Works thereof, You may choose to offer,
876
- and charge a fee for, acceptance of support, warranty, indemnity,
877
- or other liability obligations and/or rights consistent with this
878
- License. However, in accepting such obligations, You may act only
879
- on Your own behalf and on Your sole responsibility, not on behalf
880
- of any other Contributor, and only if You agree to indemnify,
881
- defend, and hold each Contributor harmless for any liability
882
- incurred by, or claims asserted against, such Contributor by reason
883
- of your accepting any such warranty or additional liability.
884
-
885
- END OF TERMS AND CONDITIONS
886
-
887
-
888
-
889
- * NOTICE for runtime/ and lib/CodeGen/.
890
- Note: The NOTICE is the same for another git project, external/llvm.git.
891
-
892
- ==============================================================================
893
- LLVM Release License
894
- ==============================================================================
895
- University of Illinois/NCSA
896
- Open Source License
897
-
898
- Copyright (c) 2003-2011 University of Illinois at Urbana-Champaign.
899
- All rights reserved.
900
-
901
- Developed by:
902
-
903
- LLVM Team
904
-
905
- University of Illinois at Urbana-Champaign
906
-
907
- http://llvm.org
908
-
909
- Permission is hereby granted, free of charge, to any person obtaining a copy of
910
- this software and associated documentation files (the "Software"), to deal with
911
- the Software without restriction, including without limitation the rights to
912
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
913
- of the Software, and to permit persons to whom the Software is furnished to do
914
- so, subject to the following conditions:
915
-
916
- * Redistributions of source code must retain the above copyright notice,
917
- this list of conditions and the following disclaimers.
918
-
919
- * Redistributions in binary form must reproduce the above copyright notice,
920
- this list of conditions and the following disclaimers in the
921
- documentation and/or other materials provided with the distribution.
922
-
923
- * Neither the names of the LLVM Team, University of Illinois at
924
- Urbana-Champaign, nor the names of its contributors may be used to
925
- endorse or promote products derived from this Software without specific
926
- prior written permission.
927
-
928
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
929
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
930
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
931
- CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
932
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
933
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
934
- SOFTWARE.
935
-
936
- ==============================================================================
937
- Copyrights and Licenses for Third Party Software Distributed with LLVM:
938
- ==============================================================================
939
- The LLVM software contains code written by third parties. Such software will
940
- have its own individual LICENSE.TXT file in the directory in which it appears.
941
- This file will describe the copyrights, license, and restrictions which apply
942
- to that code.
943
-
944
- The disclaimer of warranty in the University of Illinois Open Source License
945
- applies to all code in the LLVM Distribution, and nothing in any of the
946
- other licenses gives permission to use the names of the LLVM Team or the
947
- University of Illinois to endorse or promote products derived from this
948
- Software.
949
-
950
- The following pieces of software have additional or alternate copyrights,
951
- licenses, and/or restrictions:
952
-
953
- Program Directory
954
- ------- ---------
955
- Autoconf llvm/autoconf
956
- llvm/projects/ModuleMaker/autoconf
957
- llvm/projects/sample/autoconf
958
- CellSPU backend llvm/lib/Target/CellSPU/README.txt
959
- Google Test llvm/utils/unittest/googletest
960
- OpenBSD regex llvm/lib/Support/{reg*, COPYRIGHT.regex}
961
-
962
-
963
-
964
- * NOTICE for tests/disassem.cpp and tests/disassem.h.
965
-
966
- /* $NetBSD: disassem.c,v 1.14 2003/03/27 16:58:36 mycroft Exp $ */
967
-
968
- /*-
969
- * Copyright (c) 1996 Mark Brinicombe.
970
- * Copyright (c) 1996 Brini.
971
- *
972
- * All rights reserved.
973
- *
974
- * Redistribution and use in source and binary forms, with or without
975
- * modification, are permitted provided that the following conditions
976
- * are met:
977
- * 1. Redistributions of source code must retain the above copyright
978
- * notice, this list of conditions and the following disclaimer.
979
- * 2. Redistributions in binary form must reproduce the above copyright
980
- * notice, this list of conditions and the following disclaimer in the
981
- * documentation and/or other materials provided with the distribution.
982
- * 3. All advertising materials mentioning features or use of this software
983
- * must display the following acknowledgement:
984
- * This product includes software developed by Brini.
985
- * 4. The name of the company nor the name of the author may be used to
986
- * endorse or promote products derived from this software without specific
987
- * prior written permission.
988
- *
989
- * THIS SOFTWARE IS PROVIDED BY BRINI ``AS IS'' AND ANY EXPRESS OR IMPLIED
990
- * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
991
- * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
992
- * IN NO EVENT SHALL BRINI OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
993
- * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
994
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
995
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
996
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
997
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
998
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
999
- * SUCH DAMAGE.
1000
- *
1001
- * RiscBSD kernel project
1002
- *
1003
- * db_disasm.c
1004
- *
1005
- * Kernel disassembler
1006
- *
1007
- * Created : 10/02/96
1008
- *
1009
- * Structured after the sparc/sparc/db_disasm.c by David S. Miller &
1010
- * Paul Kranenburg
1011
- *
1012
- * This code is not complete. Not all instructions are disassembled.
1013
- */
1014
-
1015
- ============================================================
1016
- Notices for file(s):
1017
- /bin/conscrypt_generate_constants
1018
- /framework/guavalib.jar
1019
- /framework/jarjar-apache-ant.jar
1020
- /framework/jarjar-maven-plugin-api.jar
1021
- /framework/jarjar.jar
1022
- /framework/jsilver.jar
1023
- ------------------------------------------------------------
1024
-
1025
- Apache License
1026
- Version 2.0, January 2004
1027
- http://www.apache.org/licenses/
1028
-
1029
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1030
-
1031
- 1. Definitions.
1032
-
1033
- "License" shall mean the terms and conditions for use, reproduction,
1034
- and distribution as defined by Sections 1 through 9 of this document.
1035
-
1036
- "Licensor" shall mean the copyright owner or entity authorized by
1037
- the copyright owner that is granting the License.
1038
-
1039
- "Legal Entity" shall mean the union of the acting entity and all
1040
- other entities that control, are controlled by, or are under common
1041
- control with that entity. For the purposes of this definition,
1042
- "control" means (i) the power, direct or indirect, to cause the
1043
- direction or management of such entity, whether by contract or
1044
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
1045
- outstanding shares, or (iii) beneficial ownership of such entity.
1046
-
1047
- "You" (or "Your") shall mean an individual or Legal Entity
1048
- exercising permissions granted by this License.
1049
-
1050
- "Source" form shall mean the preferred form for making modifications,
1051
- including but not limited to software source code, documentation
1052
- source, and configuration files.
1053
-
1054
- "Object" form shall mean any form resulting from mechanical
1055
- transformation or translation of a Source form, including but
1056
- not limited to compiled object code, generated documentation,
1057
- and conversions to other media types.
1058
-
1059
- "Work" shall mean the work of authorship, whether in Source or
1060
- Object form, made available under the License, as indicated by a
1061
- copyright notice that is included in or attached to the work
1062
- (an example is provided in the Appendix below).
1063
-
1064
- "Derivative Works" shall mean any work, whether in Source or Object
1065
- form, that is based on (or derived from) the Work and for which the
1066
- editorial revisions, annotations, elaborations, or other modifications
1067
- represent, as a whole, an original work of authorship. For the purposes
1068
- of this License, Derivative Works shall not include works that remain
1069
- separable from, or merely link (or bind by name) to the interfaces of,
1070
- the Work and Derivative Works thereof.
1071
-
1072
- "Contribution" shall mean any work of authorship, including
1073
- the original version of the Work and any modifications or additions
1074
- to that Work or Derivative Works thereof, that is intentionally
1075
- submitted to Licensor for inclusion in the Work by the copyright owner
1076
- or by an individual or Legal Entity authorized to submit on behalf of
1077
- the copyright owner. For the purposes of this definition, "submitted"
1078
- means any form of electronic, verbal, or written communication sent
1079
- to the Licensor or its representatives, including but not limited to
1080
- communication on electronic mailing lists, source code control systems,
1081
- and issue tracking systems that are managed by, or on behalf of, the
1082
- Licensor for the purpose of discussing and improving the Work, but
1083
- excluding communication that is conspicuously marked or otherwise
1084
- designated in writing by the copyright owner as "Not a Contribution."
1085
-
1086
- "Contributor" shall mean Licensor and any individual or Legal Entity
1087
- on behalf of whom a Contribution has been received by Licensor and
1088
- subsequently incorporated within the Work.
1089
-
1090
- 2. Grant of Copyright License. Subject to the terms and conditions of
1091
- this License, each Contributor hereby grants to You a perpetual,
1092
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1093
- copyright license to reproduce, prepare Derivative Works of,
1094
- publicly display, publicly perform, sublicense, and distribute the
1095
- Work and such Derivative Works in Source or Object form.
1096
-
1097
- 3. Grant of Patent License. Subject to the terms and conditions of
1098
- this License, each Contributor hereby grants to You a perpetual,
1099
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1100
- (except as stated in this section) patent license to make, have made,
1101
- use, offer to sell, sell, import, and otherwise transfer the Work,
1102
- where such license applies only to those patent claims licensable
1103
- by such Contributor that are necessarily infringed by their
1104
- Contribution(s) alone or by combination of their Contribution(s)
1105
- with the Work to which such Contribution(s) was submitted. If You
1106
- institute patent litigation against any entity (including a
1107
- cross-claim or counterclaim in a lawsuit) alleging that the Work
1108
- or a Contribution incorporated within the Work constitutes direct
1109
- or contributory patent infringement, then any patent licenses
1110
- granted to You under this License for that Work shall terminate
1111
- as of the date such litigation is filed.
1112
-
1113
- 4. Redistribution. You may reproduce and distribute copies of the
1114
- Work or Derivative Works thereof in any medium, with or without
1115
- modifications, and in Source or Object form, provided that You
1116
- meet the following conditions:
1117
-
1118
- (a) You must give any other recipients of the Work or
1119
- Derivative Works a copy of this License; and
1120
-
1121
- (b) You must cause any modified files to carry prominent notices
1122
- stating that You changed the files; and
1123
-
1124
- (c) You must retain, in the Source form of any Derivative Works
1125
- that You distribute, all copyright, patent, trademark, and
1126
- attribution notices from the Source form of the Work,
1127
- excluding those notices that do not pertain to any part of
1128
- the Derivative Works; and
1129
-
1130
- (d) If the Work includes a "NOTICE" text file as part of its
1131
- distribution, then any Derivative Works that You distribute must
1132
- include a readable copy of the attribution notices contained
1133
- within such NOTICE file, excluding those notices that do not
1134
- pertain to any part of the Derivative Works, in at least one
1135
- of the following places: within a NOTICE text file distributed
1136
- as part of the Derivative Works; within the Source form or
1137
- documentation, if provided along with the Derivative Works; or,
1138
- within a display generated by the Derivative Works, if and
1139
- wherever such third-party notices normally appear. The contents
1140
- of the NOTICE file are for informational purposes only and
1141
- do not modify the License. You may add Your own attribution
1142
- notices within Derivative Works that You distribute, alongside
1143
- or as an addendum to the NOTICE text from the Work, provided
1144
- that such additional attribution notices cannot be construed
1145
- as modifying the License.
1146
-
1147
- You may add Your own copyright statement to Your modifications and
1148
- may provide additional or different license terms and conditions
1149
- for use, reproduction, or distribution of Your modifications, or
1150
- for any such Derivative Works as a whole, provided Your use,
1151
- reproduction, and distribution of the Work otherwise complies with
1152
- the conditions stated in this License.
1153
-
1154
- 5. Submission of Contributions. Unless You explicitly state otherwise,
1155
- any Contribution intentionally submitted for inclusion in the Work
1156
- by You to the Licensor shall be under the terms and conditions of
1157
- this License, without any additional terms or conditions.
1158
- Notwithstanding the above, nothing herein shall supersede or modify
1159
- the terms of any separate license agreement you may have executed
1160
- with Licensor regarding such Contributions.
1161
-
1162
- 6. Trademarks. This License does not grant permission to use the trade
1163
- names, trademarks, service marks, or product names of the Licensor,
1164
- except as required for reasonable and customary use in describing the
1165
- origin of the Work and reproducing the content of the NOTICE file.
1166
-
1167
- 7. Disclaimer of Warranty. Unless required by applicable law or
1168
- agreed to in writing, Licensor provides the Work (and each
1169
- Contributor provides its Contributions) on an "AS IS" BASIS,
1170
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1171
- implied, including, without limitation, any warranties or conditions
1172
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1173
- PARTICULAR PURPOSE. You are solely responsible for determining the
1174
- appropriateness of using or redistributing the Work and assume any
1175
- risks associated with Your exercise of permissions under this License.
1176
-
1177
- 8. Limitation of Liability. In no event and under no legal theory,
1178
- whether in tort (including negligence), contract, or otherwise,
1179
- unless required by applicable law (such as deliberate and grossly
1180
- negligent acts) or agreed to in writing, shall any Contributor be
1181
- liable to You for damages, including any direct, indirect, special,
1182
- incidental, or consequential damages of any character arising as a
1183
- result of this License or out of the use or inability to use the
1184
- Work (including but not limited to damages for loss of goodwill,
1185
- work stoppage, computer failure or malfunction, or any and all
1186
- other commercial damages or losses), even if such Contributor
1187
- has been advised of the possibility of such damages.
1188
-
1189
- 9. Accepting Warranty or Additional Liability. While redistributing
1190
- the Work or Derivative Works thereof, You may choose to offer,
1191
- and charge a fee for, acceptance of support, warranty, indemnity,
1192
- or other liability obligations and/or rights consistent with this
1193
- License. However, in accepting such obligations, You may act only
1194
- on Your own behalf and on Your sole responsibility, not on behalf
1195
- of any other Contributor, and only if You agree to indemnify,
1196
- defend, and hold each Contributor harmless for any liability
1197
- incurred by, or claims asserted against, such Contributor by reason
1198
- of your accepting any such warranty or additional liability.
1199
-
1200
- END OF TERMS AND CONDITIONS
1201
-
1202
- APPENDIX: How to apply the Apache License to your work.
1203
-
1204
- To apply the Apache License to your work, attach the following
1205
- boilerplate notice, with the fields enclosed by brackets "[]"
1206
- replaced with your own identifying information. (Don't include
1207
- the brackets!) The text should be enclosed in the appropriate
1208
- comment syntax for the file format. We also recommend that a
1209
- file or class name and description of purpose be included on the
1210
- same "printed page" as the copyright notice for easier
1211
- identification within third-party archives.
1212
-
1213
- Copyright [yyyy] [name of copyright owner]
1214
-
1215
- Licensed under the Apache License, Version 2.0 (the "License");
1216
- you may not use this file except in compliance with the License.
1217
- You may obtain a copy of the License at
1218
-
1219
- http://www.apache.org/licenses/LICENSE-2.0
1220
-
1221
- Unless required by applicable law or agreed to in writing, software
1222
- distributed under the License is distributed on an "AS IS" BASIS,
1223
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1224
- See the License for the specific language governing permissions and
1225
- limitations under the License.
1226
-
1227
- ============================================================
1228
- Notices for file(s):
1229
- /lib/libpcre.a
1230
- /lib64/libpcre.a
1231
- ------------------------------------------------------------
1232
- PCRE LICENCE
1233
- ------------
1234
-
1235
- PCRE is a library of functions to support regular expressions whose syntax
1236
- and semantics are as close as possible to those of the Perl 5 language.
1237
-
1238
- Release 8 of PCRE is distributed under the terms of the "BSD" licence, as
1239
- specified below. The documentation for PCRE, supplied in the "doc"
1240
- directory, is distributed under the same terms as the software itself.
1241
-
1242
- The basic library functions are written in C and are freestanding. Also
1243
- included in the distribution is a set of C++ wrapper functions, and a
1244
- just-in-time compiler that can be used to optimize pattern matching. These
1245
- are both optional features that can be omitted when the library is built.
1246
-
1247
-
1248
- THE BASIC LIBRARY FUNCTIONS
1249
- ---------------------------
1250
-
1251
- Written by: Philip Hazel
1252
- Email local part: ph10
1253
- Email domain: cam.ac.uk
1254
-
1255
- University of Cambridge Computing Service,
1256
- Cambridge, England.
1257
-
1258
- Copyright (c) 1997-2014 University of Cambridge
1259
- All rights reserved.
1260
-
1261
-
1262
- PCRE JUST-IN-TIME COMPILATION SUPPORT
1263
- -------------------------------------
1264
-
1265
- Written by: Zoltan Herczeg
1266
- Email local part: hzmester
1267
- Emain domain: freemail.hu
1268
-
1269
- Copyright(c) 2010-2014 Zoltan Herczeg
1270
- All rights reserved.
1271
-
1272
-
1273
- STACK-LESS JUST-IN-TIME COMPILER
1274
- --------------------------------
1275
-
1276
- Written by: Zoltan Herczeg
1277
- Email local part: hzmester
1278
- Emain domain: freemail.hu
1279
-
1280
- Copyright(c) 2009-2014 Zoltan Herczeg
1281
- All rights reserved.
1282
-
1283
-
1284
- THE C++ WRAPPER FUNCTIONS
1285
- -------------------------
1286
-
1287
- Contributed by: Google Inc.
1288
-
1289
- Copyright (c) 2007-2012, Google Inc.
1290
- All rights reserved.
1291
-
1292
-
1293
- THE "BSD" LICENCE
1294
- -----------------
1295
-
1296
- Redistribution and use in source and binary forms, with or without
1297
- modification, are permitted provided that the following conditions are met:
1298
-
1299
- * Redistributions of source code must retain the above copyright notice,
1300
- this list of conditions and the following disclaimer.
1301
-
1302
- * Redistributions in binary form must reproduce the above copyright
1303
- notice, this list of conditions and the following disclaimer in the
1304
- documentation and/or other materials provided with the distribution.
1305
-
1306
- * Neither the name of the University of Cambridge nor the name of Google
1307
- Inc. nor the names of their contributors may be used to endorse or
1308
- promote products derived from this software without specific prior
1309
- written permission.
1310
-
1311
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1312
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1313
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1314
- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
1315
- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
1316
- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
1317
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
1318
- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
1319
- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
1320
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
1321
- POSSIBILITY OF SUCH DAMAGE.
1322
-
1323
- End
1324
-
1325
- ============================================================
1326
- Notices for file(s):
1327
- /lib/libpng.a
1328
- /lib64/libpng.a
1329
- ------------------------------------------------------------
1330
-
1331
- This copy of the libpng notices is provided for your convenience. In case of
1332
- any discrepancy between this copy and the notices in the file png.h that is
1333
- included in the libpng distribution, the latter shall prevail.
1334
-
1335
- COPYRIGHT NOTICE, DISCLAIMER, and LICENSE:
1336
-
1337
- If you modify libpng you may insert additional notices immediately following
1338
- this sentence.
1339
-
1340
- This code is released under the libpng license.
1341
-
1342
- libpng versions 1.2.6, August 15, 2004, through 1.6.3, July 18, 2013, are
1343
- Copyright (c) 2004, 2006-2013 Glenn Randers-Pehrson, and are
1344
- distributed according to the same disclaimer and license as libpng-1.2.5
1345
- with the following individual added to the list of Contributing Authors
1346
-
1347
- Cosmin Truta
1348
-
1349
- libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are
1350
- Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are
1351
- distributed according to the same disclaimer and license as libpng-1.0.6
1352
- with the following individuals added to the list of Contributing Authors
1353
-
1354
- Simon-Pierre Cadieux
1355
- Eric S. Raymond
1356
- Gilles Vollant
1357
-
1358
- and with the following additions to the disclaimer:
1359
-
1360
- There is no warranty against interference with your enjoyment of the
1361
- library or against infringement. There is no warranty that our
1362
- efforts or the library will fulfill any of your particular purposes
1363
- or needs. This library is provided with all faults, and the entire
1364
- risk of satisfactory quality, performance, accuracy, and effort is with
1365
- the user.
1366
-
1367
- libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
1368
- Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are
1369
- distributed according to the same disclaimer and license as libpng-0.96,
1370
- with the following individuals added to the list of Contributing Authors:
1371
-
1372
- Tom Lane
1373
- Glenn Randers-Pehrson
1374
- Willem van Schaik
1375
-
1376
- libpng versions 0.89, June 1996, through 0.96, May 1997, are
1377
- Copyright (c) 1996, 1997 Andreas Dilger
1378
- Distributed according to the same disclaimer and license as libpng-0.88,
1379
- with the following individuals added to the list of Contributing Authors:
1380
-
1381
- John Bowler
1382
- Kevin Bracey
1383
- Sam Bushell
1384
- Magnus Holmgren
1385
- Greg Roelofs
1386
- Tom Tanner
1387
-
1388
- libpng versions 0.5, May 1995, through 0.88, January 1996, are
1389
- Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
1390
-
1391
- For the purposes of this copyright and license, "Contributing Authors"
1392
- is defined as the following set of individuals:
1393
-
1394
- Andreas Dilger
1395
- Dave Martindale
1396
- Guy Eric Schalnat
1397
- Paul Schmidt
1398
- Tim Wegner
1399
-
1400
- The PNG Reference Library is supplied "AS IS". The Contributing Authors
1401
- and Group 42, Inc. disclaim all warranties, expressed or implied,
1402
- including, without limitation, the warranties of merchantability and of
1403
- fitness for any purpose. The Contributing Authors and Group 42, Inc.
1404
- assume no liability for direct, indirect, incidental, special, exemplary,
1405
- or consequential damages, which may result from the use of the PNG
1406
- Reference Library, even if advised of the possibility of such damage.
1407
-
1408
- Permission is hereby granted to use, copy, modify, and distribute this
1409
- source code, or portions hereof, for any purpose, without fee, subject
1410
- to the following restrictions:
1411
-
1412
- 1. The origin of this source code must not be misrepresented.
1413
-
1414
- 2. Altered versions must be plainly marked as such and must not
1415
- be misrepresented as being the original source.
1416
-
1417
- 3. This Copyright notice may not be removed or altered from any
1418
- source or altered source distribution.
1419
-
1420
- The Contributing Authors and Group 42, Inc. specifically permit, without
1421
- fee, and encourage the use of this source code as a component to
1422
- supporting the PNG file format in commercial products. If you use this
1423
- source code in a product, acknowledgment is not required but would be
1424
- appreciated.
1425
-
1426
-
1427
- A "png_get_copyright" function is available, for convenient use in "about"
1428
- boxes and the like:
1429
-
1430
- printf("%s",png_get_copyright(NULL));
1431
-
1432
- Also, the PNG logo (in PNG format, of course) is supplied in the
1433
- files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31).
1434
-
1435
- Libpng is OSI Certified Open Source Software. OSI Certified Open Source is a
1436
- certification mark of the Open Source Initiative.
1437
-
1438
- Glenn Randers-Pehrson
1439
- glennrp at users.sourceforge.net
1440
- July 18, 2013
1441
-
1442
- ============================================================
1443
- Notices for file(s):
1444
- /framework/bouncycastle-host.jar
1445
- ------------------------------------------------------------
1446
- Copyright (c) 2000-2015 The Legion of the Bouncy Castle Inc. (http://www.bouncycastle.org)
1447
-
1448
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
1449
- associated documentation files (the "Software"), to deal in the Software without restriction,
1450
- including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
1451
- and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
1452
- subject to the following conditions:
1453
-
1454
- The above copyright notice and this permission notice shall be included in all copies or substantial
1455
- portions of the Software.
1456
-
1457
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
1458
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
1459
- NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
1460
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1461
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1462
-
1463
- ============================================================
1464
- Notices for file(s):
1465
- /framework/doclava.jar
1466
- ------------------------------------------------------------
1467
-
1468
- Copyright (C) 2010 Google Inc.
1469
-
1470
- Licensed under the Apache License, Version 2.0 (the "License");
1471
- you may not use this file except in compliance with the License.
1472
- You may obtain a copy of the License at
1473
-
1474
- http://www.apache.org/licenses/LICENSE-2.0
1475
-
1476
- Unless required by applicable law or agreed to in writing, software
1477
- distributed under the License is distributed on an "AS IS" BASIS,
1478
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1479
- See the License for the specific language governing permissions and
1480
- limitations under the License.
1481
-
1482
-
1483
- ======================================================================
1484
-
1485
- jQuery 1.2.6 - New Wave Javascript
1486
-
1487
- Copyright (c) 2008 John Resig (jquery.com)
1488
- Dual licensed under the MIT (MIT-LICENSE.txt)
1489
- and GPL (GPL-LICENSE.txt) licenses.
1490
-
1491
- Copyright (c) 2009 John Resig, http://jquery.com/
1492
-
1493
- Permission is hereby granted, free of charge, to any person obtaining
1494
- a copy of this software and associated documentation files (the
1495
- "Software"), to deal in the Software without restriction, including
1496
- without limitation the rights to use, copy, modify, merge, publish,
1497
- distribute, sublicense, and/or sell copies of the Software, and to
1498
- permit persons to whom the Software is furnished to do so, subject to
1499
- the following conditions:
1500
-
1501
- The above copyright notice and this permission notice shall be
1502
- included in all copies or substantial portions of the Software.
1503
-
1504
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1505
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1506
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1507
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1508
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1509
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1510
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1511
-
1512
-
1513
- ============================================================
1514
- Notices for file(s):
1515
- /lib/libzopfli.a
1516
- /lib64/libzopfli.a
1517
- ------------------------------------------------------------
1518
- Apache License
1519
- Version 2.0, January 2004
1520
- http://www.apache.org/licenses/
1521
-
1522
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1523
-
1524
- 1. Definitions.
1525
-
1526
- "License" shall mean the terms and conditions for use, reproduction,
1527
- and distribution as defined by Sections 1 through 9 of this document.
1528
-
1529
- "Licensor" shall mean the copyright owner or entity authorized by
1530
- the copyright owner that is granting the License.
1531
-
1532
- "Legal Entity" shall mean the union of the acting entity and all
1533
- other entities that control, are controlled by, or are under common
1534
- control with that entity. For the purposes of this definition,
1535
- "control" means (i) the power, direct or indirect, to cause the
1536
- direction or management of such entity, whether by contract or
1537
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
1538
- outstanding shares, or (iii) beneficial ownership of such entity.
1539
-
1540
- "You" (or "Your") shall mean an individual or Legal Entity
1541
- exercising permissions granted by this License.
1542
-
1543
- "Source" form shall mean the preferred form for making modifications,
1544
- including but not limited to software source code, documentation
1545
- source, and configuration files.
1546
-
1547
- "Object" form shall mean any form resulting from mechanical
1548
- transformation or translation of a Source form, including but
1549
- not limited to compiled object code, generated documentation,
1550
- and conversions to other media types.
1551
-
1552
- "Work" shall mean the work of authorship, whether in Source or
1553
- Object form, made available under the License, as indicated by a
1554
- copyright notice that is included in or attached to the work
1555
- (an example is provided in the Appendix below).
1556
-
1557
- "Derivative Works" shall mean any work, whether in Source or Object
1558
- form, that is based on (or derived from) the Work and for which the
1559
- editorial revisions, annotations, elaborations, or other modifications
1560
- represent, as a whole, an original work of authorship. For the purposes
1561
- of this License, Derivative Works shall not include works that remain
1562
- separable from, or merely link (or bind by name) to the interfaces of,
1563
- the Work and Derivative Works thereof.
1564
-
1565
- "Contribution" shall mean any work of authorship, including
1566
- the original version of the Work and any modifications or additions
1567
- to that Work or Derivative Works thereof, that is intentionally
1568
- submitted to Licensor for inclusion in the Work by the copyright owner
1569
- or by an individual or Legal Entity authorized to submit on behalf of
1570
- the copyright owner. For the purposes of this definition, "submitted"
1571
- means any form of electronic, verbal, or written communication sent
1572
- to the Licensor or its representatives, including but not limited to
1573
- communication on electronic mailing lists, source code control systems,
1574
- and issue tracking systems that are managed by, or on behalf of, the
1575
- Licensor for the purpose of discussing and improving the Work, but
1576
- excluding communication that is conspicuously marked or otherwise
1577
- designated in writing by the copyright owner as "Not a Contribution."
1578
-
1579
- "Contributor" shall mean Licensor and any individual or Legal Entity
1580
- on behalf of whom a Contribution has been received by Licensor and
1581
- subsequently incorporated within the Work.
1582
-
1583
- 2. Grant of Copyright License. Subject to the terms and conditions of
1584
- this License, each Contributor hereby grants to You a perpetual,
1585
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1586
- copyright license to reproduce, prepare Derivative Works of,
1587
- publicly display, publicly perform, sublicense, and distribute the
1588
- Work and such Derivative Works in Source or Object form.
1589
-
1590
- 3. Grant of Patent License. Subject to the terms and conditions of
1591
- this License, each Contributor hereby grants to You a perpetual,
1592
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1593
- (except as stated in this section) patent license to make, have made,
1594
- use, offer to sell, sell, import, and otherwise transfer the Work,
1595
- where such license applies only to those patent claims licensable
1596
- by such Contributor that are necessarily infringed by their
1597
- Contribution(s) alone or by combination of their Contribution(s)
1598
- with the Work to which such Contribution(s) was submitted. If You
1599
- institute patent litigation against any entity (including a
1600
- cross-claim or counterclaim in a lawsuit) alleging that the Work
1601
- or a Contribution incorporated within the Work constitutes direct
1602
- or contributory patent infringement, then any patent licenses
1603
- granted to You under this License for that Work shall terminate
1604
- as of the date such litigation is filed.
1605
-
1606
- 4. Redistribution. You may reproduce and distribute copies of the
1607
- Work or Derivative Works thereof in any medium, with or without
1608
- modifications, and in Source or Object form, provided that You
1609
- meet the following conditions:
1610
-
1611
- (a) You must give any other recipients of the Work or
1612
- Derivative Works a copy of this License; and
1613
-
1614
- (b) You must cause any modified files to carry prominent notices
1615
- stating that You changed the files; and
1616
-
1617
- (c) You must retain, in the Source form of any Derivative Works
1618
- that You distribute, all copyright, patent, trademark, and
1619
- attribution notices from the Source form of the Work,
1620
- excluding those notices that do not pertain to any part of
1621
- the Derivative Works; and
1622
-
1623
- (d) If the Work includes a "NOTICE" text file as part of its
1624
- distribution, then any Derivative Works that You distribute must
1625
- include a readable copy of the attribution notices contained
1626
- within such NOTICE file, excluding those notices that do not
1627
- pertain to any part of the Derivative Works, in at least one
1628
- of the following places: within a NOTICE text file distributed
1629
- as part of the Derivative Works; within the Source form or
1630
- documentation, if provided along with the Derivative Works; or,
1631
- within a display generated by the Derivative Works, if and
1632
- wherever such third-party notices normally appear. The contents
1633
- of the NOTICE file are for informational purposes only and
1634
- do not modify the License. You may add Your own attribution
1635
- notices within Derivative Works that You distribute, alongside
1636
- or as an addendum to the NOTICE text from the Work, provided
1637
- that such additional attribution notices cannot be construed
1638
- as modifying the License.
1639
-
1640
- You may add Your own copyright statement to Your modifications and
1641
- may provide additional or different license terms and conditions
1642
- for use, reproduction, or distribution of Your modifications, or
1643
- for any such Derivative Works as a whole, provided Your use,
1644
- reproduction, and distribution of the Work otherwise complies with
1645
- the conditions stated in this License.
1646
-
1647
- 5. Submission of Contributions. Unless You explicitly state otherwise,
1648
- any Contribution intentionally submitted for inclusion in the Work
1649
- by You to the Licensor shall be under the terms and conditions of
1650
- this License, without any additional terms or conditions.
1651
- Notwithstanding the above, nothing herein shall supersede or modify
1652
- the terms of any separate license agreement you may have executed
1653
- with Licensor regarding such Contributions.
1654
-
1655
- 6. Trademarks. This License does not grant permission to use the trade
1656
- names, trademarks, service marks, or product names of the Licensor,
1657
- except as required for reasonable and customary use in describing the
1658
- origin of the Work and reproducing the content of the NOTICE file.
1659
-
1660
- 7. Disclaimer of Warranty. Unless required by applicable law or
1661
- agreed to in writing, Licensor provides the Work (and each
1662
- Contributor provides its Contributions) on an "AS IS" BASIS,
1663
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1664
- implied, including, without limitation, any warranties or conditions
1665
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1666
- PARTICULAR PURPOSE. You are solely responsible for determining the
1667
- appropriateness of using or redistributing the Work and assume any
1668
- risks associated with Your exercise of permissions under this License.
1669
-
1670
- 8. Limitation of Liability. In no event and under no legal theory,
1671
- whether in tort (including negligence), contract, or otherwise,
1672
- unless required by applicable law (such as deliberate and grossly
1673
- negligent acts) or agreed to in writing, shall any Contributor be
1674
- liable to You for damages, including any direct, indirect, special,
1675
- incidental, or consequential damages of any character arising as a
1676
- result of this License or out of the use or inability to use the
1677
- Work (including but not limited to damages for loss of goodwill,
1678
- work stoppage, computer failure or malfunction, or any and all
1679
- other commercial damages or losses), even if such Contributor
1680
- has been advised of the possibility of such damages.
1681
-
1682
- 9. Accepting Warranty or Additional Liability. While redistributing
1683
- the Work or Derivative Works thereof, You may choose to offer,
1684
- and charge a fee for, acceptance of support, warranty, indemnity,
1685
- or other liability obligations and/or rights consistent with this
1686
- License. However, in accepting such obligations, You may act only
1687
- on Your own behalf and on Your sole responsibility, not on behalf
1688
- of any other Contributor, and only if You agree to indemnify,
1689
- defend, and hold each Contributor harmless for any liability
1690
- incurred by, or claims asserted against, such Contributor by reason
1691
- of your accepting any such warranty or additional liability.
1692
-
1693
- END OF TERMS AND CONDITIONS
1694
-
1695
- APPENDIX: How to apply the Apache License to your work.
1696
-
1697
- To apply the Apache License to your work, attach the following
1698
- boilerplate notice, with the fields enclosed by brackets "[]"
1699
- replaced with your own identifying information. (Don't include
1700
- the brackets!) The text should be enclosed in the appropriate
1701
- comment syntax for the file format. We also recommend that a
1702
- file or class name and description of purpose be included on the
1703
- same "printed page" as the copyright notice for easier
1704
- identification within third-party archives.
1705
-
1706
- Copyright 2011 Google Inc.
1707
-
1708
- Licensed under the Apache License, Version 2.0 (the "License");
1709
- you may not use this file except in compliance with the License.
1710
- You may obtain a copy of the License at
1711
-
1712
- http://www.apache.org/licenses/LICENSE-2.0
1713
-
1714
- Unless required by applicable law or agreed to in writing, software
1715
- distributed under the License is distributed on an "AS IS" BASIS,
1716
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1717
- See the License for the specific language governing permissions and
1718
- limitations under the License.
1719
-
1720
- ============================================================
1721
- Notices for file(s):
1722
- /bin/sqlite3
1723
- /lib/libsqlite.dylib
1724
- /lib64/libsqlite.dylib
1725
- ------------------------------------------------------------
1726
- 2001 September 15
1727
-
1728
- The author disclaims copyright to this source code. In place of
1729
- a legal notice, here is a blessing:
1730
-
1731
- May you do good and not evil.
1732
- May you find forgiveness for yourself and forgive others.
1733
- May you share freely, never taking more than you give.
1734
-
1735
-
1736
- ============================================================
1737
- Notices for file(s):
1738
- /lib/libcrypto_static.a
1739
- /lib64/libcrypto-host.dylib
1740
- /lib64/libcrypto_static.a
1741
- /lib64/libssl-host.dylib
1742
- ------------------------------------------------------------
1743
-
1744
- LICENSE ISSUES
1745
- ==============
1746
-
1747
- The OpenSSL toolkit stays under a dual license, i.e. both the conditions of
1748
- the OpenSSL License and the original SSLeay license apply to the toolkit.
1749
- See below for the actual license texts. Actually both licenses are BSD-style
1750
- Open Source licenses. In case of any license issues related to OpenSSL
1751
- please contact openssl-core@openssl.org.
1752
-
1753
- OpenSSL License
1754
- ---------------
1755
-
1756
- /* ====================================================================
1757
- * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved.
1758
- *
1759
- * Redistribution and use in source and binary forms, with or without
1760
- * modification, are permitted provided that the following conditions
1761
- * are met:
1762
- *
1763
- * 1. Redistributions of source code must retain the above copyright
1764
- * notice, this list of conditions and the following disclaimer.
1765
- *
1766
- * 2. Redistributions in binary form must reproduce the above copyright
1767
- * notice, this list of conditions and the following disclaimer in
1768
- * the documentation and/or other materials provided with the
1769
- * distribution.
1770
- *
1771
- * 3. All advertising materials mentioning features or use of this
1772
- * software must display the following acknowledgment:
1773
- * "This product includes software developed by the OpenSSL Project
1774
- * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
1775
- *
1776
- * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
1777
- * endorse or promote products derived from this software without
1778
- * prior written permission. For written permission, please contact
1779
- * openssl-core@openssl.org.
1780
- *
1781
- * 5. Products derived from this software may not be called "OpenSSL"
1782
- * nor may "OpenSSL" appear in their names without prior written
1783
- * permission of the OpenSSL Project.
1784
- *
1785
- * 6. Redistributions of any form whatsoever must retain the following
1786
- * acknowledgment:
1787
- * "This product includes software developed by the OpenSSL Project
1788
- * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
1789
- *
1790
- * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
1791
- * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1792
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
1793
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
1794
- * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1795
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
1796
- * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
1797
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1798
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
1799
- * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
1800
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
1801
- * OF THE POSSIBILITY OF SUCH DAMAGE.
1802
- * ====================================================================
1803
- *
1804
- * This product includes cryptographic software written by Eric Young
1805
- * (eay@cryptsoft.com). This product includes software written by Tim
1806
- * Hudson (tjh@cryptsoft.com).
1807
- *
1808
- */
1809
-
1810
- Original SSLeay License
1811
- -----------------------
1812
-
1813
- /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
1814
- * All rights reserved.
1815
- *
1816
- * This package is an SSL implementation written
1817
- * by Eric Young (eay@cryptsoft.com).
1818
- * The implementation was written so as to conform with Netscapes SSL.
1819
- *
1820
- * This library is free for commercial and non-commercial use as long as
1821
- * the following conditions are aheared to. The following conditions
1822
- * apply to all code found in this distribution, be it the RC4, RSA,
1823
- * lhash, DES, etc., code; not just the SSL code. The SSL documentation
1824
- * included with this distribution is covered by the same copyright terms
1825
- * except that the holder is Tim Hudson (tjh@cryptsoft.com).
1826
- *
1827
- * Copyright remains Eric Young's, and as such any Copyright notices in
1828
- * the code are not to be removed.
1829
- * If this package is used in a product, Eric Young should be given attribution
1830
- * as the author of the parts of the library used.
1831
- * This can be in the form of a textual message at program startup or
1832
- * in documentation (online or textual) provided with the package.
1833
- *
1834
- * Redistribution and use in source and binary forms, with or without
1835
- * modification, are permitted provided that the following conditions
1836
- * are met:
1837
- * 1. Redistributions of source code must retain the copyright
1838
- * notice, this list of conditions and the following disclaimer.
1839
- * 2. Redistributions in binary form must reproduce the above copyright
1840
- * notice, this list of conditions and the following disclaimer in the
1841
- * documentation and/or other materials provided with the distribution.
1842
- * 3. All advertising materials mentioning features or use of this software
1843
- * must display the following acknowledgement:
1844
- * "This product includes cryptographic software written by
1845
- * Eric Young (eay@cryptsoft.com)"
1846
- * The word 'cryptographic' can be left out if the rouines from the library
1847
- * being used are not cryptographic related :-).
1848
- * 4. If you include any Windows specific code (or a derivative thereof) from
1849
- * the apps directory (application code) you must include an acknowledgement:
1850
- * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
1851
- *
1852
- * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
1853
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1854
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1855
- * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1856
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1857
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1858
- * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1859
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1860
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1861
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1862
- * SUCH DAMAGE.
1863
- *
1864
- * The licence and distribution terms for any publically available version or
1865
- * derivative of this code cannot be changed. i.e. this code cannot simply be
1866
- * copied and put under another distribution licence
1867
- * [including the GNU Public Licence.]
1868
- */
1869
-
1870
-
1871
- ============================================================
1872
- Notices for file(s):
1873
- /lib/libexpat.a
1874
- /lib64/libexpat.a
1875
- ------------------------------------------------------------
1876
- Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd
1877
- and Clark Cooper
1878
- Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Expat maintainers.
1879
-
1880
- Permission is hereby granted, free of charge, to any person obtaining
1881
- a copy of this software and associated documentation files (the
1882
- "Software"), to deal in the Software without restriction, including
1883
- without limitation the rights to use, copy, modify, merge, publish,
1884
- distribute, sublicense, and/or sell copies of the Software, and to
1885
- permit persons to whom the Software is furnished to do so, subject to
1886
- the following conditions:
1887
-
1888
- The above copyright notice and this permission notice shall be included
1889
- in all copies or substantial portions of the Software.
1890
-
1891
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1892
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1893
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1894
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1895
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1896
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1897
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1898
-
1899
- ============================================================
1900
- Notices for file(s):
1901
- /framework/emmalib.jar
1902
- ------------------------------------------------------------
1903
- Common Public License - v 1.0
1904
-
1905
- THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S
1906
- ACCEPTANCE OF THIS AGREEMENT.
1907
-
1908
- 1. DEFINITIONS
1909
-
1910
- "Contribution" means:
1911
-
1912
- a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and
1913
- b) in the case of each subsequent Contributor:
1914
-
1915
- i) changes to the Program, and
1916
-
1917
- ii) additions to the Program;
1918
-
1919
- where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was
1920
- added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules
1921
- of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program.
1922
-
1923
- "Contributor" means any person or entity that distributes the Program.
1924
-
1925
- "Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.
1926
-
1927
- "Program" means the Contributions distributed in accordance with this Agreement.
1928
-
1929
- "Recipient" means anyone who receives the Program under this Agreement, including all Contributors.
1930
-
1931
- 2. GRANT OF RIGHTS
1932
-
1933
- a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative
1934
- works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.
1935
-
1936
- b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make,
1937
- use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the
1938
- combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered
1939
- by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.
1940
-
1941
- c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the
1942
- Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other
1943
- entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole
1944
- responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the
1945
- Program, it is Recipient's responsibility to acquire that license before distributing the Program.
1946
-
1947
- d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this
1948
- Agreement.
1949
-
1950
- 3. REQUIREMENTS
1951
-
1952
- A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:
1953
-
1954
- a) it complies with the terms and conditions of this Agreement; and
1955
-
1956
- b) its license agreement:
1957
-
1958
- i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement,
1959
- and implied warranties or conditions of merchantability and fitness for a particular purpose;
1960
-
1961
- ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost
1962
- profits;
1963
-
1964
- iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and
1965
-
1966
- iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium
1967
- customarily used for software exchange.
1968
-
1969
- When the Program is made available in source code form:
1970
-
1971
- a) it must be made available under this Agreement; and
1972
-
1973
- b) a copy of this Agreement must be included with each copy of the Program.
1974
-
1975
- Contributors may not remove or alter any copyright notices contained within the Program.
1976
-
1977
- Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the
1978
- Contribution.
1979
-
1980
- 4. COMMERCIAL DISTRIBUTION
1981
-
1982
- Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the
1983
- commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other
1984
- Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
1985
- every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a
1986
- third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a
1987
- commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to
1988
- qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate
1989
- with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.
1990
-
1991
- For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor
1992
- then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this
1993
- section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other
1994
- Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.
1995
-
1996
- 5. NO WARRANTY
1997
-
1998
- EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
1999
- WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for
2000
- determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to
2001
- the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.
2002
-
2003
- 6. DISCLAIMER OF LIABILITY
2004
-
2005
- EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2006
- CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
2007
- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
2008
- DAMAGES.
2009
-
2010
- 7. GENERAL
2011
-
2012
- If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this
2013
- Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.
2014
-
2015
- If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any
2016
- patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes
2017
- patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other
2018
- software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.
2019
-
2020
- All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a
2021
- reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the
2022
- Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and
2023
- survive.
2024
-
2025
- Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following
2026
- manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the
2027
- right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new
2028
- version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under
2029
- which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new
2030
- version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement,
2031
- whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.
2032
-
2033
- This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal
2034
- action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.
2035
-
2036
- ============================================================
2037
- Notices for file(s):
2038
- /lib/liblog.a
2039
- /lib/liblog.dylib
2040
- /lib64/liblog.a
2041
- /lib64/liblog.dylib
2042
- ------------------------------------------------------------
2043
-
2044
- Copyright (c) 2005-2014, The Android Open Source Project
2045
-
2046
- Licensed under the Apache License, Version 2.0 (the "License");
2047
- you may not use this file except in compliance with the License.
2048
-
2049
- Unless required by applicable law or agreed to in writing, software
2050
- distributed under the License is distributed on an "AS IS" BASIS,
2051
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2052
- See the License for the specific language governing permissions and
2053
- limitations under the License.
2054
-
2055
-
2056
- Apache License
2057
- Version 2.0, January 2004
2058
- http://www.apache.org/licenses/
2059
-
2060
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
2061
-
2062
- 1. Definitions.
2063
-
2064
- "License" shall mean the terms and conditions for use, reproduction,
2065
- and distribution as defined by Sections 1 through 9 of this document.
2066
-
2067
- "Licensor" shall mean the copyright owner or entity authorized by
2068
- the copyright owner that is granting the License.
2069
-
2070
- "Legal Entity" shall mean the union of the acting entity and all
2071
- other entities that control, are controlled by, or are under common
2072
- control with that entity. For the purposes of this definition,
2073
- "control" means (i) the power, direct or indirect, to cause the
2074
- direction or management of such entity, whether by contract or
2075
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
2076
- outstanding shares, or (iii) beneficial ownership of such entity.
2077
-
2078
- "You" (or "Your") shall mean an individual or Legal Entity
2079
- exercising permissions granted by this License.
2080
-
2081
- "Source" form shall mean the preferred form for making modifications,
2082
- including but not limited to software source code, documentation
2083
- source, and configuration files.
2084
-
2085
- "Object" form shall mean any form resulting from mechanical
2086
- transformation or translation of a Source form, including but
2087
- not limited to compiled object code, generated documentation,
2088
- and conversions to other media types.
2089
-
2090
- "Work" shall mean the work of authorship, whether in Source or
2091
- Object form, made available under the License, as indicated by a
2092
- copyright notice that is included in or attached to the work
2093
- (an example is provided in the Appendix below).
2094
-
2095
- "Derivative Works" shall mean any work, whether in Source or Object
2096
- form, that is based on (or derived from) the Work and for which the
2097
- editorial revisions, annotations, elaborations, or other modifications
2098
- represent, as a whole, an original work of authorship. For the purposes
2099
- of this License, Derivative Works shall not include works that remain
2100
- separable from, or merely link (or bind by name) to the interfaces of,
2101
- the Work and Derivative Works thereof.
2102
-
2103
- "Contribution" shall mean any work of authorship, including
2104
- the original version of the Work and any modifications or additions
2105
- to that Work or Derivative Works thereof, that is intentionally
2106
- submitted to Licensor for inclusion in the Work by the copyright owner
2107
- or by an individual or Legal Entity authorized to submit on behalf of
2108
- the copyright owner. For the purposes of this definition, "submitted"
2109
- means any form of electronic, verbal, or written communication sent
2110
- to the Licensor or its representatives, including but not limited to
2111
- communication on electronic mailing lists, source code control systems,
2112
- and issue tracking systems that are managed by, or on behalf of, the
2113
- Licensor for the purpose of discussing and improving the Work, but
2114
- excluding communication that is conspicuously marked or otherwise
2115
- designated in writing by the copyright owner as "Not a Contribution."
2116
-
2117
- "Contributor" shall mean Licensor and any individual or Legal Entity
2118
- on behalf of whom a Contribution has been received by Licensor and
2119
- subsequently incorporated within the Work.
2120
-
2121
- 2. Grant of Copyright License. Subject to the terms and conditions of
2122
- this License, each Contributor hereby grants to You a perpetual,
2123
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2124
- copyright license to reproduce, prepare Derivative Works of,
2125
- publicly display, publicly perform, sublicense, and distribute the
2126
- Work and such Derivative Works in Source or Object form.
2127
-
2128
- 3. Grant of Patent License. Subject to the terms and conditions of
2129
- this License, each Contributor hereby grants to You a perpetual,
2130
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2131
- (except as stated in this section) patent license to make, have made,
2132
- use, offer to sell, sell, import, and otherwise transfer the Work,
2133
- where such license applies only to those patent claims licensable
2134
- by such Contributor that are necessarily infringed by their
2135
- Contribution(s) alone or by combination of their Contribution(s)
2136
- with the Work to which such Contribution(s) was submitted. If You
2137
- institute patent litigation against any entity (including a
2138
- cross-claim or counterclaim in a lawsuit) alleging that the Work
2139
- or a Contribution incorporated within the Work constitutes direct
2140
- or contributory patent infringement, then any patent licenses
2141
- granted to You under this License for that Work shall terminate
2142
- as of the date such litigation is filed.
2143
-
2144
- 4. Redistribution. You may reproduce and distribute copies of the
2145
- Work or Derivative Works thereof in any medium, with or without
2146
- modifications, and in Source or Object form, provided that You
2147
- meet the following conditions:
2148
-
2149
- (a) You must give any other recipients of the Work or
2150
- Derivative Works a copy of this License; and
2151
-
2152
- (b) You must cause any modified files to carry prominent notices
2153
- stating that You changed the files; and
2154
-
2155
- (c) You must retain, in the Source form of any Derivative Works
2156
- that You distribute, all copyright, patent, trademark, and
2157
- attribution notices from the Source form of the Work,
2158
- excluding those notices that do not pertain to any part of
2159
- the Derivative Works; and
2160
-
2161
- (d) If the Work includes a "NOTICE" text file as part of its
2162
- distribution, then any Derivative Works that You distribute must
2163
- include a readable copy of the attribution notices contained
2164
- within such NOTICE file, excluding those notices that do not
2165
- pertain to any part of the Derivative Works, in at least one
2166
- of the following places: within a NOTICE text file distributed
2167
- as part of the Derivative Works; within the Source form or
2168
- documentation, if provided along with the Derivative Works; or,
2169
- within a display generated by the Derivative Works, if and
2170
- wherever such third-party notices normally appear. The contents
2171
- of the NOTICE file are for informational purposes only and
2172
- do not modify the License. You may add Your own attribution
2173
- notices within Derivative Works that You distribute, alongside
2174
- or as an addendum to the NOTICE text from the Work, provided
2175
- that such additional attribution notices cannot be construed
2176
- as modifying the License.
2177
-
2178
- You may add Your own copyright statement to Your modifications and
2179
- may provide additional or different license terms and conditions
2180
- for use, reproduction, or distribution of Your modifications, or
2181
- for any such Derivative Works as a whole, provided Your use,
2182
- reproduction, and distribution of the Work otherwise complies with
2183
- the conditions stated in this License.
2184
-
2185
- 5. Submission of Contributions. Unless You explicitly state otherwise,
2186
- any Contribution intentionally submitted for inclusion in the Work
2187
- by You to the Licensor shall be under the terms and conditions of
2188
- this License, without any additional terms or conditions.
2189
- Notwithstanding the above, nothing herein shall supersede or modify
2190
- the terms of any separate license agreement you may have executed
2191
- with Licensor regarding such Contributions.
2192
-
2193
- 6. Trademarks. This License does not grant permission to use the trade
2194
- names, trademarks, service marks, or product names of the Licensor,
2195
- except as required for reasonable and customary use in describing the
2196
- origin of the Work and reproducing the content of the NOTICE file.
2197
-
2198
- 7. Disclaimer of Warranty. Unless required by applicable law or
2199
- agreed to in writing, Licensor provides the Work (and each
2200
- Contributor provides its Contributions) on an "AS IS" BASIS,
2201
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
2202
- implied, including, without limitation, any warranties or conditions
2203
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
2204
- PARTICULAR PURPOSE. You are solely responsible for determining the
2205
- appropriateness of using or redistributing the Work and assume any
2206
- risks associated with Your exercise of permissions under this License.
2207
-
2208
- 8. Limitation of Liability. In no event and under no legal theory,
2209
- whether in tort (including negligence), contract, or otherwise,
2210
- unless required by applicable law (such as deliberate and grossly
2211
- negligent acts) or agreed to in writing, shall any Contributor be
2212
- liable to You for damages, including any direct, indirect, special,
2213
- incidental, or consequential damages of any character arising as a
2214
- result of this License or out of the use or inability to use the
2215
- Work (including but not limited to damages for loss of goodwill,
2216
- work stoppage, computer failure or malfunction, or any and all
2217
- other commercial damages or losses), even if such Contributor
2218
- has been advised of the possibility of such damages.
2219
-
2220
- 9. Accepting Warranty or Additional Liability. While redistributing
2221
- the Work or Derivative Works thereof, You may choose to offer,
2222
- and charge a fee for, acceptance of support, warranty, indemnity,
2223
- or other liability obligations and/or rights consistent with this
2224
- License. However, in accepting such obligations, You may act only
2225
- on Your own behalf and on Your sole responsibility, not on behalf
2226
- of any other Contributor, and only if You agree to indemnify,
2227
- defend, and hold each Contributor harmless for any liability
2228
- incurred by, or claims asserted against, such Contributor by reason
2229
- of your accepting any such warranty or additional liability.
2230
-
2231
- END OF TERMS AND CONDITIONS
2232
-
2233
-
2234
- ============================================================
2235
- Notices for file(s):
2236
- /bin/sefcontext_compile
2237
- /lib/libselinux.a
2238
- /lib/libselinux.dylib
2239
- /lib64/libselinux.a
2240
- /lib64/libselinux.dylib
2241
- ------------------------------------------------------------
2242
- This library (libselinux) is public domain software, i.e. not copyrighted.
2243
-
2244
- Warranty Exclusion
2245
- ------------------
2246
- You agree that this software is a
2247
- non-commercially developed program that may contain "bugs" (as that
2248
- term is used in the industry) and that it may not function as intended.
2249
- The software is licensed "as is". NSA makes no, and hereby expressly
2250
- disclaims all, warranties, express, implied, statutory, or otherwise
2251
- with respect to the software, including noninfringement and the implied
2252
- warranties of merchantability and fitness for a particular purpose.
2253
-
2254
- Limitation of Liability
2255
- -----------------------
2256
- In no event will NSA be liable for any damages, including loss of data,
2257
- lost profits, cost of cover, or other special, incidental,
2258
- consequential, direct or indirect damages arising from the software or
2259
- the use thereof, however caused and on any theory of liability. This
2260
- limitation will apply even if NSA has been advised of the possibility
2261
- of such damage. You acknowledge that this is a reasonable allocation of
2262
- risk.
2263
-
2264
- ============================================================
2265
- Notices for file(s):
2266
- /framework/org-netbeans-api-visual.jar
2267
- /framework/org-openide-util.jar
2268
- ------------------------------------------------------------
2269
- The GNU General Public License (GPL) Version 2, June 1991
2270
-
2271
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
2272
-
2273
- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2274
-
2275
- Everyone is permitted to copy and distribute verbatim copies
2276
- of this license document, but changing it is not allowed.
2277
-
2278
- Preamble
2279
-
2280
- The licenses for most software are designed to take away
2281
- your freedom to share and change it. By contrast, the GNU
2282
- General Public License is intended to guarantee your freedom
2283
- to share and change free software--to make sure the software
2284
- is free for all its users. This General Public License
2285
- applies to most of the Free Software Foundation's software
2286
- and to any other program whose authors commit to using it.
2287
- (Some other Free Software Foundation software is covered by
2288
- the GNU Library General Public License instead.) You can
2289
- apply it to your programs, too. When we speak of free
2290
- software, we are referring to freedom, not price. Our
2291
- General Public Licenses are designed to make sure that you
2292
- have the freedom to distribute copies of free software (and
2293
- charge for this service if you wish), that you receive
2294
- source code or can get it if you want it, that you can
2295
- change the software or use pieces of it in new free
2296
- programs; and that you know you can do these things. To
2297
- protect your rights, we need to make restrictions that
2298
- forbid anyone to deny you these rights or to ask you to
2299
- surrender the rights. These restrictions translate to
2300
- certain responsibilities for you if you distribute copies of
2301
- the software, or if you modify it.
2302
-
2303
- For example, if you distribute copies of such a program,
2304
- whether gratis or for a fee, you must give the recipients
2305
- all the rights that you have. You must make sure that they,
2306
- too, receive or can get the source code. And you must show
2307
- them these terms so they know their rights.
2308
-
2309
- We protect your rights with two steps: (1) copyright the
2310
- software, and (2) offer you this license which gives you
2311
- legal permission to copy, distribute and/or modify the
2312
- software.
2313
-
2314
- Also, for each author's protection and ours, we want to make
2315
- certain that everyone understands that there is no warranty
2316
- for this free software. If the software is modified by
2317
- someone else and passed on, we want its recipients to know
2318
- that what they have is not the original, so that any
2319
- problems introduced by others will not reflect on the
2320
- original authors' reputations.
2321
-
2322
- Finally, any free program is threatened constantly by
2323
- software patents. We wish to avoid the danger that
2324
- redistributors of a free program will individually obtain
2325
- patent licenses, in effect making the program proprietary.
2326
- To prevent this, we have made it clear that any patent must
2327
- be licensed for everyone's free use or not licensed at all.
2328
-
2329
- The precise terms and conditions for copying, distribution
2330
- and modification follow.
2331
-
2332
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND
2333
- MODIFICATION
2334
-
2335
- 0. This License applies to any program or other work which
2336
- contains a notice placed by the copyright holder saying it
2337
- may be distributed under the terms of this General Public
2338
- License. The "Program", below, refers to any such program or
2339
- work, and a "work based on the Program" means either the
2340
- Program or any derivative work under copyright law: that is
2341
- to say, a work containing the Program or a portion of it,
2342
- either verbatim or with modifications and/or translated into
2343
- another language. (Hereinafter, translation is included
2344
- without limitation in the term "modification".) Each
2345
- licensee is addressed as "you".
2346
-
2347
- Activities other than copying, distribution and modification
2348
- are not covered by this License; they are outside its scope.
2349
- The act of running the Program is not restricted, and the
2350
- output from the Program is covered only if its contents
2351
- constitute a work based on the Program (independent of
2352
- having been made by running the Program). Whether that is
2353
- true depends on what the Program does.
2354
-
2355
- 1. You may copy and distribute verbatim copies of the
2356
- Program's source code as you receive it, in any medium,
2357
- provided that you conspicuously and appropriately publish on
2358
- each copy an appropriate copyright notice and disclaimer of
2359
- warranty; keep intact all the notices that refer to this
2360
- License and to the absence of any warranty; and give any
2361
- other recipients of the Program a copy of this License along
2362
- with the Program.
2363
-
2364
- You may charge a fee for the physical act of transferring a
2365
- copy, and you may at your option offer warranty protection
2366
- in exchange for a fee.
2367
-
2368
- 2. You may modify your copy or copies of the Program or any
2369
- portion of it, thus forming a work based on the Program, and
2370
- copy and distribute such modifications or work under the
2371
- terms of Section 1 above, provided that you also meet all of
2372
- these conditions:
2373
-
2374
- a) You must cause the modified files to carry prominent
2375
- notices stating that you changed the files and the date of
2376
- any change.
2377
-
2378
- b) You must cause any work that you distribute or publish,
2379
- that in whole or in part contains or is derived from the
2380
- Program or any part thereof, to be licensed as a whole at no
2381
- charge to all third parties under the terms of this License.
2382
-
2383
- c) If the modified program normally reads commands
2384
- interactively when run, you must cause it, when started
2385
- running for such interactive use in the most ordinary way,
2386
- to print or display an announcement including an appropriate
2387
- copyright notice and a notice that there is no warranty (or
2388
- else, saying that you provide a warranty) and that users may
2389
- redistribute the program under these conditions, and telling
2390
- the user how to view a copy of this License. (Exception: if
2391
- the Program itself is interactive but does not normally
2392
- print such an announcement, your work based on the Program
2393
- is not required to print an announcement.)
2394
-
2395
- These requirements apply to the modified work as a whole. If
2396
- identifiable sections of that work are not derived from the
2397
- Program, and can be reasonably considered independent and
2398
- separate works in themselves, then this License, and its
2399
- terms, do not apply to those sections when you distribute
2400
- them as separate works. But when you distribute the same
2401
- sections as part of a whole which is a work based on the
2402
- Program, the distribution of the whole must be on the terms
2403
- of this License, whose permissions for other licensees
2404
- extend to the entire whole, and thus to each and every part
2405
- regardless of who wrote it.
2406
-
2407
- Thus, it is not the intent of this section to claim rights
2408
- or contest your rights to work written entirely by you;
2409
- rather, the intent is to exercise the right to control the
2410
- distribution of derivative or collective works based on the
2411
- Program. In addition, mere aggregation of another work not
2412
- based on the Program with the Program (or with a work based
2413
- on the Program) on a volume of a storage or distribution
2414
- medium does not bring the other work under the scope of this
2415
- License.
2416
-
2417
- 3. You may copy and distribute the Program (or a work based
2418
- on it, under Section 2) in object code or executable form
2419
- under the terms of Sections 1 and 2 above provided that you
2420
- also do one of the following:
2421
-
2422
- a) Accompany it with the complete corresponding
2423
- machine-readable source code, which must be distributed
2424
- under the terms of Sections 1 and 2 above on a medium
2425
- customarily used for software interchange; or,
2426
-
2427
- b) Accompany it with a written offer, valid for at least
2428
- three years, to give any third party, for a charge no more
2429
- than your cost of physically performing source distribution,
2430
- a complete machine-readable copy of the corresponding source
2431
- code, to be distributed under the terms of Sections 1 and 2
2432
- above on a medium customarily used for software interchange;
2433
- or,
2434
-
2435
- c) Accompany it with the information you received as to the
2436
- offer to distribute corresponding source code. (This
2437
- alternative is allowed only for noncommercial distribution
2438
- and only if you received the program in object code or
2439
- executable form with such an offer, in accord with
2440
- Subsection b above.)
2441
-
2442
- The source code for a work means the preferred form of the
2443
- work for making modifications to it. For an executable work,
2444
- complete source code means all the source code for all
2445
- modules it contains, plus any associated interface
2446
- definition files, plus the scripts used to control
2447
- compilation and installation of the executable. However, as
2448
- a special exception, the source code distributed need not
2449
- include anything that is normally distributed (in either
2450
- source or binary form) with the major components (compiler,
2451
- kernel, and so on) of the operating system on which the
2452
- executable runs, unless that component itself accompanies
2453
- the executable. If distribution of executable or object code
2454
- is made by offering access to copy from a designated place,
2455
- then offering equivalent access to copy the source code from
2456
- the same place counts as distribution of the source code,
2457
- even though third parties are not compelled to copy the
2458
- source along with the object code.
2459
-
2460
- 4. You may not copy, modify, sublicense, or distribute the
2461
- Program except as expressly provided under this License. Any
2462
- attempt otherwise to copy, modify, sublicense or distribute
2463
- the Program is void, and will automatically terminate your
2464
- rights under this License. However, parties who have
2465
- received copies, or rights, from you under this License will
2466
- not have their licenses terminated so long as such parties
2467
- remain in full compliance.
2468
-
2469
- 5. You are not required to accept this License, since you
2470
- have not signed it. However, nothing else grants you
2471
- permission to modify or distribute the Program or its
2472
- derivative works. These actions are prohibited by law if you
2473
- do not accept this License. Therefore, by modifying or
2474
- distributing the Program (or any work based on the Program),
2475
- you indicate your acceptance of this License to do so, and
2476
- all its terms and conditions for copying, distributing or
2477
- modifying the Program or works based on it.
2478
-
2479
- 6. Each time you redistribute the Program (or any work based
2480
- on the Program), the recipient automatically receives a
2481
- license from the original licensor to copy, distribute or
2482
- modify the Program subject to these terms and conditions.
2483
- You may not impose any further restrictions on the
2484
- recipients' exercise of the rights granted herein. You are
2485
- not responsible for enforcing compliance by third parties to
2486
- this License.
2487
-
2488
- 7. If, as a consequence of a court judgment or allegation of
2489
- patent infringement or for any other reason (not limited to
2490
- patent issues), conditions are imposed on you (whether by
2491
- court order, agreement or otherwise) that contradict the
2492
- conditions of this License, they do not excuse you from the
2493
- conditions of this License. If you cannot distribute so as
2494
- to satisfy simultaneously your obligations under this
2495
- License and any other pertinent obligations, then as a
2496
- consequence you may not distribute the Program at all. For
2497
- example, if a patent license would not permit royalty-free
2498
- redistribution of the Program by all those who receive
2499
- copies directly or indirectly through you, then the only way
2500
- you could satisfy both it and this License would be to
2501
- refrain entirely from distribution of the Program.
2502
-
2503
- If any portion of this section is held invalid or
2504
- unenforceable under any particular circumstance, the balance
2505
- of the section is intended to apply and the section as a
2506
- whole is intended to apply in other circumstances. It is not
2507
- the purpose of this section to induce you to infringe any
2508
- patents or other property right claims or to contest
2509
- validity of any such claims; this section has the sole
2510
- purpose of protecting the integrity of the free software
2511
- distribution system, which is implemented by public license
2512
- practices. Many people have made generous contributions to
2513
- the wide range of software distributed through that system
2514
- in reliance on consistent application of that system; it is
2515
- up to the author/donor to decide if he or she is willing to
2516
- distribute software through any other system and a licensee
2517
- cannot impose that choice.
2518
-
2519
- This section is intended to make thoroughly clear what is
2520
- believed to be a consequence of the rest of this License.
2521
-
2522
- 8. If the distribution and/or use of the Program is
2523
- restricted in certain countries either by patents or by
2524
- copyrighted interfaces, the original copyright holder who
2525
- places the Program under this License may add an explicit
2526
- geographical distribution limitation excluding those
2527
- countries, so that distribution is permitted only in or
2528
- among countries not thus excluded. In such case, this
2529
- License incorporates the limitation as if written in the
2530
- body of this License.
2531
-
2532
- 9. The Free Software Foundation may publish revised and/or
2533
- new versions of the General Public License from time to
2534
- time. Such new versions will be similar in spirit to the
2535
- present version, but may differ in detail to address new
2536
- problems or concerns.
2537
-
2538
- Each version is given a distinguishing version number. If
2539
- the Program specifies a version number of this License which
2540
- applies to it and "any later version", you have the option
2541
- of following the terms and conditions either of that version
2542
- or of any later version published by the Free Software
2543
- Foundation. If the Program does not specify a version number
2544
- of this License, you may choose any version ever published
2545
- by the Free Software Foundation.
2546
-
2547
- 10. If you wish to incorporate parts of the Program into
2548
- other free programs whose distribution conditions are
2549
- different, write to the author to ask for permission. For
2550
- software which is copyrighted by the Free Software
2551
- Foundation, write to the Free Software Foundation; we
2552
- sometimes make exceptions for this. Our decision will be
2553
- guided by the two goals of preserving the free status of all
2554
- derivatives of our free software and of promoting the
2555
- sharing and reuse of software generally.
2556
-
2557
- NO WARRANTY
2558
-
2559
- 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS
2560
- NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
2561
- APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE
2562
- COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM
2563
- "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
2564
- IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
2565
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2566
- PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE
2567
- OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE
2568
- DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
2569
- REPAIR OR CORRECTION.
2570
-
2571
- 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED
2572
- TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY
2573
- WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED
2574
- ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL,
2575
- SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF
2576
- THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT
2577
- LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR
2578
- LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE
2579
- PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH
2580
- HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
2581
- SUCH DAMAGES.
2582
-
2583
- END OF TERMS AND CONDITIONS
2584
-
2585
- How to Apply These Terms to Your New Programs
2586
-
2587
- If you develop a new program, and you want it to be of the
2588
- greatest possible use to the public, the best way to achieve
2589
- this is to make it free software which everyone can
2590
- redistribute and change under these terms.
2591
-
2592
- To do so, attach the following notices to the program. It is
2593
- safest to attach them to the start of each source file to
2594
- most effectively convey the exclusion of warranty; and each
2595
- file should have at least the "copyright" line and a pointer
2596
- to where the full notice is found.
2597
-
2598
- One line to give the program's name and a brief idea of what
2599
- it does.
2600
-
2601
- Copyright (C) <year> <name of author>
2602
- This program is free software; you can redistribute it
2603
- and/or modify it under the terms of the GNU General Public
2604
- License as published by the Free Software Foundation; either
2605
- version 2 of the License, or (at your option) any later
2606
- version. This program is distributed in the hope that it
2607
- will be useful, but WITHOUT ANY WARRANTY; without even the
2608
- implied warranty of MERCHANTABILITY or FITNESS FOR A
2609
- PARTICULAR PURPOSE. See the GNU General Public License for
2610
- more details. You should have received a copy of the GNU
2611
- General Public License along with this program; if not,
2612
- write to the Free Software Foundation, Inc., 59 Temple
2613
- Place, Suite 330, Boston, MA 02111-1307 USA
2614
-
2615
- Also add information on how to contact you by electronic and
2616
- paper mail. If the program is interactive, make it output a
2617
- short notice like this when it starts in an interactive
2618
- mode:
2619
-
2620
- Gnomovision version 69, Copyright (C) year name of author
2621
- Gnomovision comes with ABSOLUTELY NO WARRANTY; for details
2622
- type `show w'. This is free software, and you are welcome to
2623
- redistribute it under certain conditions; type `show c' for
2624
- details. The hypothetical commands `show w' and `show c'
2625
- should show the appropriate parts of the General Public
2626
- License. Of course, the commands you use may be called
2627
- something other than `show w' and `show c'; they could even
2628
- be mouse-clicks or menu items--whatever suits your program.
2629
-
2630
- You should also get your employer (if you work as a
2631
- programmer) or your school, if any, to sign a "copyright
2632
- disclaimer" for the program, if necessary. Here is a sample;
2633
- alter the names:
2634
-
2635
- Yoyodyne, Inc., hereby disclaims all copyright interest in
2636
- the program `Gnomovision' (which makes passes at compilers)
2637
- written by James Hacker.
2638
-
2639
- signature of Ty Coon, 1 April 1989
2640
- Ty Coon, President of Vice
2641
- This General Public License does not permit incorporating
2642
- your program into proprietary programs. If your program is a
2643
- subroutine library, you may consider it more useful to
2644
- permit linking proprietary applications with the library. If
2645
- this is what you want to do, use the GNU Library General
2646
- Public License instead of this License.
2647
-
2648
- "CLASSPATH" EXCEPTION TO THE GPL VERSION 2
2649
-
2650
- Certain source files distributed by Sun Microsystems, Inc.
2651
- are subject to the following clarification and special
2652
- exception to the GPL Version 2, but only where Sun has
2653
- expressly included in the particular source file's header
2654
- the words "Sun designates this particular file as subject
2655
- to the "Classpath" exception as provided by Sun in the
2656
- License file that accompanied this code."
2657
-
2658
- Linking this library statically or dynamically with other
2659
- modules is making a combined work based on this library.
2660
- Thus, the terms and conditions of the GNU General Public
2661
- License Version 2 cover the whole combination.
2662
-
2663
- As a special exception, the copyright holders of this
2664
- library give you permission to link this library with
2665
- independent modules to produce an executable, regardless of
2666
- the license terms of these independent modules, and to copy
2667
- and distribute the resulting executable under terms of your
2668
- choice, provided that you also meet, for each linked
2669
- independent module, the terms and conditions of the license
2670
- of that module. An independent module is a module which is
2671
- not derived from or based on this library. If you modify
2672
- this library, you may extend this exception to your version
2673
- of the library, but you are not obligated to do so. If you
2674
- do not wish to do so, delete this exception statement from
2675
- your version.
2676
- ============================================================
2677
- Notices for file(s):
2678
- /bin/adb
2679
- /lib64/libadb.a
2680
- ------------------------------------------------------------
2681
-
2682
- Copyright (c) 2006-2009, The Android Open Source Project
2683
- Copyright 2006, Brian Swetland <swetland@frotz.net>
2684
-
2685
- Licensed under the Apache License, Version 2.0 (the "License");
2686
- you may not use this file except in compliance with the License.
2687
-
2688
- Unless required by applicable law or agreed to in writing, software
2689
- distributed under the License is distributed on an "AS IS" BASIS,
2690
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2691
- See the License for the specific language governing permissions and
2692
- limitations under the License.
2693
-
2694
-
2695
- Apache License
2696
- Version 2.0, January 2004
2697
- http://www.apache.org/licenses/
2698
-
2699
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
2700
-
2701
- 1. Definitions.
2702
-
2703
- "License" shall mean the terms and conditions for use, reproduction,
2704
- and distribution as defined by Sections 1 through 9 of this document.
2705
-
2706
- "Licensor" shall mean the copyright owner or entity authorized by
2707
- the copyright owner that is granting the License.
2708
-
2709
- "Legal Entity" shall mean the union of the acting entity and all
2710
- other entities that control, are controlled by, or are under common
2711
- control with that entity. For the purposes of this definition,
2712
- "control" means (i) the power, direct or indirect, to cause the
2713
- direction or management of such entity, whether by contract or
2714
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
2715
- outstanding shares, or (iii) beneficial ownership of such entity.
2716
-
2717
- "You" (or "Your") shall mean an individual or Legal Entity
2718
- exercising permissions granted by this License.
2719
-
2720
- "Source" form shall mean the preferred form for making modifications,
2721
- including but not limited to software source code, documentation
2722
- source, and configuration files.
2723
-
2724
- "Object" form shall mean any form resulting from mechanical
2725
- transformation or translation of a Source form, including but
2726
- not limited to compiled object code, generated documentation,
2727
- and conversions to other media types.
2728
-
2729
- "Work" shall mean the work of authorship, whether in Source or
2730
- Object form, made available under the License, as indicated by a
2731
- copyright notice that is included in or attached to the work
2732
- (an example is provided in the Appendix below).
2733
-
2734
- "Derivative Works" shall mean any work, whether in Source or Object
2735
- form, that is based on (or derived from) the Work and for which the
2736
- editorial revisions, annotations, elaborations, or other modifications
2737
- represent, as a whole, an original work of authorship. For the purposes
2738
- of this License, Derivative Works shall not include works that remain
2739
- separable from, or merely link (or bind by name) to the interfaces of,
2740
- the Work and Derivative Works thereof.
2741
-
2742
- "Contribution" shall mean any work of authorship, including
2743
- the original version of the Work and any modifications or additions
2744
- to that Work or Derivative Works thereof, that is intentionally
2745
- submitted to Licensor for inclusion in the Work by the copyright owner
2746
- or by an individual or Legal Entity authorized to submit on behalf of
2747
- the copyright owner. For the purposes of this definition, "submitted"
2748
- means any form of electronic, verbal, or written communication sent
2749
- to the Licensor or its representatives, including but not limited to
2750
- communication on electronic mailing lists, source code control systems,
2751
- and issue tracking systems that are managed by, or on behalf of, the
2752
- Licensor for the purpose of discussing and improving the Work, but
2753
- excluding communication that is conspicuously marked or otherwise
2754
- designated in writing by the copyright owner as "Not a Contribution."
2755
-
2756
- "Contributor" shall mean Licensor and any individual or Legal Entity
2757
- on behalf of whom a Contribution has been received by Licensor and
2758
- subsequently incorporated within the Work.
2759
-
2760
- 2. Grant of Copyright License. Subject to the terms and conditions of
2761
- this License, each Contributor hereby grants to You a perpetual,
2762
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2763
- copyright license to reproduce, prepare Derivative Works of,
2764
- publicly display, publicly perform, sublicense, and distribute the
2765
- Work and such Derivative Works in Source or Object form.
2766
-
2767
- 3. Grant of Patent License. Subject to the terms and conditions of
2768
- this License, each Contributor hereby grants to You a perpetual,
2769
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2770
- (except as stated in this section) patent license to make, have made,
2771
- use, offer to sell, sell, import, and otherwise transfer the Work,
2772
- where such license applies only to those patent claims licensable
2773
- by such Contributor that are necessarily infringed by their
2774
- Contribution(s) alone or by combination of their Contribution(s)
2775
- with the Work to which such Contribution(s) was submitted. If You
2776
- institute patent litigation against any entity (including a
2777
- cross-claim or counterclaim in a lawsuit) alleging that the Work
2778
- or a Contribution incorporated within the Work constitutes direct
2779
- or contributory patent infringement, then any patent licenses
2780
- granted to You under this License for that Work shall terminate
2781
- as of the date such litigation is filed.
2782
-
2783
- 4. Redistribution. You may reproduce and distribute copies of the
2784
- Work or Derivative Works thereof in any medium, with or without
2785
- modifications, and in Source or Object form, provided that You
2786
- meet the following conditions:
2787
-
2788
- (a) You must give any other recipients of the Work or
2789
- Derivative Works a copy of this License; and
2790
-
2791
- (b) You must cause any modified files to carry prominent notices
2792
- stating that You changed the files; and
2793
-
2794
- (c) You must retain, in the Source form of any Derivative Works
2795
- that You distribute, all copyright, patent, trademark, and
2796
- attribution notices from the Source form of the Work,
2797
- excluding those notices that do not pertain to any part of
2798
- the Derivative Works; and
2799
-
2800
- (d) If the Work includes a "NOTICE" text file as part of its
2801
- distribution, then any Derivative Works that You distribute must
2802
- include a readable copy of the attribution notices contained
2803
- within such NOTICE file, excluding those notices that do not
2804
- pertain to any part of the Derivative Works, in at least one
2805
- of the following places: within a NOTICE text file distributed
2806
- as part of the Derivative Works; within the Source form or
2807
- documentation, if provided along with the Derivative Works; or,
2808
- within a display generated by the Derivative Works, if and
2809
- wherever such third-party notices normally appear. The contents
2810
- of the NOTICE file are for informational purposes only and
2811
- do not modify the License. You may add Your own attribution
2812
- notices within Derivative Works that You distribute, alongside
2813
- or as an addendum to the NOTICE text from the Work, provided
2814
- that such additional attribution notices cannot be construed
2815
- as modifying the License.
2816
-
2817
- You may add Your own copyright statement to Your modifications and
2818
- may provide additional or different license terms and conditions
2819
- for use, reproduction, or distribution of Your modifications, or
2820
- for any such Derivative Works as a whole, provided Your use,
2821
- reproduction, and distribution of the Work otherwise complies with
2822
- the conditions stated in this License.
2823
-
2824
- 5. Submission of Contributions. Unless You explicitly state otherwise,
2825
- any Contribution intentionally submitted for inclusion in the Work
2826
- by You to the Licensor shall be under the terms and conditions of
2827
- this License, without any additional terms or conditions.
2828
- Notwithstanding the above, nothing herein shall supersede or modify
2829
- the terms of any separate license agreement you may have executed
2830
- with Licensor regarding such Contributions.
2831
-
2832
- 6. Trademarks. This License does not grant permission to use the trade
2833
- names, trademarks, service marks, or product names of the Licensor,
2834
- except as required for reasonable and customary use in describing the
2835
- origin of the Work and reproducing the content of the NOTICE file.
2836
-
2837
- 7. Disclaimer of Warranty. Unless required by applicable law or
2838
- agreed to in writing, Licensor provides the Work (and each
2839
- Contributor provides its Contributions) on an "AS IS" BASIS,
2840
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
2841
- implied, including, without limitation, any warranties or conditions
2842
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
2843
- PARTICULAR PURPOSE. You are solely responsible for determining the
2844
- appropriateness of using or redistributing the Work and assume any
2845
- risks associated with Your exercise of permissions under this License.
2846
-
2847
- 8. Limitation of Liability. In no event and under no legal theory,
2848
- whether in tort (including negligence), contract, or otherwise,
2849
- unless required by applicable law (such as deliberate and grossly
2850
- negligent acts) or agreed to in writing, shall any Contributor be
2851
- liable to You for damages, including any direct, indirect, special,
2852
- incidental, or consequential damages of any character arising as a
2853
- result of this License or out of the use or inability to use the
2854
- Work (including but not limited to damages for loss of goodwill,
2855
- work stoppage, computer failure or malfunction, or any and all
2856
- other commercial damages or losses), even if such Contributor
2857
- has been advised of the possibility of such damages.
2858
-
2859
- 9. Accepting Warranty or Additional Liability. While redistributing
2860
- the Work or Derivative Works thereof, You may choose to offer,
2861
- and charge a fee for, acceptance of support, warranty, indemnity,
2862
- or other liability obligations and/or rights consistent with this
2863
- License. However, in accepting such obligations, You may act only
2864
- on Your own behalf and on Your sole responsibility, not on behalf
2865
- of any other Contributor, and only if You agree to indemnify,
2866
- defend, and hold each Contributor harmless for any liability
2867
- incurred by, or claims asserted against, such Contributor by reason
2868
- of your accepting any such warranty or additional liability.
2869
-
2870
- END OF TERMS AND CONDITIONS
2871
-
2872
-
2873
- ============================================================
2874
- Notices for file(s):
2875
- /bin/llvm-rs-cc
2876
- /lib64/libslang.a
2877
- ------------------------------------------------------------
2878
- =========================
2879
- NOTICE file for slang.git
2880
- =========================
2881
-
2882
- Copyright (c) 2005-2011, The Android Open Source Project
2883
-
2884
- Licensed under the Apache License, Version 2.0 (the "License");
2885
- you may not use this file except in compliance with the License.
2886
-
2887
- Unless required by applicable law or agreed to in writing, software
2888
- distributed under the License is distributed on an "AS IS" BASIS,
2889
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2890
- See the License for the specific language governing permissions and
2891
- limitations under the License.
2892
-
2893
-
2894
- Apache License
2895
- Version 2.0, January 2004
2896
- http://www.apache.org/licenses/
2897
-
2898
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
2899
-
2900
- 1. Definitions.
2901
-
2902
- "License" shall mean the terms and conditions for use, reproduction,
2903
- and distribution as defined by Sections 1 through 9 of this document.
2904
-
2905
- "Licensor" shall mean the copyright owner or entity authorized by
2906
- the copyright owner that is granting the License.
2907
-
2908
- "Legal Entity" shall mean the union of the acting entity and all
2909
- other entities that control, are controlled by, or are under common
2910
- control with that entity. For the purposes of this definition,
2911
- "control" means (i) the power, direct or indirect, to cause the
2912
- direction or management of such entity, whether by contract or
2913
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
2914
- outstanding shares, or (iii) beneficial ownership of such entity.
2915
-
2916
- "You" (or "Your") shall mean an individual or Legal Entity
2917
- exercising permissions granted by this License.
2918
-
2919
- "Source" form shall mean the preferred form for making modifications,
2920
- including but not limited to software source code, documentation
2921
- source, and configuration files.
2922
-
2923
- "Object" form shall mean any form resulting from mechanical
2924
- transformation or translation of a Source form, including but
2925
- not limited to compiled object code, generated documentation,
2926
- and conversions to other media types.
2927
-
2928
- "Work" shall mean the work of authorship, whether in Source or
2929
- Object form, made available under the License, as indicated by a
2930
- copyright notice that is included in or attached to the work
2931
- (an example is provided in the Appendix below).
2932
-
2933
- "Derivative Works" shall mean any work, whether in Source or Object
2934
- form, that is based on (or derived from) the Work and for which the
2935
- editorial revisions, annotations, elaborations, or other modifications
2936
- represent, as a whole, an original work of authorship. For the purposes
2937
- of this License, Derivative Works shall not include works that remain
2938
- separable from, or merely link (or bind by name) to the interfaces of,
2939
- the Work and Derivative Works thereof.
2940
-
2941
- "Contribution" shall mean any work of authorship, including
2942
- the original version of the Work and any modifications or additions
2943
- to that Work or Derivative Works thereof, that is intentionally
2944
- submitted to Licensor for inclusion in the Work by the copyright owner
2945
- or by an individual or Legal Entity authorized to submit on behalf of
2946
- the copyright owner. For the purposes of this definition, "submitted"
2947
- means any form of electronic, verbal, or written communication sent
2948
- to the Licensor or its representatives, including but not limited to
2949
- communication on electronic mailing lists, source code control systems,
2950
- and issue tracking systems that are managed by, or on behalf of, the
2951
- Licensor for the purpose of discussing and improving the Work, but
2952
- excluding communication that is conspicuously marked or otherwise
2953
- designated in writing by the copyright owner as "Not a Contribution."
2954
-
2955
- "Contributor" shall mean Licensor and any individual or Legal Entity
2956
- on behalf of whom a Contribution has been received by Licensor and
2957
- subsequently incorporated within the Work.
2958
-
2959
- 2. Grant of Copyright License. Subject to the terms and conditions of
2960
- this License, each Contributor hereby grants to You a perpetual,
2961
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2962
- copyright license to reproduce, prepare Derivative Works of,
2963
- publicly display, publicly perform, sublicense, and distribute the
2964
- Work and such Derivative Works in Source or Object form.
2965
-
2966
- 3. Grant of Patent License. Subject to the terms and conditions of
2967
- this License, each Contributor hereby grants to You a perpetual,
2968
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2969
- (except as stated in this section) patent license to make, have made,
2970
- use, offer to sell, sell, import, and otherwise transfer the Work,
2971
- where such license applies only to those patent claims licensable
2972
- by such Contributor that are necessarily infringed by their
2973
- Contribution(s) alone or by combination of their Contribution(s)
2974
- with the Work to which such Contribution(s) was submitted. If You
2975
- institute patent litigation against any entity (including a
2976
- cross-claim or counterclaim in a lawsuit) alleging that the Work
2977
- or a Contribution incorporated within the Work constitutes direct
2978
- or contributory patent infringement, then any patent licenses
2979
- granted to You under this License for that Work shall terminate
2980
- as of the date such litigation is filed.
2981
-
2982
- 4. Redistribution. You may reproduce and distribute copies of the
2983
- Work or Derivative Works thereof in any medium, with or without
2984
- modifications, and in Source or Object form, provided that You
2985
- meet the following conditions:
2986
-
2987
- (a) You must give any other recipients of the Work or
2988
- Derivative Works a copy of this License; and
2989
-
2990
- (b) You must cause any modified files to carry prominent notices
2991
- stating that You changed the files; and
2992
-
2993
- (c) You must retain, in the Source form of any Derivative Works
2994
- that You distribute, all copyright, patent, trademark, and
2995
- attribution notices from the Source form of the Work,
2996
- excluding those notices that do not pertain to any part of
2997
- the Derivative Works; and
2998
-
2999
- (d) If the Work includes a "NOTICE" text file as part of its
3000
- distribution, then any Derivative Works that You distribute must
3001
- include a readable copy of the attribution notices contained
3002
- within such NOTICE file, excluding those notices that do not
3003
- pertain to any part of the Derivative Works, in at least one
3004
- of the following places: within a NOTICE text file distributed
3005
- as part of the Derivative Works; within the Source form or
3006
- documentation, if provided along with the Derivative Works; or,
3007
- within a display generated by the Derivative Works, if and
3008
- wherever such third-party notices normally appear. The contents
3009
- of the NOTICE file are for informational purposes only and
3010
- do not modify the License. You may add Your own attribution
3011
- notices within Derivative Works that You distribute, alongside
3012
- or as an addendum to the NOTICE text from the Work, provided
3013
- that such additional attribution notices cannot be construed
3014
- as modifying the License.
3015
-
3016
- You may add Your own copyright statement to Your modifications and
3017
- may provide additional or different license terms and conditions
3018
- for use, reproduction, or distribution of Your modifications, or
3019
- for any such Derivative Works as a whole, provided Your use,
3020
- reproduction, and distribution of the Work otherwise complies with
3021
- the conditions stated in this License.
3022
-
3023
- 5. Submission of Contributions. Unless You explicitly state otherwise,
3024
- any Contribution intentionally submitted for inclusion in the Work
3025
- by You to the Licensor shall be under the terms and conditions of
3026
- this License, without any additional terms or conditions.
3027
- Notwithstanding the above, nothing herein shall supersede or modify
3028
- the terms of any separate license agreement you may have executed
3029
- with Licensor regarding such Contributions.
3030
-
3031
- 6. Trademarks. This License does not grant permission to use the trade
3032
- names, trademarks, service marks, or product names of the Licensor,
3033
- except as required for reasonable and customary use in describing the
3034
- origin of the Work and reproducing the content of the NOTICE file.
3035
-
3036
- 7. Disclaimer of Warranty. Unless required by applicable law or
3037
- agreed to in writing, Licensor provides the Work (and each
3038
- Contributor provides its Contributions) on an "AS IS" BASIS,
3039
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
3040
- implied, including, without limitation, any warranties or conditions
3041
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
3042
- PARTICULAR PURPOSE. You are solely responsible for determining the
3043
- appropriateness of using or redistributing the Work and assume any
3044
- risks associated with Your exercise of permissions under this License.
3045
-
3046
- 8. Limitation of Liability. In no event and under no legal theory,
3047
- whether in tort (including negligence), contract, or otherwise,
3048
- unless required by applicable law (such as deliberate and grossly
3049
- negligent acts) or agreed to in writing, shall any Contributor be
3050
- liable to You for damages, including any direct, indirect, special,
3051
- incidental, or consequential damages of any character arising as a
3052
- result of this License or out of the use or inability to use the
3053
- Work (including but not limited to damages for loss of goodwill,
3054
- work stoppage, computer failure or malfunction, or any and all
3055
- other commercial damages or losses), even if such Contributor
3056
- has been advised of the possibility of such damages.
3057
-
3058
- 9. Accepting Warranty or Additional Liability. While redistributing
3059
- the Work or Derivative Works thereof, You may choose to offer,
3060
- and charge a fee for, acceptance of support, warranty, indemnity,
3061
- or other liability obligations and/or rights consistent with this
3062
- License. However, in accepting such obligations, You may act only
3063
- on Your own behalf and on Your sole responsibility, not on behalf
3064
- of any other Contributor, and only if You agree to indemnify,
3065
- defend, and hold each Contributor harmless for any liability
3066
- incurred by, or claims asserted against, such Contributor by reason
3067
- of your accepting any such warranty or additional liability.
3068
-
3069
- END OF TERMS AND CONDITIONS
3070
-
3071
-
3072
-
3073
- ===========================================
3074
- NOTICE file for external/clang (clang.git).
3075
- Note: libclang*.a are statically linked.
3076
- ===========================================
3077
-
3078
- ==============================================================================
3079
- LLVM Release License
3080
- ==============================================================================
3081
- University of Illinois/NCSA
3082
- Open Source License
3083
-
3084
- Copyright (c) 2007-2011 University of Illinois at Urbana-Champaign.
3085
- All rights reserved.
3086
-
3087
- Developed by:
3088
-
3089
- LLVM Team
3090
-
3091
- University of Illinois at Urbana-Champaign
3092
-
3093
- http://llvm.org
3094
-
3095
- Permission is hereby granted, free of charge, to any person obtaining a copy of
3096
- this software and associated documentation files (the "Software"), to deal with
3097
- the Software without restriction, including without limitation the rights to
3098
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
3099
- of the Software, and to permit persons to whom the Software is furnished to do
3100
- so, subject to the following conditions:
3101
-
3102
- * Redistributions of source code must retain the above copyright notice,
3103
- this list of conditions and the following disclaimers.
3104
-
3105
- * Redistributions in binary form must reproduce the above copyright notice,
3106
- this list of conditions and the following disclaimers in the
3107
- documentation and/or other materials provided with the distribution.
3108
-
3109
- * Neither the names of the LLVM Team, University of Illinois at
3110
- Urbana-Champaign, nor the names of its contributors may be used to
3111
- endorse or promote products derived from this Software without specific
3112
- prior written permission.
3113
-
3114
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3115
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
3116
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3117
- CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3118
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3119
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
3120
- SOFTWARE.
3121
-
3122
- ==============================================================================
3123
- The LLVM software contains code written by third parties. Such software will
3124
- have its own individual LICENSE.TXT file in the directory in which it appears.
3125
- This file will describe the copyrights, license, and restrictions which apply
3126
- to that code.
3127
-
3128
- The disclaimer of warranty in the University of Illinois Open Source License
3129
- applies to all code in the LLVM Distribution, and nothing in any of the
3130
- other licenses gives permission to use the names of the LLVM Team or the
3131
- University of Illinois to endorse or promote products derived from this
3132
- Software.
3133
-
3134
- The following pieces of software have additional or alternate copyrights,
3135
- licenses, and/or restrictions:
3136
-
3137
- Program Directory
3138
- ------- ---------
3139
- <none yet>
3140
-
3141
-
3142
-
3143
- =========================================
3144
- NOTICE file for external/llvm (llvm.git).
3145
- Note: libLLVM*.a are statically linked.
3146
- =========================================
3147
-
3148
- ==============================================================================
3149
- LLVM Release License
3150
- ==============================================================================
3151
- University of Illinois/NCSA
3152
- Open Source License
3153
-
3154
- Copyright (c) 2003-2011 University of Illinois at Urbana-Champaign.
3155
- All rights reserved.
3156
-
3157
- Developed by:
3158
-
3159
- LLVM Team
3160
-
3161
- University of Illinois at Urbana-Champaign
3162
-
3163
- http://llvm.org
3164
-
3165
- Permission is hereby granted, free of charge, to any person obtaining a copy of
3166
- this software and associated documentation files (the "Software"), to deal with
3167
- the Software without restriction, including without limitation the rights to
3168
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
3169
- of the Software, and to permit persons to whom the Software is furnished to do
3170
- so, subject to the following conditions:
3171
-
3172
- * Redistributions of source code must retain the above copyright notice,
3173
- this list of conditions and the following disclaimers.
3174
-
3175
- * Redistributions in binary form must reproduce the above copyright notice,
3176
- this list of conditions and the following disclaimers in the
3177
- documentation and/or other materials provided with the distribution.
3178
-
3179
- * Neither the names of the LLVM Team, University of Illinois at
3180
- Urbana-Champaign, nor the names of its contributors may be used to
3181
- endorse or promote products derived from this Software without specific
3182
- prior written permission.
3183
-
3184
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3185
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
3186
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3187
- CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3188
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3189
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
3190
- SOFTWARE.
3191
-
3192
- ==============================================================================
3193
- Copyrights and Licenses for Third Party Software Distributed with LLVM:
3194
- ==============================================================================
3195
- The LLVM software contains code written by third parties. Such software will
3196
- have its own individual LICENSE.TXT file in the directory in which it appears.
3197
- This file will describe the copyrights, license, and restrictions which apply
3198
- to that code.
3199
-
3200
- The disclaimer of warranty in the University of Illinois Open Source License
3201
- applies to all code in the LLVM Distribution, and nothing in any of the
3202
- other licenses gives permission to use the names of the LLVM Team or the
3203
- University of Illinois to endorse or promote products derived from this
3204
- Software.
3205
-
3206
- The following pieces of software have additional or alternate copyrights,
3207
- licenses, and/or restrictions:
3208
-
3209
- Program Directory
3210
- ------- ---------
3211
- Autoconf llvm/autoconf
3212
- llvm/projects/ModuleMaker/autoconf
3213
- llvm/projects/sample/autoconf
3214
- CellSPU backend llvm/lib/Target/CellSPU/README.txt
3215
- Google Test llvm/utils/unittest/googletest
3216
- OpenBSD regex llvm/lib/Support/{reg*, COPYRIGHT.regex}
3217
-
3218
- ============================================================
3219
- Notices for file(s):
3220
- /bin/minigzip
3221
- /lib/libz-host.dylib
3222
- /lib/libz.a
3223
- /lib64/libz-host.dylib
3224
- /lib64/libz.a
3225
- ------------------------------------------------------------
3226
- (C) 1995-2013 Jean-loup Gailly and Mark Adler
3227
-
3228
- This software is provided 'as-is', without any express or implied
3229
- warranty. In no event will the authors be held liable for any damages
3230
- arising from the use of this software.
3231
-
3232
- Permission is granted to anyone to use this software for any purpose,
3233
- including commercial applications, and to alter it and redistribute it
3234
- freely, subject to the following restrictions:
3235
-
3236
- 1. The origin of this software must not be misrepresented; you must not
3237
- claim that you wrote the original software. If you use this software
3238
- in a product, an acknowledgment in the product documentation would be
3239
- appreciated but is not required.
3240
- 2. Altered source versions must be plainly marked as such, and must not be
3241
- misrepresented as being the original software.
3242
- 3. This notice may not be removed or altered from any source distribution.
3243
-
3244
- Jean-loup Gailly Mark Adler
3245
- jloup@gzip.org madler@alumni.caltech.edu
3246
-
3247
- ============================================================
3248
- Notices for file(s):
3249
- /bin/v8_mksnapshot.arm
3250
- ------------------------------------------------------------
3251
- Copyright (c) 1994-2006 Sun Microsystems Inc.
3252
- All Rights Reserved.
3253
-
3254
- Redistribution and use in source and binary forms, with or without
3255
- modification, are permitted provided that the following conditions are
3256
- met:
3257
-
3258
- - Redistributions of source code must retain the above copyright notice,
3259
- this list of conditions and the following disclaimer.
3260
-
3261
- - Redistribution in binary form must reproduce the above copyright
3262
- notice, this list of conditions and the following disclaimer in the
3263
- documentation and/or other materials provided with the distribution.
3264
-
3265
- - Neither the name of Sun Microsystems or the names of contributors may
3266
- be used to endorse or promote products derived from this software without
3267
- specific prior written permission.
3268
-
3269
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
3270
- IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
3271
- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
3272
- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
3273
- CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
3274
- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
3275
- PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
3276
- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
3277
- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
3278
- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
3279
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3280
-
3281
- The original source code covered by the above license above has been
3282
- modified significantly by Google Inc.
3283
- Copyright 2006-2008 the V8 project authors. All rights reserved.
3284
-
3285
- ============================================================
3286
- Notices for file(s):
3287
- /framework/antlr-runtime.jar
3288
- ------------------------------------------------------------
3289
- [The "BSD license"]
3290
- Copyright (c) 201 Terence Parr
3291
- All rights reserved.
3292
-
3293
- Redistribution and use in source and binary forms, with or without
3294
- modification, are permitted provided that the following conditions
3295
- are met:
3296
-
3297
- 1. Redistributions of source code must retain the above copyright
3298
- notice, this list of conditions and the following disclaimer.
3299
- 2. Redistributions in binary form must reproduce the above copyright
3300
- notice, this list of conditions and the following disclaimer in the
3301
- documentation and/or other materials provided with the distribution.
3302
- 3. The name of the author may not be used to endorse or promote products
3303
- derived from this software without specific prior written permission.
3304
-
3305
- THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
3306
- IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
3307
- OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
3308
- IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
3309
- INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
3310
- NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
3311
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
3312
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3313
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
3314
- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3315
-
3316
- ============================================================
3317
- Notices for file(s):
3318
- /framework/junit.jar
3319
- ------------------------------------------------------------
3320
- Common Public License - v 1.0
3321
-
3322
-
3323
- THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
3324
-
3325
-
3326
- 1. DEFINITIONS
3327
-
3328
- "Contribution" means:
3329
-
3330
- a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and
3331
- b) in the case of each subsequent Contributor:
3332
- i) changes to the Program, and
3333
- ii) additions to the Program;
3334
- where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program.
3335
-
3336
- "Contributor" means any person or entity that distributes the Program.
3337
-
3338
-
3339
- "Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.
3340
-
3341
-
3342
- "Program" means the Contributions distributed in accordance with this Agreement.
3343
-
3344
-
3345
- "Recipient" means anyone who receives the Program under this Agreement, including all Contributors.
3346
-
3347
-
3348
- 2. GRANT OF RIGHTS
3349
-
3350
- a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.
3351
- b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.
3352
- c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.
3353
- d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement.
3354
- 3. REQUIREMENTS
3355
-
3356
- A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:
3357
-
3358
- a) it complies with the terms and conditions of this Agreement; and
3359
- b) its license agreement:
3360
- i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;
3361
- ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;
3362
- iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and
3363
- iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange.
3364
- When the Program is made available in source code form:
3365
-
3366
- a) it must be made available under this Agreement; and
3367
- b) a copy of this Agreement must be included with each copy of the Program.
3368
-
3369
- Contributors may not remove or alter any copyright notices contained within the Program.
3370
-
3371
-
3372
- Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution.
3373
-
3374
-
3375
- 4. COMMERCIAL DISTRIBUTION
3376
-
3377
- Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.
3378
-
3379
-
3380
- For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.
3381
-
3382
-
3383
- 5. NO WARRANTY
3384
-
3385
- EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.
3386
-
3387
-
3388
- 6. DISCLAIMER OF LIABILITY
3389
-
3390
- EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
3391
-
3392
-
3393
- 7. GENERAL
3394
-
3395
- If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.
3396
-
3397
-
3398
- If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.
3399
-
3400
-
3401
- All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive.
3402
-
3403
-
3404
- Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.
3405
-
3406
-
3407
- This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.