@akylas/nativescript-cli 8.8.2 → 8.8.4

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 +3 -3
  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 +56 -54
  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,4451 +0,0 @@
1
- Notices for files contained in the tools directory:
2
- ============================================================
3
- Notices for file(s):
4
- /lib/libjavacore.so
5
- /lib64/libjavacore.so
6
- ------------------------------------------------------------
7
- =========================================================================
8
- == NOTICE file corresponding to the section 4 d of ==
9
- == the Apache License, Version 2.0, ==
10
- == in this case for the Android-specific code. ==
11
- =========================================================================
12
-
13
- Android Code
14
- Copyright 2005-2008 The Android Open Source Project
15
-
16
- This product includes software developed as part of
17
- The Android Open Source Project (http://source.android.com).
18
-
19
- =========================================================================
20
- == NOTICE file corresponding to the section 4 d of ==
21
- == the Apache License, Version 2.0, ==
22
- == in this case for the Apache Harmony distribution. ==
23
- =========================================================================
24
-
25
- Apache Harmony
26
- Copyright 2006 The Apache Software Foundation
27
-
28
- This product includes software developed at
29
- The Apache Software Foundation (http://www.apache.org/).
30
-
31
- Portions of Harmony were originally developed by
32
- Intel Corporation and are licensed to the Apache Software
33
- Foundation under the "Software Grant and Corporate Contribution
34
- License Agreement", informally known as the "Intel Harmony CLA".
35
-
36
-
37
- =========================================================================
38
- == NOTICE file for the ICU License. ==
39
- =========================================================================
40
-
41
- Copyright (c) 1995-2014 International Business Machines Corporation and others
42
-
43
- All rights reserved.
44
-
45
- Permission is hereby granted, free of charge, to any person obtaining
46
- a copy of this software and associated documentation files (the
47
- "Software"), to deal in the Software without restriction, including
48
- without limitation the rights to use, copy, modify, merge, publish,
49
- distribute, and/or sell copies of the Software, and to permit persons
50
- to whom the Software is furnished to do so, provided that the above
51
- copyright notice(s) and this permission notice appear in all copies of
52
- the Software and that both the above copyright notice(s) and this
53
- permission notice appear in supporting documentation.
54
-
55
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
56
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
57
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
58
- OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
59
- HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY
60
- SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER
61
- RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
62
- CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
63
- CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
64
-
65
- Except as contained in this notice, the name of a copyright holder
66
- shall not be used in advertising or otherwise to promote the sale, use
67
- or other dealings in this Software without prior written authorization
68
- of the copyright holder.
69
-
70
- All trademarks and registered trademarks mentioned herein are the
71
- property of their respective owners.
72
-
73
-
74
- =========================================================================
75
- == NOTICE file for the KXML License. ==
76
- =========================================================================
77
-
78
- Copyright (c) 2002,2003, Stefan Haustein, Oberhausen, Rhld., Germany
79
-
80
- Permission is hereby granted, free of charge, to any person obtaining
81
- a copy of this software and associated documentation files (the
82
- "Software"), to deal in the Software without restriction, including
83
- without limitation the rights to use, copy, modify, merge, publish,
84
- distribute, sublicense, and/or sell copies of the Software, and to
85
- permit persons to whom the Software is furnished to do so, subject to
86
- the following conditions:
87
-
88
- The above copyright notice and this permission notice shall be
89
- included in all copies or substantial portions of the Software.
90
-
91
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
92
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
93
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
94
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
95
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
96
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
97
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
98
-
99
-
100
- =========================================================================
101
- == NOTICE file for the W3C License. ==
102
- =========================================================================
103
-
104
- Copyright (c) 2000 World Wide Web Consortium, (Massachusetts Institute
105
- of Technology, Institut National de Recherche en Informatique et en
106
- Automatique, Keio University). All Rights Reserved. This program is
107
- distributed under the W3C's Software Intellectual Property License.
108
- This program is distributed in the hope that it will be useful, but
109
- WITHOUT ANY WARRANTY; without even the implied warranty of
110
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
111
-
112
- See W3C License http://www.w3.org/Consortium/Legal/ for more details.
113
-
114
- =========================================================================
115
- == NOTICE file for the fdlibm License. ==
116
- =========================================================================
117
-
118
- Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
119
-
120
- Developed at SunSoft, a Sun Microsystems, Inc. business.
121
- Permission to use, copy, modify, and distribute this
122
- software is freely granted, provided that this notice
123
- is preserved.
124
-
125
- ============================================================
126
- Notices for file(s):
127
- /bin/aprotoc
128
- ------------------------------------------------------------
129
- Copyright 2008, Google Inc.
130
- All rights reserved.
131
-
132
- Redistribution and use in source and binary forms, with or without
133
- modification, are permitted provided that the following conditions are
134
- met:
135
-
136
- * Redistributions of source code must retain the above copyright
137
- notice, this list of conditions and the following disclaimer.
138
- * Redistributions in binary form must reproduce the above
139
- copyright notice, this list of conditions and the following disclaimer
140
- in the documentation and/or other materials provided with the
141
- distribution.
142
- * Neither the name of Google Inc. nor the names of its
143
- contributors may be used to endorse or promote products derived from
144
- this software without specific prior written permission.
145
-
146
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
147
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
148
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
149
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
150
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
151
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
152
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
153
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
154
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
155
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
156
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
157
-
158
- Code generated by the Protocol Buffer compiler is owned by the owner
159
- of the input file used when generating it. This code is not
160
- standalone and requires a support library to be linked with it. This
161
- support library is itself covered by the above license.
162
-
163
- ============================================================
164
- Notices for file(s):
165
- /lib/libc++.so
166
- /lib/libc++_static.a
167
- /lib64/libc++.so
168
- /lib64/libc++_static.a
169
- ------------------------------------------------------------
170
- ==============================================================================
171
- libc++ License
172
- ==============================================================================
173
-
174
- The libc++ library is dual licensed under both the University of Illinois
175
- "BSD-Like" license and the MIT license. As a user of this code you may choose
176
- to use it under either license. As a contributor, you agree to allow your code
177
- to be used under both.
178
-
179
- Full text of the relevant licenses is included below.
180
-
181
- ==============================================================================
182
-
183
- University of Illinois/NCSA
184
- Open Source License
185
-
186
- Copyright (c) 2009-2014 by the contributors listed in CREDITS.TXT
187
-
188
- All rights reserved.
189
-
190
- Developed by:
191
-
192
- LLVM Team
193
-
194
- University of Illinois at Urbana-Champaign
195
-
196
- http://llvm.org
197
-
198
- Permission is hereby granted, free of charge, to any person obtaining a copy of
199
- this software and associated documentation files (the "Software"), to deal with
200
- the Software without restriction, including without limitation the rights to
201
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
202
- of the Software, and to permit persons to whom the Software is furnished to do
203
- so, subject to the following conditions:
204
-
205
- * Redistributions of source code must retain the above copyright notice,
206
- this list of conditions and the following disclaimers.
207
-
208
- * Redistributions in binary form must reproduce the above copyright notice,
209
- this list of conditions and the following disclaimers in the
210
- documentation and/or other materials provided with the distribution.
211
-
212
- * Neither the names of the LLVM Team, University of Illinois at
213
- Urbana-Champaign, nor the names of its contributors may be used to
214
- endorse or promote products derived from this Software without specific
215
- prior written permission.
216
-
217
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
218
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
219
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
220
- CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
221
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
222
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
223
- SOFTWARE.
224
-
225
- ==============================================================================
226
-
227
- Copyright (c) 2009-2014 by the contributors listed in CREDITS.TXT
228
-
229
- Permission is hereby granted, free of charge, to any person obtaining a copy
230
- of this software and associated documentation files (the "Software"), to deal
231
- in the Software without restriction, including without limitation the rights
232
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
233
- copies of the Software, and to permit persons to whom the Software is
234
- furnished to do so, subject to the following conditions:
235
-
236
- The above copyright notice and this permission notice shall be included in
237
- all copies or substantial portions of the Software.
238
-
239
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
240
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
241
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
242
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
243
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
244
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
245
- THE SOFTWARE.
246
-
247
- ============================================================
248
- Notices for file(s):
249
- /bin/make_ext4fs
250
- /bin/make_f2fs
251
- /bin/mkuserimg.sh
252
- /lib/libext4_utils_host.a
253
- /lib/libf2fs_dlutils_host.a
254
- /lib/libf2fs_ioutils_host.a
255
- /lib/libf2fs_utils_host.a
256
- /lib64/libext4_utils_host.a
257
- /lib64/libf2fs_dlutils_host.a
258
- /lib64/libf2fs_ioutils_host.a
259
- /lib64/libf2fs_utils_host.a
260
- ------------------------------------------------------------
261
-
262
- Copyright (c) 2010, The Android Open Source Project
263
-
264
- Licensed under the Apache License, Version 2.0 (the "License");
265
- you may not use this file except in compliance with the License.
266
-
267
- Unless required by applicable law or agreed to in writing, software
268
- distributed under the License is distributed on an "AS IS" BASIS,
269
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
270
- See the License for the specific language governing permissions and
271
- limitations under the License.
272
-
273
-
274
- Apache License
275
- Version 2.0, January 2004
276
- http://www.apache.org/licenses/
277
-
278
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
279
-
280
- 1. Definitions.
281
-
282
- "License" shall mean the terms and conditions for use, reproduction,
283
- and distribution as defined by Sections 1 through 9 of this document.
284
-
285
- "Licensor" shall mean the copyright owner or entity authorized by
286
- the copyright owner that is granting the License.
287
-
288
- "Legal Entity" shall mean the union of the acting entity and all
289
- other entities that control, are controlled by, or are under common
290
- control with that entity. For the purposes of this definition,
291
- "control" means (i) the power, direct or indirect, to cause the
292
- direction or management of such entity, whether by contract or
293
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
294
- outstanding shares, or (iii) beneficial ownership of such entity.
295
-
296
- "You" (or "Your") shall mean an individual or Legal Entity
297
- exercising permissions granted by this License.
298
-
299
- "Source" form shall mean the preferred form for making modifications,
300
- including but not limited to software source code, documentation
301
- source, and configuration files.
302
-
303
- "Object" form shall mean any form resulting from mechanical
304
- transformation or translation of a Source form, including but
305
- not limited to compiled object code, generated documentation,
306
- and conversions to other media types.
307
-
308
- "Work" shall mean the work of authorship, whether in Source or
309
- Object form, made available under the License, as indicated by a
310
- copyright notice that is included in or attached to the work
311
- (an example is provided in the Appendix below).
312
-
313
- "Derivative Works" shall mean any work, whether in Source or Object
314
- form, that is based on (or derived from) the Work and for which the
315
- editorial revisions, annotations, elaborations, or other modifications
316
- represent, as a whole, an original work of authorship. For the purposes
317
- of this License, Derivative Works shall not include works that remain
318
- separable from, or merely link (or bind by name) to the interfaces of,
319
- the Work and Derivative Works thereof.
320
-
321
- "Contribution" shall mean any work of authorship, including
322
- the original version of the Work and any modifications or additions
323
- to that Work or Derivative Works thereof, that is intentionally
324
- submitted to Licensor for inclusion in the Work by the copyright owner
325
- or by an individual or Legal Entity authorized to submit on behalf of
326
- the copyright owner. For the purposes of this definition, "submitted"
327
- means any form of electronic, verbal, or written communication sent
328
- to the Licensor or its representatives, including but not limited to
329
- communication on electronic mailing lists, source code control systems,
330
- and issue tracking systems that are managed by, or on behalf of, the
331
- Licensor for the purpose of discussing and improving the Work, but
332
- excluding communication that is conspicuously marked or otherwise
333
- designated in writing by the copyright owner as "Not a Contribution."
334
-
335
- "Contributor" shall mean Licensor and any individual or Legal Entity
336
- on behalf of whom a Contribution has been received by Licensor and
337
- subsequently incorporated within the Work.
338
-
339
- 2. Grant of Copyright License. Subject to the terms and conditions of
340
- this License, each Contributor hereby grants to You a perpetual,
341
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
342
- copyright license to reproduce, prepare Derivative Works of,
343
- publicly display, publicly perform, sublicense, and distribute the
344
- Work and such Derivative Works in Source or Object form.
345
-
346
- 3. Grant of Patent License. Subject to the terms and conditions of
347
- this License, each Contributor hereby grants to You a perpetual,
348
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
349
- (except as stated in this section) patent license to make, have made,
350
- use, offer to sell, sell, import, and otherwise transfer the Work,
351
- where such license applies only to those patent claims licensable
352
- by such Contributor that are necessarily infringed by their
353
- Contribution(s) alone or by combination of their Contribution(s)
354
- with the Work to which such Contribution(s) was submitted. If You
355
- institute patent litigation against any entity (including a
356
- cross-claim or counterclaim in a lawsuit) alleging that the Work
357
- or a Contribution incorporated within the Work constitutes direct
358
- or contributory patent infringement, then any patent licenses
359
- granted to You under this License for that Work shall terminate
360
- as of the date such litigation is filed.
361
-
362
- 4. Redistribution. You may reproduce and distribute copies of the
363
- Work or Derivative Works thereof in any medium, with or without
364
- modifications, and in Source or Object form, provided that You
365
- meet the following conditions:
366
-
367
- (a) You must give any other recipients of the Work or
368
- Derivative Works a copy of this License; and
369
-
370
- (b) You must cause any modified files to carry prominent notices
371
- stating that You changed the files; and
372
-
373
- (c) You must retain, in the Source form of any Derivative Works
374
- that You distribute, all copyright, patent, trademark, and
375
- attribution notices from the Source form of the Work,
376
- excluding those notices that do not pertain to any part of
377
- the Derivative Works; and
378
-
379
- (d) If the Work includes a "NOTICE" text file as part of its
380
- distribution, then any Derivative Works that You distribute must
381
- include a readable copy of the attribution notices contained
382
- within such NOTICE file, excluding those notices that do not
383
- pertain to any part of the Derivative Works, in at least one
384
- of the following places: within a NOTICE text file distributed
385
- as part of the Derivative Works; within the Source form or
386
- documentation, if provided along with the Derivative Works; or,
387
- within a display generated by the Derivative Works, if and
388
- wherever such third-party notices normally appear. The contents
389
- of the NOTICE file are for informational purposes only and
390
- do not modify the License. You may add Your own attribution
391
- notices within Derivative Works that You distribute, alongside
392
- or as an addendum to the NOTICE text from the Work, provided
393
- that such additional attribution notices cannot be construed
394
- as modifying the License.
395
-
396
- You may add Your own copyright statement to Your modifications and
397
- may provide additional or different license terms and conditions
398
- for use, reproduction, or distribution of Your modifications, or
399
- for any such Derivative Works as a whole, provided Your use,
400
- reproduction, and distribution of the Work otherwise complies with
401
- the conditions stated in this License.
402
-
403
- 5. Submission of Contributions. Unless You explicitly state otherwise,
404
- any Contribution intentionally submitted for inclusion in the Work
405
- by You to the Licensor shall be under the terms and conditions of
406
- this License, without any additional terms or conditions.
407
- Notwithstanding the above, nothing herein shall supersede or modify
408
- the terms of any separate license agreement you may have executed
409
- with Licensor regarding such Contributions.
410
-
411
- 6. Trademarks. This License does not grant permission to use the trade
412
- names, trademarks, service marks, or product names of the Licensor,
413
- except as required for reasonable and customary use in describing the
414
- origin of the Work and reproducing the content of the NOTICE file.
415
-
416
- 7. Disclaimer of Warranty. Unless required by applicable law or
417
- agreed to in writing, Licensor provides the Work (and each
418
- Contributor provides its Contributions) on an "AS IS" BASIS,
419
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
420
- implied, including, without limitation, any warranties or conditions
421
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
422
- PARTICULAR PURPOSE. You are solely responsible for determining the
423
- appropriateness of using or redistributing the Work and assume any
424
- risks associated with Your exercise of permissions under this License.
425
-
426
- 8. Limitation of Liability. In no event and under no legal theory,
427
- whether in tort (including negligence), contract, or otherwise,
428
- unless required by applicable law (such as deliberate and grossly
429
- negligent acts) or agreed to in writing, shall any Contributor be
430
- liable to You for damages, including any direct, indirect, special,
431
- incidental, or consequential damages of any character arising as a
432
- result of this License or out of the use or inability to use the
433
- Work (including but not limited to damages for loss of goodwill,
434
- work stoppage, computer failure or malfunction, or any and all
435
- other commercial damages or losses), even if such Contributor
436
- has been advised of the possibility of such damages.
437
-
438
- 9. Accepting Warranty or Additional Liability. While redistributing
439
- the Work or Derivative Works thereof, You may choose to offer,
440
- and charge a fee for, acceptance of support, warranty, indemnity,
441
- or other liability obligations and/or rights consistent with this
442
- License. However, in accepting such obligations, You may act only
443
- on Your own behalf and on Your sole responsibility, not on behalf
444
- of any other Contributor, and only if You agree to indemnify,
445
- defend, and hold each Contributor harmless for any liability
446
- incurred by, or claims asserted against, such Contributor by reason
447
- of your accepting any such warranty or additional liability.
448
-
449
- END OF TERMS AND CONDITIONS
450
-
451
-
452
- ============================================================
453
- Notices for file(s):
454
- /lib/libsqlite_jni.so
455
- /lib64/libsqlite_jni.so
456
- ------------------------------------------------------------
457
- This software is copyrighted by Christian Werner <chw@ch-werner.de>
458
- and others. The following terms apply to all files associated with the
459
- software unless explicitly disclaimed in individual files.
460
-
461
- The authors hereby grant permission to use, copy, modify, distribute,
462
- and license this software and its documentation for any purpose, provided
463
- that existing copyright notices are retained in all copies and that this
464
- notice is included verbatim in any distributions. No written agreement,
465
- license, or royalty fee is required for any of the authorized uses.
466
- Modifications to this software may be copyrighted by their authors
467
- and need not follow the licensing terms described here, provided that
468
- the new terms are clearly indicated on the first page of each file where
469
- they apply.
470
-
471
- IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
472
- FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
473
- ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
474
- DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
475
- POSSIBILITY OF SUCH DAMAGE.
476
-
477
- THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
478
- INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
479
- FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
480
- IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
481
- NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
482
- MODIFICATIONS.
483
-
484
- ============================================================
485
- Notices for file(s):
486
- /bin/aapt
487
- /bin/aidl
488
- /bin/dexdump
489
- /bin/dx
490
- /lib/libaapt.a
491
- /lib/libaidl-common.a
492
- /lib/libandroidfw.a
493
- /lib/libcutils.a
494
- /lib/libcutils.so
495
- /lib/libnativehelper.so
496
- /lib/libsqlite3_android.a
497
- /lib/libutils.a
498
- /lib64/libaapt.a
499
- /lib64/libaidl-common.a
500
- /lib64/libandroidfw.a
501
- /lib64/libcutils.a
502
- /lib64/libcutils.so
503
- /lib64/libnativehelper.so
504
- /lib64/libsqlite3_android.a
505
- /lib64/libutils.a
506
- ------------------------------------------------------------
507
-
508
- Copyright (c) 2005-2008, The Android Open Source Project
509
-
510
- Licensed under the Apache License, Version 2.0 (the "License");
511
- you may not use this file except in compliance with the License.
512
-
513
- Unless required by applicable law or agreed to in writing, software
514
- distributed under the License is distributed on an "AS IS" BASIS,
515
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
516
- See the License for the specific language governing permissions and
517
- limitations under the License.
518
-
519
-
520
- Apache License
521
- Version 2.0, January 2004
522
- http://www.apache.org/licenses/
523
-
524
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
525
-
526
- 1. Definitions.
527
-
528
- "License" shall mean the terms and conditions for use, reproduction,
529
- and distribution as defined by Sections 1 through 9 of this document.
530
-
531
- "Licensor" shall mean the copyright owner or entity authorized by
532
- the copyright owner that is granting the License.
533
-
534
- "Legal Entity" shall mean the union of the acting entity and all
535
- other entities that control, are controlled by, or are under common
536
- control with that entity. For the purposes of this definition,
537
- "control" means (i) the power, direct or indirect, to cause the
538
- direction or management of such entity, whether by contract or
539
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
540
- outstanding shares, or (iii) beneficial ownership of such entity.
541
-
542
- "You" (or "Your") shall mean an individual or Legal Entity
543
- exercising permissions granted by this License.
544
-
545
- "Source" form shall mean the preferred form for making modifications,
546
- including but not limited to software source code, documentation
547
- source, and configuration files.
548
-
549
- "Object" form shall mean any form resulting from mechanical
550
- transformation or translation of a Source form, including but
551
- not limited to compiled object code, generated documentation,
552
- and conversions to other media types.
553
-
554
- "Work" shall mean the work of authorship, whether in Source or
555
- Object form, made available under the License, as indicated by a
556
- copyright notice that is included in or attached to the work
557
- (an example is provided in the Appendix below).
558
-
559
- "Derivative Works" shall mean any work, whether in Source or Object
560
- form, that is based on (or derived from) the Work and for which the
561
- editorial revisions, annotations, elaborations, or other modifications
562
- represent, as a whole, an original work of authorship. For the purposes
563
- of this License, Derivative Works shall not include works that remain
564
- separable from, or merely link (or bind by name) to the interfaces of,
565
- the Work and Derivative Works thereof.
566
-
567
- "Contribution" shall mean any work of authorship, including
568
- the original version of the Work and any modifications or additions
569
- to that Work or Derivative Works thereof, that is intentionally
570
- submitted to Licensor for inclusion in the Work by the copyright owner
571
- or by an individual or Legal Entity authorized to submit on behalf of
572
- the copyright owner. For the purposes of this definition, "submitted"
573
- means any form of electronic, verbal, or written communication sent
574
- to the Licensor or its representatives, including but not limited to
575
- communication on electronic mailing lists, source code control systems,
576
- and issue tracking systems that are managed by, or on behalf of, the
577
- Licensor for the purpose of discussing and improving the Work, but
578
- excluding communication that is conspicuously marked or otherwise
579
- designated in writing by the copyright owner as "Not a Contribution."
580
-
581
- "Contributor" shall mean Licensor and any individual or Legal Entity
582
- on behalf of whom a Contribution has been received by Licensor and
583
- subsequently incorporated within the Work.
584
-
585
- 2. Grant of Copyright License. Subject to the terms and conditions of
586
- this License, each Contributor hereby grants to You a perpetual,
587
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
588
- copyright license to reproduce, prepare Derivative Works of,
589
- publicly display, publicly perform, sublicense, and distribute the
590
- Work and such Derivative Works in Source or Object form.
591
-
592
- 3. Grant of Patent License. Subject to the terms and conditions of
593
- this License, each Contributor hereby grants to You a perpetual,
594
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
595
- (except as stated in this section) patent license to make, have made,
596
- use, offer to sell, sell, import, and otherwise transfer the Work,
597
- where such license applies only to those patent claims licensable
598
- by such Contributor that are necessarily infringed by their
599
- Contribution(s) alone or by combination of their Contribution(s)
600
- with the Work to which such Contribution(s) was submitted. If You
601
- institute patent litigation against any entity (including a
602
- cross-claim or counterclaim in a lawsuit) alleging that the Work
603
- or a Contribution incorporated within the Work constitutes direct
604
- or contributory patent infringement, then any patent licenses
605
- granted to You under this License for that Work shall terminate
606
- as of the date such litigation is filed.
607
-
608
- 4. Redistribution. You may reproduce and distribute copies of the
609
- Work or Derivative Works thereof in any medium, with or without
610
- modifications, and in Source or Object form, provided that You
611
- meet the following conditions:
612
-
613
- (a) You must give any other recipients of the Work or
614
- Derivative Works a copy of this License; and
615
-
616
- (b) You must cause any modified files to carry prominent notices
617
- stating that You changed the files; and
618
-
619
- (c) You must retain, in the Source form of any Derivative Works
620
- that You distribute, all copyright, patent, trademark, and
621
- attribution notices from the Source form of the Work,
622
- excluding those notices that do not pertain to any part of
623
- the Derivative Works; and
624
-
625
- (d) If the Work includes a "NOTICE" text file as part of its
626
- distribution, then any Derivative Works that You distribute must
627
- include a readable copy of the attribution notices contained
628
- within such NOTICE file, excluding those notices that do not
629
- pertain to any part of the Derivative Works, in at least one
630
- of the following places: within a NOTICE text file distributed
631
- as part of the Derivative Works; within the Source form or
632
- documentation, if provided along with the Derivative Works; or,
633
- within a display generated by the Derivative Works, if and
634
- wherever such third-party notices normally appear. The contents
635
- of the NOTICE file are for informational purposes only and
636
- do not modify the License. You may add Your own attribution
637
- notices within Derivative Works that You distribute, alongside
638
- or as an addendum to the NOTICE text from the Work, provided
639
- that such additional attribution notices cannot be construed
640
- as modifying the License.
641
-
642
- You may add Your own copyright statement to Your modifications and
643
- may provide additional or different license terms and conditions
644
- for use, reproduction, or distribution of Your modifications, or
645
- for any such Derivative Works as a whole, provided Your use,
646
- reproduction, and distribution of the Work otherwise complies with
647
- the conditions stated in this License.
648
-
649
- 5. Submission of Contributions. Unless You explicitly state otherwise,
650
- any Contribution intentionally submitted for inclusion in the Work
651
- by You to the Licensor shall be under the terms and conditions of
652
- this License, without any additional terms or conditions.
653
- Notwithstanding the above, nothing herein shall supersede or modify
654
- the terms of any separate license agreement you may have executed
655
- with Licensor regarding such Contributions.
656
-
657
- 6. Trademarks. This License does not grant permission to use the trade
658
- names, trademarks, service marks, or product names of the Licensor,
659
- except as required for reasonable and customary use in describing the
660
- origin of the Work and reproducing the content of the NOTICE file.
661
-
662
- 7. Disclaimer of Warranty. Unless required by applicable law or
663
- agreed to in writing, Licensor provides the Work (and each
664
- Contributor provides its Contributions) on an "AS IS" BASIS,
665
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
666
- implied, including, without limitation, any warranties or conditions
667
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
668
- PARTICULAR PURPOSE. You are solely responsible for determining the
669
- appropriateness of using or redistributing the Work and assume any
670
- risks associated with Your exercise of permissions under this License.
671
-
672
- 8. Limitation of Liability. In no event and under no legal theory,
673
- whether in tort (including negligence), contract, or otherwise,
674
- unless required by applicable law (such as deliberate and grossly
675
- negligent acts) or agreed to in writing, shall any Contributor be
676
- liable to You for damages, including any direct, indirect, special,
677
- incidental, or consequential damages of any character arising as a
678
- result of this License or out of the use or inability to use the
679
- Work (including but not limited to damages for loss of goodwill,
680
- work stoppage, computer failure or malfunction, or any and all
681
- other commercial damages or losses), even if such Contributor
682
- has been advised of the possibility of such damages.
683
-
684
- 9. Accepting Warranty or Additional Liability. While redistributing
685
- the Work or Derivative Works thereof, You may choose to offer,
686
- and charge a fee for, acceptance of support, warranty, indemnity,
687
- or other liability obligations and/or rights consistent with this
688
- License. However, in accepting such obligations, You may act only
689
- on Your own behalf and on Your sole responsibility, not on behalf
690
- of any other Contributor, and only if You agree to indemnify,
691
- defend, and hold each Contributor harmless for any liability
692
- incurred by, or claims asserted against, such Contributor by reason
693
- of your accepting any such warranty or additional liability.
694
-
695
- END OF TERMS AND CONDITIONS
696
-
697
-
698
- ============================================================
699
- Notices for file(s):
700
- /lib/libcompiler_rt-extras.a
701
- /lib/libcompiler_rt.a
702
- /lib64/libcompiler_rt-extras.a
703
- /lib64/libcompiler_rt.a
704
- /lib64/libcompiler_rt.so
705
- ------------------------------------------------------------
706
- ==============================================================================
707
- compiler_rt License
708
- ==============================================================================
709
-
710
- The compiler_rt library is dual licensed under both the University of Illinois
711
- "BSD-Like" license and the MIT license. As a user of this code you may choose
712
- to use it under either license. As a contributor, you agree to allow your code
713
- to be used under both.
714
-
715
- Full text of the relevant licenses is included below.
716
-
717
- ==============================================================================
718
-
719
- University of Illinois/NCSA
720
- Open Source License
721
-
722
- Copyright (c) 2009-2014 by the contributors listed in CREDITS.TXT
723
-
724
- All rights reserved.
725
-
726
- Developed by:
727
-
728
- LLVM Team
729
-
730
- University of Illinois at Urbana-Champaign
731
-
732
- http://llvm.org
733
-
734
- Permission is hereby granted, free of charge, to any person obtaining a copy of
735
- this software and associated documentation files (the "Software"), to deal with
736
- the Software without restriction, including without limitation the rights to
737
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
738
- of the Software, and to permit persons to whom the Software is furnished to do
739
- so, subject to the following conditions:
740
-
741
- * Redistributions of source code must retain the above copyright notice,
742
- this list of conditions and the following disclaimers.
743
-
744
- * Redistributions in binary form must reproduce the above copyright notice,
745
- this list of conditions and the following disclaimers in the
746
- documentation and/or other materials provided with the distribution.
747
-
748
- * Neither the names of the LLVM Team, University of Illinois at
749
- Urbana-Champaign, nor the names of its contributors may be used to
750
- endorse or promote products derived from this Software without specific
751
- prior written permission.
752
-
753
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
754
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
755
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
756
- CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
757
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
758
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
759
- SOFTWARE.
760
-
761
- ==============================================================================
762
-
763
- Copyright (c) 2009-2014 by the contributors listed in CREDITS.TXT
764
-
765
- Permission is hereby granted, free of charge, to any person obtaining a copy
766
- of this software and associated documentation files (the "Software"), to deal
767
- in the Software without restriction, including without limitation the rights
768
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
769
- copies of the Software, and to permit persons to whom the Software is
770
- furnished to do so, subject to the following conditions:
771
-
772
- The above copyright notice and this permission notice shall be included in
773
- all copies or substantial portions of the Software.
774
-
775
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
776
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
777
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
778
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
779
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
780
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
781
- THE SOFTWARE.
782
-
783
- ==============================================================================
784
- Copyrights and Licenses for Third Party Software Distributed with LLVM:
785
- ==============================================================================
786
- The LLVM software contains code written by third parties. Such software will
787
- have its own individual LICENSE.TXT file in the directory in which it appears.
788
- This file will describe the copyrights, license, and restrictions which apply
789
- to that code.
790
-
791
- The disclaimer of warranty in the University of Illinois Open Source License
792
- applies to all code in the LLVM Distribution, and nothing in any of the
793
- other licenses gives permission to use the names of the LLVM Team or the
794
- University of Illinois to endorse or promote products derived from this
795
- Software.
796
-
797
-
798
- ============================================================
799
- Notices for file(s):
800
- /framework/commons-compress-1.0.jar
801
- ------------------------------------------------------------
802
- Apache Commons Compress
803
- Copyright 2002-2009 The Apache Software Foundation
804
-
805
- This product includes software developed by
806
- The Apache Software Foundation (http://www.apache.org/).
807
-
808
- Original BZip2 classes contributed by Keiron Liddle
809
- <keiron@aftexsw.com>, Aftex Software to the Apache Ant project
810
-
811
- Original Tar classes from contributors of the Apache Ant project
812
-
813
- Original Zip classes from contributors of the Apache Ant project
814
-
815
- Original CPIO classes contributed by Markus Kuss and the jRPM project
816
- (jrpm.sourceforge.net)
817
-
818
- ============================================================
819
- Notices for file(s):
820
- /lib64/libbcc.so
821
- ------------------------------------------------------------
822
- ==========================
823
- NOTICE file for libbcc.git
824
- ==========================
825
-
826
- * NOTICE for lib/ExecutionEngine/, lib/ScriptCRT/, include and helper/.
827
-
828
- Copyright (c) 2005-2011, The Android Open Source Project
829
-
830
- Licensed under the Apache License, Version 2.0 (the "License");
831
- you may not use this file except in compliance with the License.
832
-
833
- Unless required by applicable law or agreed to in writing, software
834
- distributed under the License is distributed on an "AS IS" BASIS,
835
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
836
- See the License for the specific language governing permissions and
837
- limitations under the License.
838
-
839
-
840
- Apache License
841
- Version 2.0, January 2004
842
- http://www.apache.org/licenses/
843
-
844
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
845
-
846
- 1. Definitions.
847
-
848
- "License" shall mean the terms and conditions for use, reproduction,
849
- and distribution as defined by Sections 1 through 9 of this document.
850
-
851
- "Licensor" shall mean the copyright owner or entity authorized by
852
- the copyright owner that is granting the License.
853
-
854
- "Legal Entity" shall mean the union of the acting entity and all
855
- other entities that control, are controlled by, or are under common
856
- control with that entity. For the purposes of this definition,
857
- "control" means (i) the power, direct or indirect, to cause the
858
- direction or management of such entity, whether by contract or
859
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
860
- outstanding shares, or (iii) beneficial ownership of such entity.
861
-
862
- "You" (or "Your") shall mean an individual or Legal Entity
863
- exercising permissions granted by this License.
864
-
865
- "Source" form shall mean the preferred form for making modifications,
866
- including but not limited to software source code, documentation
867
- source, and configuration files.
868
-
869
- "Object" form shall mean any form resulting from mechanical
870
- transformation or translation of a Source form, including but
871
- not limited to compiled object code, generated documentation,
872
- and conversions to other media types.
873
-
874
- "Work" shall mean the work of authorship, whether in Source or
875
- Object form, made available under the License, as indicated by a
876
- copyright notice that is included in or attached to the work
877
- (an example is provided in the Appendix below).
878
-
879
- "Derivative Works" shall mean any work, whether in Source or Object
880
- form, that is based on (or derived from) the Work and for which the
881
- editorial revisions, annotations, elaborations, or other modifications
882
- represent, as a whole, an original work of authorship. For the purposes
883
- of this License, Derivative Works shall not include works that remain
884
- separable from, or merely link (or bind by name) to the interfaces of,
885
- the Work and Derivative Works thereof.
886
-
887
- "Contribution" shall mean any work of authorship, including
888
- the original version of the Work and any modifications or additions
889
- to that Work or Derivative Works thereof, that is intentionally
890
- submitted to Licensor for inclusion in the Work by the copyright owner
891
- or by an individual or Legal Entity authorized to submit on behalf of
892
- the copyright owner. For the purposes of this definition, "submitted"
893
- means any form of electronic, verbal, or written communication sent
894
- to the Licensor or its representatives, including but not limited to
895
- communication on electronic mailing lists, source code control systems,
896
- and issue tracking systems that are managed by, or on behalf of, the
897
- Licensor for the purpose of discussing and improving the Work, but
898
- excluding communication that is conspicuously marked or otherwise
899
- designated in writing by the copyright owner as "Not a Contribution."
900
-
901
- "Contributor" shall mean Licensor and any individual or Legal Entity
902
- on behalf of whom a Contribution has been received by Licensor and
903
- subsequently incorporated within the Work.
904
-
905
- 2. Grant of Copyright License. Subject to the terms and conditions of
906
- this License, each Contributor hereby grants to You a perpetual,
907
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
908
- copyright license to reproduce, prepare Derivative Works of,
909
- publicly display, publicly perform, sublicense, and distribute the
910
- Work and such Derivative Works in Source or Object form.
911
-
912
- 3. Grant of Patent License. Subject to the terms and conditions of
913
- this License, each Contributor hereby grants to You a perpetual,
914
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
915
- (except as stated in this section) patent license to make, have made,
916
- use, offer to sell, sell, import, and otherwise transfer the Work,
917
- where such license applies only to those patent claims licensable
918
- by such Contributor that are necessarily infringed by their
919
- Contribution(s) alone or by combination of their Contribution(s)
920
- with the Work to which such Contribution(s) was submitted. If You
921
- institute patent litigation against any entity (including a
922
- cross-claim or counterclaim in a lawsuit) alleging that the Work
923
- or a Contribution incorporated within the Work constitutes direct
924
- or contributory patent infringement, then any patent licenses
925
- granted to You under this License for that Work shall terminate
926
- as of the date such litigation is filed.
927
-
928
- 4. Redistribution. You may reproduce and distribute copies of the
929
- Work or Derivative Works thereof in any medium, with or without
930
- modifications, and in Source or Object form, provided that You
931
- meet the following conditions:
932
-
933
- (a) You must give any other recipients of the Work or
934
- Derivative Works a copy of this License; and
935
-
936
- (b) You must cause any modified files to carry prominent notices
937
- stating that You changed the files; and
938
-
939
- (c) You must retain, in the Source form of any Derivative Works
940
- that You distribute, all copyright, patent, trademark, and
941
- attribution notices from the Source form of the Work,
942
- excluding those notices that do not pertain to any part of
943
- the Derivative Works; and
944
-
945
- (d) If the Work includes a "NOTICE" text file as part of its
946
- distribution, then any Derivative Works that You distribute must
947
- include a readable copy of the attribution notices contained
948
- within such NOTICE file, excluding those notices that do not
949
- pertain to any part of the Derivative Works, in at least one
950
- of the following places: within a NOTICE text file distributed
951
- as part of the Derivative Works; within the Source form or
952
- documentation, if provided along with the Derivative Works; or,
953
- within a display generated by the Derivative Works, if and
954
- wherever such third-party notices normally appear. The contents
955
- of the NOTICE file are for informational purposes only and
956
- do not modify the License. You may add Your own attribution
957
- notices within Derivative Works that You distribute, alongside
958
- or as an addendum to the NOTICE text from the Work, provided
959
- that such additional attribution notices cannot be construed
960
- as modifying the License.
961
-
962
- You may add Your own copyright statement to Your modifications and
963
- may provide additional or different license terms and conditions
964
- for use, reproduction, or distribution of Your modifications, or
965
- for any such Derivative Works as a whole, provided Your use,
966
- reproduction, and distribution of the Work otherwise complies with
967
- the conditions stated in this License.
968
-
969
- 5. Submission of Contributions. Unless You explicitly state otherwise,
970
- any Contribution intentionally submitted for inclusion in the Work
971
- by You to the Licensor shall be under the terms and conditions of
972
- this License, without any additional terms or conditions.
973
- Notwithstanding the above, nothing herein shall supersede or modify
974
- the terms of any separate license agreement you may have executed
975
- with Licensor regarding such Contributions.
976
-
977
- 6. Trademarks. This License does not grant permission to use the trade
978
- names, trademarks, service marks, or product names of the Licensor,
979
- except as required for reasonable and customary use in describing the
980
- origin of the Work and reproducing the content of the NOTICE file.
981
-
982
- 7. Disclaimer of Warranty. Unless required by applicable law or
983
- agreed to in writing, Licensor provides the Work (and each
984
- Contributor provides its Contributions) on an "AS IS" BASIS,
985
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
986
- implied, including, without limitation, any warranties or conditions
987
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
988
- PARTICULAR PURPOSE. You are solely responsible for determining the
989
- appropriateness of using or redistributing the Work and assume any
990
- risks associated with Your exercise of permissions under this License.
991
-
992
- 8. Limitation of Liability. In no event and under no legal theory,
993
- whether in tort (including negligence), contract, or otherwise,
994
- unless required by applicable law (such as deliberate and grossly
995
- negligent acts) or agreed to in writing, shall any Contributor be
996
- liable to You for damages, including any direct, indirect, special,
997
- incidental, or consequential damages of any character arising as a
998
- result of this License or out of the use or inability to use the
999
- Work (including but not limited to damages for loss of goodwill,
1000
- work stoppage, computer failure or malfunction, or any and all
1001
- other commercial damages or losses), even if such Contributor
1002
- has been advised of the possibility of such damages.
1003
-
1004
- 9. Accepting Warranty or Additional Liability. While redistributing
1005
- the Work or Derivative Works thereof, You may choose to offer,
1006
- and charge a fee for, acceptance of support, warranty, indemnity,
1007
- or other liability obligations and/or rights consistent with this
1008
- License. However, in accepting such obligations, You may act only
1009
- on Your own behalf and on Your sole responsibility, not on behalf
1010
- of any other Contributor, and only if You agree to indemnify,
1011
- defend, and hold each Contributor harmless for any liability
1012
- incurred by, or claims asserted against, such Contributor by reason
1013
- of your accepting any such warranty or additional liability.
1014
-
1015
- END OF TERMS AND CONDITIONS
1016
-
1017
-
1018
-
1019
- * NOTICE for runtime/ and lib/CodeGen/.
1020
- Note: The NOTICE is the same for another git project, external/llvm.git.
1021
-
1022
- ==============================================================================
1023
- LLVM Release License
1024
- ==============================================================================
1025
- University of Illinois/NCSA
1026
- Open Source License
1027
-
1028
- Copyright (c) 2003-2011 University of Illinois at Urbana-Champaign.
1029
- All rights reserved.
1030
-
1031
- Developed by:
1032
-
1033
- LLVM Team
1034
-
1035
- University of Illinois at Urbana-Champaign
1036
-
1037
- http://llvm.org
1038
-
1039
- Permission is hereby granted, free of charge, to any person obtaining a copy of
1040
- this software and associated documentation files (the "Software"), to deal with
1041
- the Software without restriction, including without limitation the rights to
1042
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
1043
- of the Software, and to permit persons to whom the Software is furnished to do
1044
- so, subject to the following conditions:
1045
-
1046
- * Redistributions of source code must retain the above copyright notice,
1047
- this list of conditions and the following disclaimers.
1048
-
1049
- * Redistributions in binary form must reproduce the above copyright notice,
1050
- this list of conditions and the following disclaimers in the
1051
- documentation and/or other materials provided with the distribution.
1052
-
1053
- * Neither the names of the LLVM Team, University of Illinois at
1054
- Urbana-Champaign, nor the names of its contributors may be used to
1055
- endorse or promote products derived from this Software without specific
1056
- prior written permission.
1057
-
1058
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1059
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1060
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1061
- CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1062
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1063
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
1064
- SOFTWARE.
1065
-
1066
- ==============================================================================
1067
- Copyrights and Licenses for Third Party Software Distributed with LLVM:
1068
- ==============================================================================
1069
- The LLVM software contains code written by third parties. Such software will
1070
- have its own individual LICENSE.TXT file in the directory in which it appears.
1071
- This file will describe the copyrights, license, and restrictions which apply
1072
- to that code.
1073
-
1074
- The disclaimer of warranty in the University of Illinois Open Source License
1075
- applies to all code in the LLVM Distribution, and nothing in any of the
1076
- other licenses gives permission to use the names of the LLVM Team or the
1077
- University of Illinois to endorse or promote products derived from this
1078
- Software.
1079
-
1080
- The following pieces of software have additional or alternate copyrights,
1081
- licenses, and/or restrictions:
1082
-
1083
- Program Directory
1084
- ------- ---------
1085
- Autoconf llvm/autoconf
1086
- llvm/projects/ModuleMaker/autoconf
1087
- llvm/projects/sample/autoconf
1088
- CellSPU backend llvm/lib/Target/CellSPU/README.txt
1089
- Google Test llvm/utils/unittest/googletest
1090
- OpenBSD regex llvm/lib/Support/{reg*, COPYRIGHT.regex}
1091
-
1092
-
1093
-
1094
- * NOTICE for tests/disassem.cpp and tests/disassem.h.
1095
-
1096
- /* $NetBSD: disassem.c,v 1.14 2003/03/27 16:58:36 mycroft Exp $ */
1097
-
1098
- /*-
1099
- * Copyright (c) 1996 Mark Brinicombe.
1100
- * Copyright (c) 1996 Brini.
1101
- *
1102
- * All rights reserved.
1103
- *
1104
- * Redistribution and use in source and binary forms, with or without
1105
- * modification, are permitted provided that the following conditions
1106
- * are met:
1107
- * 1. Redistributions of source code must retain the above copyright
1108
- * notice, this list of conditions and the following disclaimer.
1109
- * 2. Redistributions in binary form must reproduce the above copyright
1110
- * notice, this list of conditions and the following disclaimer in the
1111
- * documentation and/or other materials provided with the distribution.
1112
- * 3. All advertising materials mentioning features or use of this software
1113
- * must display the following acknowledgement:
1114
- * This product includes software developed by Brini.
1115
- * 4. The name of the company nor the name of the author may be used to
1116
- * endorse or promote products derived from this software without specific
1117
- * prior written permission.
1118
- *
1119
- * THIS SOFTWARE IS PROVIDED BY BRINI ``AS IS'' AND ANY EXPRESS OR IMPLIED
1120
- * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
1121
- * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
1122
- * IN NO EVENT SHALL BRINI OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
1123
- * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1124
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1125
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1126
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1127
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1128
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1129
- * SUCH DAMAGE.
1130
- *
1131
- * RiscBSD kernel project
1132
- *
1133
- * db_disasm.c
1134
- *
1135
- * Kernel disassembler
1136
- *
1137
- * Created : 10/02/96
1138
- *
1139
- * Structured after the sparc/sparc/db_disasm.c by David S. Miller &
1140
- * Paul Kranenburg
1141
- *
1142
- * This code is not complete. Not all instructions are disassembled.
1143
- */
1144
-
1145
- ============================================================
1146
- Notices for file(s):
1147
- /lib/libfdlibm.a
1148
- /lib64/libfdlibm.a
1149
- ------------------------------------------------------------
1150
- Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
1151
-
1152
- Developed at SunSoft, a Sun Microsystems, Inc. business.
1153
- Permission to use, copy, modify, and distribute this
1154
- software is freely granted, provided that this notice
1155
- is preserved.
1156
-
1157
- ============================================================
1158
- Notices for file(s):
1159
- /bin/conscrypt_generate_constants
1160
- /framework/guavalib.jar
1161
- /framework/jarjar-apache-ant.jar
1162
- /framework/jarjar-maven-plugin-api.jar
1163
- /framework/jarjar.jar
1164
- /framework/jsilver.jar
1165
- /lib/libjavacrypto.so
1166
- /lib64/libjavacrypto.so
1167
- ------------------------------------------------------------
1168
-
1169
- Apache License
1170
- Version 2.0, January 2004
1171
- http://www.apache.org/licenses/
1172
-
1173
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1174
-
1175
- 1. Definitions.
1176
-
1177
- "License" shall mean the terms and conditions for use, reproduction,
1178
- and distribution as defined by Sections 1 through 9 of this document.
1179
-
1180
- "Licensor" shall mean the copyright owner or entity authorized by
1181
- the copyright owner that is granting the License.
1182
-
1183
- "Legal Entity" shall mean the union of the acting entity and all
1184
- other entities that control, are controlled by, or are under common
1185
- control with that entity. For the purposes of this definition,
1186
- "control" means (i) the power, direct or indirect, to cause the
1187
- direction or management of such entity, whether by contract or
1188
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
1189
- outstanding shares, or (iii) beneficial ownership of such entity.
1190
-
1191
- "You" (or "Your") shall mean an individual or Legal Entity
1192
- exercising permissions granted by this License.
1193
-
1194
- "Source" form shall mean the preferred form for making modifications,
1195
- including but not limited to software source code, documentation
1196
- source, and configuration files.
1197
-
1198
- "Object" form shall mean any form resulting from mechanical
1199
- transformation or translation of a Source form, including but
1200
- not limited to compiled object code, generated documentation,
1201
- and conversions to other media types.
1202
-
1203
- "Work" shall mean the work of authorship, whether in Source or
1204
- Object form, made available under the License, as indicated by a
1205
- copyright notice that is included in or attached to the work
1206
- (an example is provided in the Appendix below).
1207
-
1208
- "Derivative Works" shall mean any work, whether in Source or Object
1209
- form, that is based on (or derived from) the Work and for which the
1210
- editorial revisions, annotations, elaborations, or other modifications
1211
- represent, as a whole, an original work of authorship. For the purposes
1212
- of this License, Derivative Works shall not include works that remain
1213
- separable from, or merely link (or bind by name) to the interfaces of,
1214
- the Work and Derivative Works thereof.
1215
-
1216
- "Contribution" shall mean any work of authorship, including
1217
- the original version of the Work and any modifications or additions
1218
- to that Work or Derivative Works thereof, that is intentionally
1219
- submitted to Licensor for inclusion in the Work by the copyright owner
1220
- or by an individual or Legal Entity authorized to submit on behalf of
1221
- the copyright owner. For the purposes of this definition, "submitted"
1222
- means any form of electronic, verbal, or written communication sent
1223
- to the Licensor or its representatives, including but not limited to
1224
- communication on electronic mailing lists, source code control systems,
1225
- and issue tracking systems that are managed by, or on behalf of, the
1226
- Licensor for the purpose of discussing and improving the Work, but
1227
- excluding communication that is conspicuously marked or otherwise
1228
- designated in writing by the copyright owner as "Not a Contribution."
1229
-
1230
- "Contributor" shall mean Licensor and any individual or Legal Entity
1231
- on behalf of whom a Contribution has been received by Licensor and
1232
- subsequently incorporated within the Work.
1233
-
1234
- 2. Grant of Copyright License. Subject to the terms and conditions of
1235
- this License, each Contributor hereby grants to You a perpetual,
1236
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1237
- copyright license to reproduce, prepare Derivative Works of,
1238
- publicly display, publicly perform, sublicense, and distribute the
1239
- Work and such Derivative Works in Source or Object form.
1240
-
1241
- 3. Grant of Patent License. Subject to the terms and conditions of
1242
- this License, each Contributor hereby grants to You a perpetual,
1243
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1244
- (except as stated in this section) patent license to make, have made,
1245
- use, offer to sell, sell, import, and otherwise transfer the Work,
1246
- where such license applies only to those patent claims licensable
1247
- by such Contributor that are necessarily infringed by their
1248
- Contribution(s) alone or by combination of their Contribution(s)
1249
- with the Work to which such Contribution(s) was submitted. If You
1250
- institute patent litigation against any entity (including a
1251
- cross-claim or counterclaim in a lawsuit) alleging that the Work
1252
- or a Contribution incorporated within the Work constitutes direct
1253
- or contributory patent infringement, then any patent licenses
1254
- granted to You under this License for that Work shall terminate
1255
- as of the date such litigation is filed.
1256
-
1257
- 4. Redistribution. You may reproduce and distribute copies of the
1258
- Work or Derivative Works thereof in any medium, with or without
1259
- modifications, and in Source or Object form, provided that You
1260
- meet the following conditions:
1261
-
1262
- (a) You must give any other recipients of the Work or
1263
- Derivative Works a copy of this License; and
1264
-
1265
- (b) You must cause any modified files to carry prominent notices
1266
- stating that You changed the files; and
1267
-
1268
- (c) You must retain, in the Source form of any Derivative Works
1269
- that You distribute, all copyright, patent, trademark, and
1270
- attribution notices from the Source form of the Work,
1271
- excluding those notices that do not pertain to any part of
1272
- the Derivative Works; and
1273
-
1274
- (d) If the Work includes a "NOTICE" text file as part of its
1275
- distribution, then any Derivative Works that You distribute must
1276
- include a readable copy of the attribution notices contained
1277
- within such NOTICE file, excluding those notices that do not
1278
- pertain to any part of the Derivative Works, in at least one
1279
- of the following places: within a NOTICE text file distributed
1280
- as part of the Derivative Works; within the Source form or
1281
- documentation, if provided along with the Derivative Works; or,
1282
- within a display generated by the Derivative Works, if and
1283
- wherever such third-party notices normally appear. The contents
1284
- of the NOTICE file are for informational purposes only and
1285
- do not modify the License. You may add Your own attribution
1286
- notices within Derivative Works that You distribute, alongside
1287
- or as an addendum to the NOTICE text from the Work, provided
1288
- that such additional attribution notices cannot be construed
1289
- as modifying the License.
1290
-
1291
- You may add Your own copyright statement to Your modifications and
1292
- may provide additional or different license terms and conditions
1293
- for use, reproduction, or distribution of Your modifications, or
1294
- for any such Derivative Works as a whole, provided Your use,
1295
- reproduction, and distribution of the Work otherwise complies with
1296
- the conditions stated in this License.
1297
-
1298
- 5. Submission of Contributions. Unless You explicitly state otherwise,
1299
- any Contribution intentionally submitted for inclusion in the Work
1300
- by You to the Licensor shall be under the terms and conditions of
1301
- this License, without any additional terms or conditions.
1302
- Notwithstanding the above, nothing herein shall supersede or modify
1303
- the terms of any separate license agreement you may have executed
1304
- with Licensor regarding such Contributions.
1305
-
1306
- 6. Trademarks. This License does not grant permission to use the trade
1307
- names, trademarks, service marks, or product names of the Licensor,
1308
- except as required for reasonable and customary use in describing the
1309
- origin of the Work and reproducing the content of the NOTICE file.
1310
-
1311
- 7. Disclaimer of Warranty. Unless required by applicable law or
1312
- agreed to in writing, Licensor provides the Work (and each
1313
- Contributor provides its Contributions) on an "AS IS" BASIS,
1314
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1315
- implied, including, without limitation, any warranties or conditions
1316
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1317
- PARTICULAR PURPOSE. You are solely responsible for determining the
1318
- appropriateness of using or redistributing the Work and assume any
1319
- risks associated with Your exercise of permissions under this License.
1320
-
1321
- 8. Limitation of Liability. In no event and under no legal theory,
1322
- whether in tort (including negligence), contract, or otherwise,
1323
- unless required by applicable law (such as deliberate and grossly
1324
- negligent acts) or agreed to in writing, shall any Contributor be
1325
- liable to You for damages, including any direct, indirect, special,
1326
- incidental, or consequential damages of any character arising as a
1327
- result of this License or out of the use or inability to use the
1328
- Work (including but not limited to damages for loss of goodwill,
1329
- work stoppage, computer failure or malfunction, or any and all
1330
- other commercial damages or losses), even if such Contributor
1331
- has been advised of the possibility of such damages.
1332
-
1333
- 9. Accepting Warranty or Additional Liability. While redistributing
1334
- the Work or Derivative Works thereof, You may choose to offer,
1335
- and charge a fee for, acceptance of support, warranty, indemnity,
1336
- or other liability obligations and/or rights consistent with this
1337
- License. However, in accepting such obligations, You may act only
1338
- on Your own behalf and on Your sole responsibility, not on behalf
1339
- of any other Contributor, and only if You agree to indemnify,
1340
- defend, and hold each Contributor harmless for any liability
1341
- incurred by, or claims asserted against, such Contributor by reason
1342
- of your accepting any such warranty or additional liability.
1343
-
1344
- END OF TERMS AND CONDITIONS
1345
-
1346
- APPENDIX: How to apply the Apache License to your work.
1347
-
1348
- To apply the Apache License to your work, attach the following
1349
- boilerplate notice, with the fields enclosed by brackets "[]"
1350
- replaced with your own identifying information. (Don't include
1351
- the brackets!) The text should be enclosed in the appropriate
1352
- comment syntax for the file format. We also recommend that a
1353
- file or class name and description of purpose be included on the
1354
- same "printed page" as the copyright notice for easier
1355
- identification within third-party archives.
1356
-
1357
- Copyright [yyyy] [name of copyright owner]
1358
-
1359
- Licensed under the Apache License, Version 2.0 (the "License");
1360
- you may not use this file except in compliance with the License.
1361
- You may obtain a copy of the License at
1362
-
1363
- http://www.apache.org/licenses/LICENSE-2.0
1364
-
1365
- Unless required by applicable law or agreed to in writing, software
1366
- distributed under the License is distributed on an "AS IS" BASIS,
1367
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1368
- See the License for the specific language governing permissions and
1369
- limitations under the License.
1370
-
1371
- ============================================================
1372
- Notices for file(s):
1373
- /lib/libpcre.a
1374
- /lib64/libpcre.a
1375
- ------------------------------------------------------------
1376
- PCRE LICENCE
1377
- ------------
1378
-
1379
- PCRE is a library of functions to support regular expressions whose syntax
1380
- and semantics are as close as possible to those of the Perl 5 language.
1381
-
1382
- Release 8 of PCRE is distributed under the terms of the "BSD" licence, as
1383
- specified below. The documentation for PCRE, supplied in the "doc"
1384
- directory, is distributed under the same terms as the software itself.
1385
-
1386
- The basic library functions are written in C and are freestanding. Also
1387
- included in the distribution is a set of C++ wrapper functions, and a
1388
- just-in-time compiler that can be used to optimize pattern matching. These
1389
- are both optional features that can be omitted when the library is built.
1390
-
1391
-
1392
- THE BASIC LIBRARY FUNCTIONS
1393
- ---------------------------
1394
-
1395
- Written by: Philip Hazel
1396
- Email local part: ph10
1397
- Email domain: cam.ac.uk
1398
-
1399
- University of Cambridge Computing Service,
1400
- Cambridge, England.
1401
-
1402
- Copyright (c) 1997-2014 University of Cambridge
1403
- All rights reserved.
1404
-
1405
-
1406
- PCRE JUST-IN-TIME COMPILATION SUPPORT
1407
- -------------------------------------
1408
-
1409
- Written by: Zoltan Herczeg
1410
- Email local part: hzmester
1411
- Emain domain: freemail.hu
1412
-
1413
- Copyright(c) 2010-2014 Zoltan Herczeg
1414
- All rights reserved.
1415
-
1416
-
1417
- STACK-LESS JUST-IN-TIME COMPILER
1418
- --------------------------------
1419
-
1420
- Written by: Zoltan Herczeg
1421
- Email local part: hzmester
1422
- Emain domain: freemail.hu
1423
-
1424
- Copyright(c) 2009-2014 Zoltan Herczeg
1425
- All rights reserved.
1426
-
1427
-
1428
- THE C++ WRAPPER FUNCTIONS
1429
- -------------------------
1430
-
1431
- Contributed by: Google Inc.
1432
-
1433
- Copyright (c) 2007-2012, Google Inc.
1434
- All rights reserved.
1435
-
1436
-
1437
- THE "BSD" LICENCE
1438
- -----------------
1439
-
1440
- Redistribution and use in source and binary forms, with or without
1441
- modification, are permitted provided that the following conditions are met:
1442
-
1443
- * Redistributions of source code must retain the above copyright notice,
1444
- this list of conditions and the following disclaimer.
1445
-
1446
- * Redistributions in binary form must reproduce the above copyright
1447
- notice, this list of conditions and the following disclaimer in the
1448
- documentation and/or other materials provided with the distribution.
1449
-
1450
- * Neither the name of the University of Cambridge nor the name of Google
1451
- Inc. nor the names of their contributors may be used to endorse or
1452
- promote products derived from this software without specific prior
1453
- written permission.
1454
-
1455
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1456
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1457
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1458
- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
1459
- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
1460
- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
1461
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
1462
- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
1463
- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
1464
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
1465
- POSSIBILITY OF SUCH DAMAGE.
1466
-
1467
- End
1468
-
1469
- ============================================================
1470
- Notices for file(s):
1471
- /lib/libpng.a
1472
- /lib64/libpng.a
1473
- ------------------------------------------------------------
1474
-
1475
- This copy of the libpng notices is provided for your convenience. In case of
1476
- any discrepancy between this copy and the notices in the file png.h that is
1477
- included in the libpng distribution, the latter shall prevail.
1478
-
1479
- COPYRIGHT NOTICE, DISCLAIMER, and LICENSE:
1480
-
1481
- If you modify libpng you may insert additional notices immediately following
1482
- this sentence.
1483
-
1484
- This code is released under the libpng license.
1485
-
1486
- libpng versions 1.2.6, August 15, 2004, through 1.6.3, July 18, 2013, are
1487
- Copyright (c) 2004, 2006-2013 Glenn Randers-Pehrson, and are
1488
- distributed according to the same disclaimer and license as libpng-1.2.5
1489
- with the following individual added to the list of Contributing Authors
1490
-
1491
- Cosmin Truta
1492
-
1493
- libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are
1494
- Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are
1495
- distributed according to the same disclaimer and license as libpng-1.0.6
1496
- with the following individuals added to the list of Contributing Authors
1497
-
1498
- Simon-Pierre Cadieux
1499
- Eric S. Raymond
1500
- Gilles Vollant
1501
-
1502
- and with the following additions to the disclaimer:
1503
-
1504
- There is no warranty against interference with your enjoyment of the
1505
- library or against infringement. There is no warranty that our
1506
- efforts or the library will fulfill any of your particular purposes
1507
- or needs. This library is provided with all faults, and the entire
1508
- risk of satisfactory quality, performance, accuracy, and effort is with
1509
- the user.
1510
-
1511
- libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
1512
- Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are
1513
- distributed according to the same disclaimer and license as libpng-0.96,
1514
- with the following individuals added to the list of Contributing Authors:
1515
-
1516
- Tom Lane
1517
- Glenn Randers-Pehrson
1518
- Willem van Schaik
1519
-
1520
- libpng versions 0.89, June 1996, through 0.96, May 1997, are
1521
- Copyright (c) 1996, 1997 Andreas Dilger
1522
- Distributed according to the same disclaimer and license as libpng-0.88,
1523
- with the following individuals added to the list of Contributing Authors:
1524
-
1525
- John Bowler
1526
- Kevin Bracey
1527
- Sam Bushell
1528
- Magnus Holmgren
1529
- Greg Roelofs
1530
- Tom Tanner
1531
-
1532
- libpng versions 0.5, May 1995, through 0.88, January 1996, are
1533
- Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
1534
-
1535
- For the purposes of this copyright and license, "Contributing Authors"
1536
- is defined as the following set of individuals:
1537
-
1538
- Andreas Dilger
1539
- Dave Martindale
1540
- Guy Eric Schalnat
1541
- Paul Schmidt
1542
- Tim Wegner
1543
-
1544
- The PNG Reference Library is supplied "AS IS". The Contributing Authors
1545
- and Group 42, Inc. disclaim all warranties, expressed or implied,
1546
- including, without limitation, the warranties of merchantability and of
1547
- fitness for any purpose. The Contributing Authors and Group 42, Inc.
1548
- assume no liability for direct, indirect, incidental, special, exemplary,
1549
- or consequential damages, which may result from the use of the PNG
1550
- Reference Library, even if advised of the possibility of such damage.
1551
-
1552
- Permission is hereby granted to use, copy, modify, and distribute this
1553
- source code, or portions hereof, for any purpose, without fee, subject
1554
- to the following restrictions:
1555
-
1556
- 1. The origin of this source code must not be misrepresented.
1557
-
1558
- 2. Altered versions must be plainly marked as such and must not
1559
- be misrepresented as being the original source.
1560
-
1561
- 3. This Copyright notice may not be removed or altered from any
1562
- source or altered source distribution.
1563
-
1564
- The Contributing Authors and Group 42, Inc. specifically permit, without
1565
- fee, and encourage the use of this source code as a component to
1566
- supporting the PNG file format in commercial products. If you use this
1567
- source code in a product, acknowledgment is not required but would be
1568
- appreciated.
1569
-
1570
-
1571
- A "png_get_copyright" function is available, for convenient use in "about"
1572
- boxes and the like:
1573
-
1574
- printf("%s",png_get_copyright(NULL));
1575
-
1576
- Also, the PNG logo (in PNG format, of course) is supplied in the
1577
- files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31).
1578
-
1579
- Libpng is OSI Certified Open Source Software. OSI Certified Open Source is a
1580
- certification mark of the Open Source Initiative.
1581
-
1582
- Glenn Randers-Pehrson
1583
- glennrp at users.sourceforge.net
1584
- July 18, 2013
1585
-
1586
- ============================================================
1587
- Notices for file(s):
1588
- /lib/libunwind.so
1589
- /lib/libunwindbacktrace.a
1590
- /lib64/libunwind.so
1591
- /lib64/libunwindbacktrace.a
1592
- ------------------------------------------------------------
1593
- Permission is hereby granted, free of charge, to any person obtaining
1594
- a copy of this software and associated documentation files (the
1595
- "Software"), to deal in the Software without restriction, including
1596
- without limitation the rights to use, copy, modify, merge, publish,
1597
- distribute, sublicense, and/or sell copies of the Software, and to
1598
- permit persons to whom the Software is furnished to do so, subject to
1599
- the following conditions:
1600
-
1601
- The above copyright notice and this permission notice shall be
1602
- included in all copies or substantial portions of the Software.
1603
-
1604
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1605
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1606
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1607
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1608
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1609
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1610
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1611
-
1612
- ============================================================
1613
- Notices for file(s):
1614
- /bin/fsck.f2fs
1615
- /lib64/libf2fs_fmt_host_dyn.so
1616
- ------------------------------------------------------------
1617
- The tools for F2FS are covered by GNU Public License version 2.
1618
- Exceptionally, the following files are also covered by the GNU Lesser General
1619
- Public License Version 2.1 as the dual licenses.
1620
- - include/f2fs_fs.h
1621
- - lib/libf2fs.c
1622
- - lib/libf2fs_io.c
1623
- - mkfs/f2fs_format.c
1624
- - mkfs/f2fs_format_main.c
1625
- - mkfs/f2fs_format_utils.c
1626
- - mkfs/f2fs_format_utils.h
1627
-
1628
- ================================================================================
1629
- Copyright (c) 2012 Samsung Electronics Co., Ltd.
1630
- http://www.samsung.com/
1631
-
1632
- This program is free software; you can redistribute it and/or modify
1633
- it under the terms of the GNU General Public License version 2 as
1634
- published by the Free Software Foundation.
1635
-
1636
- ================================================================================
1637
- GNU GENERAL PUBLIC LICENSE
1638
- Version 2, June 1991
1639
-
1640
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
1641
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1642
- Everyone is permitted to copy and distribute verbatim copies
1643
- of this license document, but changing it is not allowed.
1644
-
1645
- Preamble
1646
-
1647
- The licenses for most software are designed to take away your
1648
- freedom to share and change it. By contrast, the GNU General Public
1649
- License is intended to guarantee your freedom to share and change free
1650
- software--to make sure the software is free for all its users. This
1651
- General Public License applies to most of the Free Software
1652
- Foundation's software and to any other program whose authors commit to
1653
- using it. (Some other Free Software Foundation software is covered by
1654
- the GNU Library General Public License instead.) You can apply it to
1655
- your programs, too.
1656
-
1657
- When we speak of free software, we are referring to freedom, not
1658
- price. Our General Public Licenses are designed to make sure that you
1659
- have the freedom to distribute copies of free software (and charge for
1660
- this service if you wish), that you receive source code or can get it
1661
- if you want it, that you can change the software or use pieces of it
1662
- in new free programs; and that you know you can do these things.
1663
-
1664
- To protect your rights, we need to make restrictions that forbid
1665
- anyone to deny you these rights or to ask you to surrender the rights.
1666
- These restrictions translate to certain responsibilities for you if you
1667
- distribute copies of the software, or if you modify it.
1668
-
1669
- For example, if you distribute copies of such a program, whether
1670
- gratis or for a fee, you must give the recipients all the rights that
1671
- you have. You must make sure that they, too, receive or can get the
1672
- source code. And you must show them these terms so they know their
1673
- rights.
1674
-
1675
- We protect your rights with two steps: (1) copyright the software, and
1676
- (2) offer you this license which gives you legal permission to copy,
1677
- distribute and/or modify the software.
1678
-
1679
- Also, for each author's protection and ours, we want to make certain
1680
- that everyone understands that there is no warranty for this free
1681
- software. If the software is modified by someone else and passed on, we
1682
- want its recipients to know that what they have is not the original, so
1683
- that any problems introduced by others will not reflect on the original
1684
- authors' reputations.
1685
-
1686
- Finally, any free program is threatened constantly by software
1687
- patents. We wish to avoid the danger that redistributors of a free
1688
- program will individually obtain patent licenses, in effect making the
1689
- program proprietary. To prevent this, we have made it clear that any
1690
- patent must be licensed for everyone's free use or not licensed at all.
1691
-
1692
- The precise terms and conditions for copying, distribution and
1693
- modification follow.
1694
-
1695
- GNU GENERAL PUBLIC LICENSE
1696
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
1697
-
1698
- 0. This License applies to any program or other work which contains
1699
- a notice placed by the copyright holder saying it may be distributed
1700
- under the terms of this General Public License. The "Program", below,
1701
- refers to any such program or work, and a "work based on the Program"
1702
- means either the Program or any derivative work under copyright law:
1703
- that is to say, a work containing the Program or a portion of it,
1704
- either verbatim or with modifications and/or translated into another
1705
- language. (Hereinafter, translation is included without limitation in
1706
- the term "modification".) Each licensee is addressed as "you".
1707
-
1708
- Activities other than copying, distribution and modification are not
1709
- covered by this License; they are outside its scope. The act of
1710
- running the Program is not restricted, and the output from the Program
1711
- is covered only if its contents constitute a work based on the
1712
- Program (independent of having been made by running the Program).
1713
- Whether that is true depends on what the Program does.
1714
-
1715
- 1. You may copy and distribute verbatim copies of the Program's
1716
- source code as you receive it, in any medium, provided that you
1717
- conspicuously and appropriately publish on each copy an appropriate
1718
- copyright notice and disclaimer of warranty; keep intact all the
1719
- notices that refer to this License and to the absence of any warranty;
1720
- and give any other recipients of the Program a copy of this License
1721
- along with the Program.
1722
-
1723
- You may charge a fee for the physical act of transferring a copy, and
1724
- you may at your option offer warranty protection in exchange for a fee.
1725
-
1726
- 2. You may modify your copy or copies of the Program or any portion
1727
- of it, thus forming a work based on the Program, and copy and
1728
- distribute such modifications or work under the terms of Section 1
1729
- above, provided that you also meet all of these conditions:
1730
-
1731
- a) You must cause the modified files to carry prominent notices
1732
- stating that you changed the files and the date of any change.
1733
-
1734
- b) You must cause any work that you distribute or publish, that in
1735
- whole or in part contains or is derived from the Program or any
1736
- part thereof, to be licensed as a whole at no charge to all third
1737
- parties under the terms of this License.
1738
-
1739
- c) If the modified program normally reads commands interactively
1740
- when run, you must cause it, when started running for such
1741
- interactive use in the most ordinary way, to print or display an
1742
- announcement including an appropriate copyright notice and a
1743
- notice that there is no warranty (or else, saying that you provide
1744
- a warranty) and that users may redistribute the program under
1745
- these conditions, and telling the user how to view a copy of this
1746
- License. (Exception: if the Program itself is interactive but
1747
- does not normally print such an announcement, your work based on
1748
- the Program is not required to print an announcement.)
1749
-
1750
- These requirements apply to the modified work as a whole. If
1751
- identifiable sections of that work are not derived from the Program,
1752
- and can be reasonably considered independent and separate works in
1753
- themselves, then this License, and its terms, do not apply to those
1754
- sections when you distribute them as separate works. But when you
1755
- distribute the same sections as part of a whole which is a work based
1756
- on the Program, the distribution of the whole must be on the terms of
1757
- this License, whose permissions for other licensees extend to the
1758
- entire whole, and thus to each and every part regardless of who wrote it.
1759
-
1760
- Thus, it is not the intent of this section to claim rights or contest
1761
- your rights to work written entirely by you; rather, the intent is to
1762
- exercise the right to control the distribution of derivative or
1763
- collective works based on the Program.
1764
-
1765
- In addition, mere aggregation of another work not based on the Program
1766
- with the Program (or with a work based on the Program) on a volume of
1767
- a storage or distribution medium does not bring the other work under
1768
- the scope of this License.
1769
-
1770
- 3. You may copy and distribute the Program (or a work based on it,
1771
- under Section 2) in object code or executable form under the terms of
1772
- Sections 1 and 2 above provided that you also do one of the following:
1773
-
1774
- a) Accompany it with the complete corresponding machine-readable
1775
- source code, which must be distributed under the terms of Sections
1776
- 1 and 2 above on a medium customarily used for software interchange; or,
1777
-
1778
- b) Accompany it with a written offer, valid for at least three
1779
- years, to give any third party, for a charge no more than your
1780
- cost of physically performing source distribution, a complete
1781
- machine-readable copy of the corresponding source code, to be
1782
- distributed under the terms of Sections 1 and 2 above on a medium
1783
- customarily used for software interchange; or,
1784
-
1785
- c) Accompany it with the information you received as to the offer
1786
- to distribute corresponding source code. (This alternative is
1787
- allowed only for noncommercial distribution and only if you
1788
- received the program in object code or executable form with such
1789
- an offer, in accord with Subsection b above.)
1790
-
1791
- The source code for a work means the preferred form of the work for
1792
- making modifications to it. For an executable work, complete source
1793
- code means all the source code for all modules it contains, plus any
1794
- associated interface definition files, plus the scripts used to
1795
- control compilation and installation of the executable. However, as a
1796
- special exception, the source code distributed need not include
1797
- anything that is normally distributed (in either source or binary
1798
- form) with the major components (compiler, kernel, and so on) of the
1799
- operating system on which the executable runs, unless that component
1800
- itself accompanies the executable.
1801
-
1802
- If distribution of executable or object code is made by offering
1803
- access to copy from a designated place, then offering equivalent
1804
- access to copy the source code from the same place counts as
1805
- distribution of the source code, even though third parties are not
1806
- compelled to copy the source along with the object code.
1807
-
1808
- 4. You may not copy, modify, sublicense, or distribute the Program
1809
- except as expressly provided under this License. Any attempt
1810
- otherwise to copy, modify, sublicense or distribute the Program is
1811
- void, and will automatically terminate your rights under this License.
1812
- However, parties who have received copies, or rights, from you under
1813
- this License will not have their licenses terminated so long as such
1814
- parties remain in full compliance.
1815
-
1816
- 5. You are not required to accept this License, since you have not
1817
- signed it. However, nothing else grants you permission to modify or
1818
- distribute the Program or its derivative works. These actions are
1819
- prohibited by law if you do not accept this License. Therefore, by
1820
- modifying or distributing the Program (or any work based on the
1821
- Program), you indicate your acceptance of this License to do so, and
1822
- all its terms and conditions for copying, distributing or modifying
1823
- the Program or works based on it.
1824
-
1825
- 6. Each time you redistribute the Program (or any work based on the
1826
- Program), the recipient automatically receives a license from the
1827
- original licensor to copy, distribute or modify the Program subject to
1828
- these terms and conditions. You may not impose any further
1829
- restrictions on the recipients' exercise of the rights granted herein.
1830
- You are not responsible for enforcing compliance by third parties to
1831
- this License.
1832
-
1833
- 7. If, as a consequence of a court judgment or allegation of patent
1834
- infringement or for any other reason (not limited to patent issues),
1835
- conditions are imposed on you (whether by court order, agreement or
1836
- otherwise) that contradict the conditions of this License, they do not
1837
- excuse you from the conditions of this License. If you cannot
1838
- distribute so as to satisfy simultaneously your obligations under this
1839
- License and any other pertinent obligations, then as a consequence you
1840
- may not distribute the Program at all. For example, if a patent
1841
- license would not permit royalty-free redistribution of the Program by
1842
- all those who receive copies directly or indirectly through you, then
1843
- the only way you could satisfy both it and this License would be to
1844
- refrain entirely from distribution of the Program.
1845
-
1846
- If any portion of this section is held invalid or unenforceable under
1847
- any particular circumstance, the balance of the section is intended to
1848
- apply and the section as a whole is intended to apply in other
1849
- circumstances.
1850
-
1851
- It is not the purpose of this section to induce you to infringe any
1852
- patents or other property right claims or to contest validity of any
1853
- such claims; this section has the sole purpose of protecting the
1854
- integrity of the free software distribution system, which is
1855
- implemented by public license practices. Many people have made
1856
- generous contributions to the wide range of software distributed
1857
- through that system in reliance on consistent application of that
1858
- system; it is up to the author/donor to decide if he or she is willing
1859
- to distribute software through any other system and a licensee cannot
1860
- impose that choice.
1861
-
1862
- This section is intended to make thoroughly clear what is believed to
1863
- be a consequence of the rest of this License.
1864
-
1865
- 8. If the distribution and/or use of the Program is restricted in
1866
- certain countries either by patents or by copyrighted interfaces, the
1867
- original copyright holder who places the Program under this License
1868
- may add an explicit geographical distribution limitation excluding
1869
- those countries, so that distribution is permitted only in or among
1870
- countries not thus excluded. In such case, this License incorporates
1871
- the limitation as if written in the body of this License.
1872
-
1873
- 9. The Free Software Foundation may publish revised and/or new versions
1874
- of the General Public License from time to time. Such new versions will
1875
- be similar in spirit to the present version, but may differ in detail to
1876
- address new problems or concerns.
1877
-
1878
- Each version is given a distinguishing version number. If the Program
1879
- specifies a version number of this License which applies to it and "any
1880
- later version", you have the option of following the terms and conditions
1881
- either of that version or of any later version published by the Free
1882
- Software Foundation. If the Program does not specify a version number of
1883
- this License, you may choose any version ever published by the Free Software
1884
- Foundation.
1885
-
1886
- 10. If you wish to incorporate parts of the Program into other free
1887
- programs whose distribution conditions are different, write to the author
1888
- to ask for permission. For software which is copyrighted by the Free
1889
- Software Foundation, write to the Free Software Foundation; we sometimes
1890
- make exceptions for this. Our decision will be guided by the two goals
1891
- of preserving the free status of all derivatives of our free software and
1892
- of promoting the sharing and reuse of software generally.
1893
-
1894
- NO WARRANTY
1895
-
1896
- 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
1897
- FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
1898
- OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
1899
- PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
1900
- OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
1901
- MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
1902
- TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
1903
- PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
1904
- REPAIR OR CORRECTION.
1905
-
1906
- 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
1907
- WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
1908
- REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
1909
- INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
1910
- OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
1911
- TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
1912
- YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
1913
- PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
1914
- POSSIBILITY OF SUCH DAMAGES.
1915
-
1916
- END OF TERMS AND CONDITIONS
1917
-
1918
- How to Apply These Terms to Your New Programs
1919
-
1920
- If you develop a new program, and you want it to be of the greatest
1921
- possible use to the public, the best way to achieve this is to make it
1922
- free software which everyone can redistribute and change under these terms.
1923
-
1924
- To do so, attach the following notices to the program. It is safest
1925
- to attach them to the start of each source file to most effectively
1926
- convey the exclusion of warranty; and each file should have at least
1927
- the "copyright" line and a pointer to where the full notice is found.
1928
-
1929
- <one line to give the program's name and a brief idea of what it does.>
1930
- Copyright (C) <year> <name of author>
1931
-
1932
- This program is free software; you can redistribute it and/or modify
1933
- it under the terms of the GNU General Public License as published by
1934
- the Free Software Foundation; either version 2 of the License, or
1935
- (at your option) any later version.
1936
-
1937
- This program is distributed in the hope that it will be useful,
1938
- but WITHOUT ANY WARRANTY; without even the implied warranty of
1939
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1940
- GNU General Public License for more details.
1941
-
1942
- You should have received a copy of the GNU General Public License
1943
- along with this program; if not, write to the Free Software
1944
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1945
-
1946
-
1947
- Also add information on how to contact you by electronic and paper mail.
1948
-
1949
- If the program is interactive, make it output a short notice like this
1950
- when it starts in an interactive mode:
1951
-
1952
- Gnomovision version 69, Copyright (C) year name of author
1953
- Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
1954
- This is free software, and you are welcome to redistribute it
1955
- under certain conditions; type `show c' for details.
1956
-
1957
- The hypothetical commands `show w' and `show c' should show the appropriate
1958
- parts of the General Public License. Of course, the commands you use may
1959
- be called something other than `show w' and `show c'; they could even be
1960
- mouse-clicks or menu items--whatever suits your program.
1961
-
1962
- You should also get your employer (if you work as a programmer) or your
1963
- school, if any, to sign a "copyright disclaimer" for the program, if
1964
- necessary. Here is a sample; alter the names:
1965
-
1966
- Yoyodyne, Inc., hereby disclaims all copyright interest in the program
1967
- `Gnomovision' (which makes passes at compilers) written by James Hacker.
1968
-
1969
- <signature of Ty Coon>, 1 April 1989
1970
- Ty Coon, President of Vice
1971
-
1972
- This General Public License does not permit incorporating your program into
1973
- proprietary programs. If your program is a subroutine library, you may
1974
- consider it more useful to permit linking proprietary applications with the
1975
- library. If this is what you want to do, use the GNU Library General
1976
- Public License instead of this License.
1977
-
1978
- ================================================================================
1979
- GNU LESSER GENERAL PUBLIC LICENSE
1980
- Version 2.1, February 1999
1981
-
1982
- Copyright (C) 1991, 1999 Free Software Foundation, Inc.
1983
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1984
- Everyone is permitted to copy and distribute verbatim copies
1985
- of this license document, but changing it is not allowed.
1986
-
1987
- [This is the first released version of the Lesser GPL. It also counts
1988
- as the successor of the GNU Library Public License, version 2, hence
1989
- the version number 2.1.]
1990
-
1991
- Preamble
1992
-
1993
- The licenses for most software are designed to take away your
1994
- freedom to share and change it. By contrast, the GNU General Public
1995
- Licenses are intended to guarantee your freedom to share and change
1996
- free software--to make sure the software is free for all its users.
1997
-
1998
- This license, the Lesser General Public License, applies to some
1999
- specially designated software packages--typically libraries--of the
2000
- Free Software Foundation and other authors who decide to use it. You
2001
- can use it too, but we suggest you first think carefully about whether
2002
- this license or the ordinary General Public License is the better
2003
- strategy to use in any particular case, based on the explanations below.
2004
-
2005
- When we speak of free software, we are referring to freedom of use,
2006
- not price. Our General Public Licenses are designed to make sure that
2007
- you have the freedom to distribute copies of free software (and charge
2008
- for this service if you wish); that you receive source code or can get
2009
- it if you want it; that you can change the software and use pieces of
2010
- it in new free programs; and that you are informed that you can do
2011
- these things.
2012
-
2013
- To protect your rights, we need to make restrictions that forbid
2014
- distributors to deny you these rights or to ask you to surrender these
2015
- rights. These restrictions translate to certain responsibilities for
2016
- you if you distribute copies of the library or if you modify it.
2017
-
2018
- For example, if you distribute copies of the library, whether gratis
2019
- or for a fee, you must give the recipients all the rights that we gave
2020
- you. You must make sure that they, too, receive or can get the source
2021
- code. If you link other code with the library, you must provide
2022
- complete object files to the recipients, so that they can relink them
2023
- with the library after making changes to the library and recompiling
2024
- it. And you must show them these terms so they know their rights.
2025
-
2026
- We protect your rights with a two-step method: (1) we copyright the
2027
- library, and (2) we offer you this license, which gives you legal
2028
- permission to copy, distribute and/or modify the library.
2029
-
2030
- To protect each distributor, we want to make it very clear that
2031
- there is no warranty for the free library. Also, if the library is
2032
- modified by someone else and passed on, the recipients should know
2033
- that what they have is not the original version, so that the original
2034
- author's reputation will not be affected by problems that might be
2035
- introduced by others.
2036
-
2037
- Finally, software patents pose a constant threat to the existence of
2038
- any free program. We wish to make sure that a company cannot
2039
- effectively restrict the users of a free program by obtaining a
2040
- restrictive license from a patent holder. Therefore, we insist that
2041
- any patent license obtained for a version of the library must be
2042
- consistent with the full freedom of use specified in this license.
2043
-
2044
- Most GNU software, including some libraries, is covered by the
2045
- ordinary GNU General Public License. This license, the GNU Lesser
2046
- General Public License, applies to certain designated libraries, and
2047
- is quite different from the ordinary General Public License. We use
2048
- this license for certain libraries in order to permit linking those
2049
- libraries into non-free programs.
2050
-
2051
- When a program is linked with a library, whether statically or using
2052
- a shared library, the combination of the two is legally speaking a
2053
- combined work, a derivative of the original library. The ordinary
2054
- General Public License therefore permits such linking only if the
2055
- entire combination fits its criteria of freedom. The Lesser General
2056
- Public License permits more lax criteria for linking other code with
2057
- the library.
2058
-
2059
- We call this license the "Lesser" General Public License because it
2060
- does Less to protect the user's freedom than the ordinary General
2061
- Public License. It also provides other free software developers Less
2062
- of an advantage over competing non-free programs. These disadvantages
2063
- are the reason we use the ordinary General Public License for many
2064
- libraries. However, the Lesser license provides advantages in certain
2065
- special circumstances.
2066
-
2067
- For example, on rare occasions, there may be a special need to
2068
- encourage the widest possible use of a certain library, so that it becomes
2069
- a de-facto standard. To achieve this, non-free programs must be
2070
- allowed to use the library. A more frequent case is that a free
2071
- library does the same job as widely used non-free libraries. In this
2072
- case, there is little to gain by limiting the free library to free
2073
- software only, so we use the Lesser General Public License.
2074
-
2075
- In other cases, permission to use a particular library in non-free
2076
- programs enables a greater number of people to use a large body of
2077
- free software. For example, permission to use the GNU C Library in
2078
- non-free programs enables many more people to use the whole GNU
2079
- operating system, as well as its variant, the GNU/Linux operating
2080
- system.
2081
-
2082
- Although the Lesser General Public License is Less protective of the
2083
- users' freedom, it does ensure that the user of a program that is
2084
- linked with the Library has the freedom and the wherewithal to run
2085
- that program using a modified version of the Library.
2086
-
2087
- The precise terms and conditions for copying, distribution and
2088
- modification follow. Pay close attention to the difference between a
2089
- "work based on the library" and a "work that uses the library". The
2090
- former contains code derived from the library, whereas the latter must
2091
- be combined with the library in order to run.
2092
-
2093
- GNU LESSER GENERAL PUBLIC LICENSE
2094
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
2095
-
2096
- 0. This License Agreement applies to any software library or other
2097
- program which contains a notice placed by the copyright holder or
2098
- other authorized party saying it may be distributed under the terms of
2099
- this Lesser General Public License (also called "this License").
2100
- Each licensee is addressed as "you".
2101
-
2102
- A "library" means a collection of software functions and/or data
2103
- prepared so as to be conveniently linked with application programs
2104
- (which use some of those functions and data) to form executables.
2105
-
2106
- The "Library", below, refers to any such software library or work
2107
- which has been distributed under these terms. A "work based on the
2108
- Library" means either the Library or any derivative work under
2109
- copyright law: that is to say, a work containing the Library or a
2110
- portion of it, either verbatim or with modifications and/or translated
2111
- straightforwardly into another language. (Hereinafter, translation is
2112
- included without limitation in the term "modification".)
2113
-
2114
- "Source code" for a work means the preferred form of the work for
2115
- making modifications to it. For a library, complete source code means
2116
- all the source code for all modules it contains, plus any associated
2117
- interface definition files, plus the scripts used to control compilation
2118
- and installation of the library.
2119
-
2120
- Activities other than copying, distribution and modification are not
2121
- covered by this License; they are outside its scope. The act of
2122
- running a program using the Library is not restricted, and output from
2123
- such a program is covered only if its contents constitute a work based
2124
- on the Library (independent of the use of the Library in a tool for
2125
- writing it). Whether that is true depends on what the Library does
2126
- and what the program that uses the Library does.
2127
-
2128
- 1. You may copy and distribute verbatim copies of the Library's
2129
- complete source code as you receive it, in any medium, provided that
2130
- you conspicuously and appropriately publish on each copy an
2131
- appropriate copyright notice and disclaimer of warranty; keep intact
2132
- all the notices that refer to this License and to the absence of any
2133
- warranty; and distribute a copy of this License along with the
2134
- Library.
2135
-
2136
- You may charge a fee for the physical act of transferring a copy,
2137
- and you may at your option offer warranty protection in exchange for a
2138
- fee.
2139
-
2140
- 2. You may modify your copy or copies of the Library or any portion
2141
- of it, thus forming a work based on the Library, and copy and
2142
- distribute such modifications or work under the terms of Section 1
2143
- above, provided that you also meet all of these conditions:
2144
-
2145
- a) The modified work must itself be a software library.
2146
-
2147
- b) You must cause the files modified to carry prominent notices
2148
- stating that you changed the files and the date of any change.
2149
-
2150
- c) You must cause the whole of the work to be licensed at no
2151
- charge to all third parties under the terms of this License.
2152
-
2153
- d) If a facility in the modified Library refers to a function or a
2154
- table of data to be supplied by an application program that uses
2155
- the facility, other than as an argument passed when the facility
2156
- is invoked, then you must make a good faith effort to ensure that,
2157
- in the event an application does not supply such function or
2158
- table, the facility still operates, and performs whatever part of
2159
- its purpose remains meaningful.
2160
-
2161
- (For example, a function in a library to compute square roots has
2162
- a purpose that is entirely well-defined independent of the
2163
- application. Therefore, Subsection 2d requires that any
2164
- application-supplied function or table used by this function must
2165
- be optional: if the application does not supply it, the square
2166
- root function must still compute square roots.)
2167
-
2168
- These requirements apply to the modified work as a whole. If
2169
- identifiable sections of that work are not derived from the Library,
2170
- and can be reasonably considered independent and separate works in
2171
- themselves, then this License, and its terms, do not apply to those
2172
- sections when you distribute them as separate works. But when you
2173
- distribute the same sections as part of a whole which is a work based
2174
- on the Library, the distribution of the whole must be on the terms of
2175
- this License, whose permissions for other licensees extend to the
2176
- entire whole, and thus to each and every part regardless of who wrote
2177
- it.
2178
-
2179
- Thus, it is not the intent of this section to claim rights or contest
2180
- your rights to work written entirely by you; rather, the intent is to
2181
- exercise the right to control the distribution of derivative or
2182
- collective works based on the Library.
2183
-
2184
- In addition, mere aggregation of another work not based on the Library
2185
- with the Library (or with a work based on the Library) on a volume of
2186
- a storage or distribution medium does not bring the other work under
2187
- the scope of this License.
2188
-
2189
- 3. You may opt to apply the terms of the ordinary GNU General Public
2190
- License instead of this License to a given copy of the Library. To do
2191
- this, you must alter all the notices that refer to this License, so
2192
- that they refer to the ordinary GNU General Public License, version 2,
2193
- instead of to this License. (If a newer version than version 2 of the
2194
- ordinary GNU General Public License has appeared, then you can specify
2195
- that version instead if you wish.) Do not make any other change in
2196
- these notices.
2197
-
2198
- Once this change is made in a given copy, it is irreversible for
2199
- that copy, so the ordinary GNU General Public License applies to all
2200
- subsequent copies and derivative works made from that copy.
2201
-
2202
- This option is useful when you wish to copy part of the code of
2203
- the Library into a program that is not a library.
2204
-
2205
- 4. You may copy and distribute the Library (or a portion or
2206
- derivative of it, under Section 2) in object code or executable form
2207
- under the terms of Sections 1 and 2 above provided that you accompany
2208
- it with the complete corresponding machine-readable source code, which
2209
- must be distributed under the terms of Sections 1 and 2 above on a
2210
- medium customarily used for software interchange.
2211
-
2212
- If distribution of object code is made by offering access to copy
2213
- from a designated place, then offering equivalent access to copy the
2214
- source code from the same place satisfies the requirement to
2215
- distribute the source code, even though third parties are not
2216
- compelled to copy the source along with the object code.
2217
-
2218
- 5. A program that contains no derivative of any portion of the
2219
- Library, but is designed to work with the Library by being compiled or
2220
- linked with it, is called a "work that uses the Library". Such a
2221
- work, in isolation, is not a derivative work of the Library, and
2222
- therefore falls outside the scope of this License.
2223
-
2224
- However, linking a "work that uses the Library" with the Library
2225
- creates an executable that is a derivative of the Library (because it
2226
- contains portions of the Library), rather than a "work that uses the
2227
- library". The executable is therefore covered by this License.
2228
- Section 6 states terms for distribution of such executables.
2229
-
2230
- When a "work that uses the Library" uses material from a header file
2231
- that is part of the Library, the object code for the work may be a
2232
- derivative work of the Library even though the source code is not.
2233
- Whether this is true is especially significant if the work can be
2234
- linked without the Library, or if the work is itself a library. The
2235
- threshold for this to be true is not precisely defined by law.
2236
-
2237
- If such an object file uses only numerical parameters, data
2238
- structure layouts and accessors, and small macros and small inline
2239
- functions (ten lines or less in length), then the use of the object
2240
- file is unrestricted, regardless of whether it is legally a derivative
2241
- work. (Executables containing this object code plus portions of the
2242
- Library will still fall under Section 6.)
2243
-
2244
- Otherwise, if the work is a derivative of the Library, you may
2245
- distribute the object code for the work under the terms of Section 6.
2246
- Any executables containing that work also fall under Section 6,
2247
- whether or not they are linked directly with the Library itself.
2248
-
2249
- 6. As an exception to the Sections above, you may also combine or
2250
- link a "work that uses the Library" with the Library to produce a
2251
- work containing portions of the Library, and distribute that work
2252
- under terms of your choice, provided that the terms permit
2253
- modification of the work for the customer's own use and reverse
2254
- engineering for debugging such modifications.
2255
-
2256
- You must give prominent notice with each copy of the work that the
2257
- Library is used in it and that the Library and its use are covered by
2258
- this License. You must supply a copy of this License. If the work
2259
- during execution displays copyright notices, you must include the
2260
- copyright notice for the Library among them, as well as a reference
2261
- directing the user to the copy of this License. Also, you must do one
2262
- of these things:
2263
-
2264
- a) Accompany the work with the complete corresponding
2265
- machine-readable source code for the Library including whatever
2266
- changes were used in the work (which must be distributed under
2267
- Sections 1 and 2 above); and, if the work is an executable linked
2268
- with the Library, with the complete machine-readable "work that
2269
- uses the Library", as object code and/or source code, so that the
2270
- user can modify the Library and then relink to produce a modified
2271
- executable containing the modified Library. (It is understood
2272
- that the user who changes the contents of definitions files in the
2273
- Library will not necessarily be able to recompile the application
2274
- to use the modified definitions.)
2275
-
2276
- b) Use a suitable shared library mechanism for linking with the
2277
- Library. A suitable mechanism is one that (1) uses at run time a
2278
- copy of the library already present on the user's computer system,
2279
- rather than copying library functions into the executable, and (2)
2280
- will operate properly with a modified version of the library, if
2281
- the user installs one, as long as the modified version is
2282
- interface-compatible with the version that the work was made with.
2283
-
2284
- c) Accompany the work with a written offer, valid for at
2285
- least three years, to give the same user the materials
2286
- specified in Subsection 6a, above, for a charge no more
2287
- than the cost of performing this distribution.
2288
-
2289
- d) If distribution of the work is made by offering access to copy
2290
- from a designated place, offer equivalent access to copy the above
2291
- specified materials from the same place.
2292
-
2293
- e) Verify that the user has already received a copy of these
2294
- materials or that you have already sent this user a copy.
2295
-
2296
- For an executable, the required form of the "work that uses the
2297
- Library" must include any data and utility programs needed for
2298
- reproducing the executable from it. However, as a special exception,
2299
- the materials to be distributed need not include anything that is
2300
- normally distributed (in either source or binary form) with the major
2301
- components (compiler, kernel, and so on) of the operating system on
2302
- which the executable runs, unless that component itself accompanies
2303
- the executable.
2304
-
2305
- It may happen that this requirement contradicts the license
2306
- restrictions of other proprietary libraries that do not normally
2307
- accompany the operating system. Such a contradiction means you cannot
2308
- use both them and the Library together in an executable that you
2309
- distribute.
2310
-
2311
- 7. You may place library facilities that are a work based on the
2312
- Library side-by-side in a single library together with other library
2313
- facilities not covered by this License, and distribute such a combined
2314
- library, provided that the separate distribution of the work based on
2315
- the Library and of the other library facilities is otherwise
2316
- permitted, and provided that you do these two things:
2317
-
2318
- a) Accompany the combined library with a copy of the same work
2319
- based on the Library, uncombined with any other library
2320
- facilities. This must be distributed under the terms of the
2321
- Sections above.
2322
-
2323
- b) Give prominent notice with the combined library of the fact
2324
- that part of it is a work based on the Library, and explaining
2325
- where to find the accompanying uncombined form of the same work.
2326
-
2327
- 8. You may not copy, modify, sublicense, link with, or distribute
2328
- the Library except as expressly provided under this License. Any
2329
- attempt otherwise to copy, modify, sublicense, link with, or
2330
- distribute the Library is void, and will automatically terminate your
2331
- rights under this License. However, parties who have received copies,
2332
- or rights, from you under this License will not have their licenses
2333
- terminated so long as such parties remain in full compliance.
2334
-
2335
- 9. You are not required to accept this License, since you have not
2336
- signed it. However, nothing else grants you permission to modify or
2337
- distribute the Library or its derivative works. These actions are
2338
- prohibited by law if you do not accept this License. Therefore, by
2339
- modifying or distributing the Library (or any work based on the
2340
- Library), you indicate your acceptance of this License to do so, and
2341
- all its terms and conditions for copying, distributing or modifying
2342
- the Library or works based on it.
2343
-
2344
- 10. Each time you redistribute the Library (or any work based on the
2345
- Library), the recipient automatically receives a license from the
2346
- original licensor to copy, distribute, link with or modify the Library
2347
- subject to these terms and conditions. You may not impose any further
2348
- restrictions on the recipients' exercise of the rights granted herein.
2349
- You are not responsible for enforcing compliance by third parties with
2350
- this License.
2351
-
2352
- 11. If, as a consequence of a court judgment or allegation of patent
2353
- infringement or for any other reason (not limited to patent issues),
2354
- conditions are imposed on you (whether by court order, agreement or
2355
- otherwise) that contradict the conditions of this License, they do not
2356
- excuse you from the conditions of this License. If you cannot
2357
- distribute so as to satisfy simultaneously your obligations under this
2358
- License and any other pertinent obligations, then as a consequence you
2359
- may not distribute the Library at all. For example, if a patent
2360
- license would not permit royalty-free redistribution of the Library by
2361
- all those who receive copies directly or indirectly through you, then
2362
- the only way you could satisfy both it and this License would be to
2363
- refrain entirely from distribution of the Library.
2364
-
2365
- If any portion of this section is held invalid or unenforceable under any
2366
- particular circumstance, the balance of the section is intended to apply,
2367
- and the section as a whole is intended to apply in other circumstances.
2368
-
2369
- It is not the purpose of this section to induce you to infringe any
2370
- patents or other property right claims or to contest validity of any
2371
- such claims; this section has the sole purpose of protecting the
2372
- integrity of the free software distribution system which is
2373
- implemented by public license practices. Many people have made
2374
- generous contributions to the wide range of software distributed
2375
- through that system in reliance on consistent application of that
2376
- system; it is up to the author/donor to decide if he or she is willing
2377
- to distribute software through any other system and a licensee cannot
2378
- impose that choice.
2379
-
2380
- This section is intended to make thoroughly clear what is believed to
2381
- be a consequence of the rest of this License.
2382
-
2383
- 12. If the distribution and/or use of the Library is restricted in
2384
- certain countries either by patents or by copyrighted interfaces, the
2385
- original copyright holder who places the Library under this License may add
2386
- an explicit geographical distribution limitation excluding those countries,
2387
- so that distribution is permitted only in or among countries not thus
2388
- excluded. In such case, this License incorporates the limitation as if
2389
- written in the body of this License.
2390
-
2391
- 13. The Free Software Foundation may publish revised and/or new
2392
- versions of the Lesser General Public License from time to time.
2393
- Such new versions will be similar in spirit to the present version,
2394
- but may differ in detail to address new problems or concerns.
2395
-
2396
- Each version is given a distinguishing version number. If the Library
2397
- specifies a version number of this License which applies to it and
2398
- "any later version", you have the option of following the terms and
2399
- conditions either of that version or of any later version published by
2400
- the Free Software Foundation. If the Library does not specify a
2401
- license version number, you may choose any version ever published by
2402
- the Free Software Foundation.
2403
-
2404
- 14. If you wish to incorporate parts of the Library into other free
2405
- programs whose distribution conditions are incompatible with these,
2406
- write to the author to ask for permission. For software which is
2407
- copyrighted by the Free Software Foundation, write to the Free
2408
- Software Foundation; we sometimes make exceptions for this. Our
2409
- decision will be guided by the two goals of preserving the free status
2410
- of all derivatives of our free software and of promoting the sharing
2411
- and reuse of software generally.
2412
-
2413
- NO WARRANTY
2414
-
2415
- 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
2416
- WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
2417
- EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
2418
- OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
2419
- KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
2420
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2421
- PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
2422
- LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
2423
- THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
2424
-
2425
- 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
2426
- WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
2427
- AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
2428
- FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
2429
- CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
2430
- LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
2431
- RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
2432
- FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
2433
- SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
2434
- DAMAGES.
2435
-
2436
- END OF TERMS AND CONDITIONS
2437
-
2438
- How to Apply These Terms to Your New Libraries
2439
-
2440
- If you develop a new library, and you want it to be of the greatest
2441
- possible use to the public, we recommend making it free software that
2442
- everyone can redistribute and change. You can do so by permitting
2443
- redistribution under these terms (or, alternatively, under the terms of the
2444
- ordinary General Public License).
2445
-
2446
- To apply these terms, attach the following notices to the library. It is
2447
- safest to attach them to the start of each source file to most effectively
2448
- convey the exclusion of warranty; and each file should have at least the
2449
- "copyright" line and a pointer to where the full notice is found.
2450
-
2451
- <one line to give the library's name and a brief idea of what it does.>
2452
- Copyright (C) <year> <name of author>
2453
-
2454
- This library is free software; you can redistribute it and/or
2455
- modify it under the terms of the GNU Lesser General Public
2456
- License as published by the Free Software Foundation; either
2457
- version 2.1 of the License, or (at your option) any later version.
2458
-
2459
- This library is distributed in the hope that it will be useful,
2460
- but WITHOUT ANY WARRANTY; without even the implied warranty of
2461
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2462
- Lesser General Public License for more details.
2463
-
2464
- You should have received a copy of the GNU Lesser General Public
2465
- License along with this library; if not, write to the Free Software
2466
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2467
-
2468
- Also add information on how to contact you by electronic and paper mail.
2469
-
2470
- You should also get your employer (if you work as a programmer) or your
2471
- school, if any, to sign a "copyright disclaimer" for the library, if
2472
- necessary. Here is a sample; alter the names:
2473
-
2474
- Yoyodyne, Inc., hereby disclaims all copyright interest in the
2475
- library `Frob' (a library for tweaking knobs) written by James Random Hacker.
2476
-
2477
- <signature of Ty Coon>, 1 April 1990
2478
- Ty Coon, President of Vice
2479
-
2480
- That's all there is to it!
2481
-
2482
- ============================================================
2483
- Notices for file(s):
2484
- /framework/bouncycastle-host.jar
2485
- ------------------------------------------------------------
2486
- Copyright (c) 2000-2015 The Legion of the Bouncy Castle Inc. (http://www.bouncycastle.org)
2487
-
2488
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
2489
- associated documentation files (the "Software"), to deal in the Software without restriction,
2490
- including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
2491
- and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
2492
- subject to the following conditions:
2493
-
2494
- The above copyright notice and this permission notice shall be included in all copies or substantial
2495
- portions of the Software.
2496
-
2497
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
2498
- LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
2499
- NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2500
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2501
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2502
-
2503
- ============================================================
2504
- Notices for file(s):
2505
- /framework/doclava.jar
2506
- ------------------------------------------------------------
2507
-
2508
- Copyright (C) 2010 Google Inc.
2509
-
2510
- Licensed under the Apache License, Version 2.0 (the "License");
2511
- you may not use this file except in compliance with the License.
2512
- You may obtain a copy of the License at
2513
-
2514
- http://www.apache.org/licenses/LICENSE-2.0
2515
-
2516
- Unless required by applicable law or agreed to in writing, software
2517
- distributed under the License is distributed on an "AS IS" BASIS,
2518
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2519
- See the License for the specific language governing permissions and
2520
- limitations under the License.
2521
-
2522
-
2523
- ======================================================================
2524
-
2525
- jQuery 1.2.6 - New Wave Javascript
2526
-
2527
- Copyright (c) 2008 John Resig (jquery.com)
2528
- Dual licensed under the MIT (MIT-LICENSE.txt)
2529
- and GPL (GPL-LICENSE.txt) licenses.
2530
-
2531
- Copyright (c) 2009 John Resig, http://jquery.com/
2532
-
2533
- Permission is hereby granted, free of charge, to any person obtaining
2534
- a copy of this software and associated documentation files (the
2535
- "Software"), to deal in the Software without restriction, including
2536
- without limitation the rights to use, copy, modify, merge, publish,
2537
- distribute, sublicense, and/or sell copies of the Software, and to
2538
- permit persons to whom the Software is furnished to do so, subject to
2539
- the following conditions:
2540
-
2541
- The above copyright notice and this permission notice shall be
2542
- included in all copies or substantial portions of the Software.
2543
-
2544
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2545
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2546
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2547
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2548
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2549
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
2550
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2551
-
2552
-
2553
- ============================================================
2554
- Notices for file(s):
2555
- /lib/libzopfli.a
2556
- /lib64/libzopfli.a
2557
- ------------------------------------------------------------
2558
- Apache License
2559
- Version 2.0, January 2004
2560
- http://www.apache.org/licenses/
2561
-
2562
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
2563
-
2564
- 1. Definitions.
2565
-
2566
- "License" shall mean the terms and conditions for use, reproduction,
2567
- and distribution as defined by Sections 1 through 9 of this document.
2568
-
2569
- "Licensor" shall mean the copyright owner or entity authorized by
2570
- the copyright owner that is granting the License.
2571
-
2572
- "Legal Entity" shall mean the union of the acting entity and all
2573
- other entities that control, are controlled by, or are under common
2574
- control with that entity. For the purposes of this definition,
2575
- "control" means (i) the power, direct or indirect, to cause the
2576
- direction or management of such entity, whether by contract or
2577
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
2578
- outstanding shares, or (iii) beneficial ownership of such entity.
2579
-
2580
- "You" (or "Your") shall mean an individual or Legal Entity
2581
- exercising permissions granted by this License.
2582
-
2583
- "Source" form shall mean the preferred form for making modifications,
2584
- including but not limited to software source code, documentation
2585
- source, and configuration files.
2586
-
2587
- "Object" form shall mean any form resulting from mechanical
2588
- transformation or translation of a Source form, including but
2589
- not limited to compiled object code, generated documentation,
2590
- and conversions to other media types.
2591
-
2592
- "Work" shall mean the work of authorship, whether in Source or
2593
- Object form, made available under the License, as indicated by a
2594
- copyright notice that is included in or attached to the work
2595
- (an example is provided in the Appendix below).
2596
-
2597
- "Derivative Works" shall mean any work, whether in Source or Object
2598
- form, that is based on (or derived from) the Work and for which the
2599
- editorial revisions, annotations, elaborations, or other modifications
2600
- represent, as a whole, an original work of authorship. For the purposes
2601
- of this License, Derivative Works shall not include works that remain
2602
- separable from, or merely link (or bind by name) to the interfaces of,
2603
- the Work and Derivative Works thereof.
2604
-
2605
- "Contribution" shall mean any work of authorship, including
2606
- the original version of the Work and any modifications or additions
2607
- to that Work or Derivative Works thereof, that is intentionally
2608
- submitted to Licensor for inclusion in the Work by the copyright owner
2609
- or by an individual or Legal Entity authorized to submit on behalf of
2610
- the copyright owner. For the purposes of this definition, "submitted"
2611
- means any form of electronic, verbal, or written communication sent
2612
- to the Licensor or its representatives, including but not limited to
2613
- communication on electronic mailing lists, source code control systems,
2614
- and issue tracking systems that are managed by, or on behalf of, the
2615
- Licensor for the purpose of discussing and improving the Work, but
2616
- excluding communication that is conspicuously marked or otherwise
2617
- designated in writing by the copyright owner as "Not a Contribution."
2618
-
2619
- "Contributor" shall mean Licensor and any individual or Legal Entity
2620
- on behalf of whom a Contribution has been received by Licensor and
2621
- subsequently incorporated within the Work.
2622
-
2623
- 2. Grant of Copyright License. Subject to the terms and conditions of
2624
- this License, each Contributor hereby grants to You a perpetual,
2625
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2626
- copyright license to reproduce, prepare Derivative Works of,
2627
- publicly display, publicly perform, sublicense, and distribute the
2628
- Work and such Derivative Works in Source or Object form.
2629
-
2630
- 3. Grant of Patent License. Subject to the terms and conditions of
2631
- this License, each Contributor hereby grants to You a perpetual,
2632
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
2633
- (except as stated in this section) patent license to make, have made,
2634
- use, offer to sell, sell, import, and otherwise transfer the Work,
2635
- where such license applies only to those patent claims licensable
2636
- by such Contributor that are necessarily infringed by their
2637
- Contribution(s) alone or by combination of their Contribution(s)
2638
- with the Work to which such Contribution(s) was submitted. If You
2639
- institute patent litigation against any entity (including a
2640
- cross-claim or counterclaim in a lawsuit) alleging that the Work
2641
- or a Contribution incorporated within the Work constitutes direct
2642
- or contributory patent infringement, then any patent licenses
2643
- granted to You under this License for that Work shall terminate
2644
- as of the date such litigation is filed.
2645
-
2646
- 4. Redistribution. You may reproduce and distribute copies of the
2647
- Work or Derivative Works thereof in any medium, with or without
2648
- modifications, and in Source or Object form, provided that You
2649
- meet the following conditions:
2650
-
2651
- (a) You must give any other recipients of the Work or
2652
- Derivative Works a copy of this License; and
2653
-
2654
- (b) You must cause any modified files to carry prominent notices
2655
- stating that You changed the files; and
2656
-
2657
- (c) You must retain, in the Source form of any Derivative Works
2658
- that You distribute, all copyright, patent, trademark, and
2659
- attribution notices from the Source form of the Work,
2660
- excluding those notices that do not pertain to any part of
2661
- the Derivative Works; and
2662
-
2663
- (d) If the Work includes a "NOTICE" text file as part of its
2664
- distribution, then any Derivative Works that You distribute must
2665
- include a readable copy of the attribution notices contained
2666
- within such NOTICE file, excluding those notices that do not
2667
- pertain to any part of the Derivative Works, in at least one
2668
- of the following places: within a NOTICE text file distributed
2669
- as part of the Derivative Works; within the Source form or
2670
- documentation, if provided along with the Derivative Works; or,
2671
- within a display generated by the Derivative Works, if and
2672
- wherever such third-party notices normally appear. The contents
2673
- of the NOTICE file are for informational purposes only and
2674
- do not modify the License. You may add Your own attribution
2675
- notices within Derivative Works that You distribute, alongside
2676
- or as an addendum to the NOTICE text from the Work, provided
2677
- that such additional attribution notices cannot be construed
2678
- as modifying the License.
2679
-
2680
- You may add Your own copyright statement to Your modifications and
2681
- may provide additional or different license terms and conditions
2682
- for use, reproduction, or distribution of Your modifications, or
2683
- for any such Derivative Works as a whole, provided Your use,
2684
- reproduction, and distribution of the Work otherwise complies with
2685
- the conditions stated in this License.
2686
-
2687
- 5. Submission of Contributions. Unless You explicitly state otherwise,
2688
- any Contribution intentionally submitted for inclusion in the Work
2689
- by You to the Licensor shall be under the terms and conditions of
2690
- this License, without any additional terms or conditions.
2691
- Notwithstanding the above, nothing herein shall supersede or modify
2692
- the terms of any separate license agreement you may have executed
2693
- with Licensor regarding such Contributions.
2694
-
2695
- 6. Trademarks. This License does not grant permission to use the trade
2696
- names, trademarks, service marks, or product names of the Licensor,
2697
- except as required for reasonable and customary use in describing the
2698
- origin of the Work and reproducing the content of the NOTICE file.
2699
-
2700
- 7. Disclaimer of Warranty. Unless required by applicable law or
2701
- agreed to in writing, Licensor provides the Work (and each
2702
- Contributor provides its Contributions) on an "AS IS" BASIS,
2703
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
2704
- implied, including, without limitation, any warranties or conditions
2705
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
2706
- PARTICULAR PURPOSE. You are solely responsible for determining the
2707
- appropriateness of using or redistributing the Work and assume any
2708
- risks associated with Your exercise of permissions under this License.
2709
-
2710
- 8. Limitation of Liability. In no event and under no legal theory,
2711
- whether in tort (including negligence), contract, or otherwise,
2712
- unless required by applicable law (such as deliberate and grossly
2713
- negligent acts) or agreed to in writing, shall any Contributor be
2714
- liable to You for damages, including any direct, indirect, special,
2715
- incidental, or consequential damages of any character arising as a
2716
- result of this License or out of the use or inability to use the
2717
- Work (including but not limited to damages for loss of goodwill,
2718
- work stoppage, computer failure or malfunction, or any and all
2719
- other commercial damages or losses), even if such Contributor
2720
- has been advised of the possibility of such damages.
2721
-
2722
- 9. Accepting Warranty or Additional Liability. While redistributing
2723
- the Work or Derivative Works thereof, You may choose to offer,
2724
- and charge a fee for, acceptance of support, warranty, indemnity,
2725
- or other liability obligations and/or rights consistent with this
2726
- License. However, in accepting such obligations, You may act only
2727
- on Your own behalf and on Your sole responsibility, not on behalf
2728
- of any other Contributor, and only if You agree to indemnify,
2729
- defend, and hold each Contributor harmless for any liability
2730
- incurred by, or claims asserted against, such Contributor by reason
2731
- of your accepting any such warranty or additional liability.
2732
-
2733
- END OF TERMS AND CONDITIONS
2734
-
2735
- APPENDIX: How to apply the Apache License to your work.
2736
-
2737
- To apply the Apache License to your work, attach the following
2738
- boilerplate notice, with the fields enclosed by brackets "[]"
2739
- replaced with your own identifying information. (Don't include
2740
- the brackets!) The text should be enclosed in the appropriate
2741
- comment syntax for the file format. We also recommend that a
2742
- file or class name and description of purpose be included on the
2743
- same "printed page" as the copyright notice for easier
2744
- identification within third-party archives.
2745
-
2746
- Copyright 2011 Google Inc.
2747
-
2748
- Licensed under the Apache License, Version 2.0 (the "License");
2749
- you may not use this file except in compliance with the License.
2750
- You may obtain a copy of the License at
2751
-
2752
- http://www.apache.org/licenses/LICENSE-2.0
2753
-
2754
- Unless required by applicable law or agreed to in writing, software
2755
- distributed under the License is distributed on an "AS IS" BASIS,
2756
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2757
- See the License for the specific language governing permissions and
2758
- limitations under the License.
2759
-
2760
- ============================================================
2761
- Notices for file(s):
2762
- /bin/sqlite3
2763
- /lib/libsqlite.so
2764
- /lib64/libsqlite.so
2765
- ------------------------------------------------------------
2766
- 2001 September 15
2767
-
2768
- The author disclaims copyright to this source code. In place of
2769
- a legal notice, here is a blessing:
2770
-
2771
- May you do good and not evil.
2772
- May you find forgiveness for yourself and forgive others.
2773
- May you share freely, never taking more than you give.
2774
-
2775
-
2776
- ============================================================
2777
- Notices for file(s):
2778
- /lib/libcrypto-host.so
2779
- /lib/libcrypto_static.a
2780
- /lib/libssl-host.so
2781
- /lib64/libcrypto-host.so
2782
- /lib64/libcrypto_static.a
2783
- /lib64/libssl-host.so
2784
- ------------------------------------------------------------
2785
-
2786
- LICENSE ISSUES
2787
- ==============
2788
-
2789
- The OpenSSL toolkit stays under a dual license, i.e. both the conditions of
2790
- the OpenSSL License and the original SSLeay license apply to the toolkit.
2791
- See below for the actual license texts. Actually both licenses are BSD-style
2792
- Open Source licenses. In case of any license issues related to OpenSSL
2793
- please contact openssl-core@openssl.org.
2794
-
2795
- OpenSSL License
2796
- ---------------
2797
-
2798
- /* ====================================================================
2799
- * Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved.
2800
- *
2801
- * Redistribution and use in source and binary forms, with or without
2802
- * modification, are permitted provided that the following conditions
2803
- * are met:
2804
- *
2805
- * 1. Redistributions of source code must retain the above copyright
2806
- * notice, this list of conditions and the following disclaimer.
2807
- *
2808
- * 2. Redistributions in binary form must reproduce the above copyright
2809
- * notice, this list of conditions and the following disclaimer in
2810
- * the documentation and/or other materials provided with the
2811
- * distribution.
2812
- *
2813
- * 3. All advertising materials mentioning features or use of this
2814
- * software must display the following acknowledgment:
2815
- * "This product includes software developed by the OpenSSL Project
2816
- * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
2817
- *
2818
- * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
2819
- * endorse or promote products derived from this software without
2820
- * prior written permission. For written permission, please contact
2821
- * openssl-core@openssl.org.
2822
- *
2823
- * 5. Products derived from this software may not be called "OpenSSL"
2824
- * nor may "OpenSSL" appear in their names without prior written
2825
- * permission of the OpenSSL Project.
2826
- *
2827
- * 6. Redistributions of any form whatsoever must retain the following
2828
- * acknowledgment:
2829
- * "This product includes software developed by the OpenSSL Project
2830
- * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
2831
- *
2832
- * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
2833
- * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2834
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2835
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
2836
- * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2837
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
2838
- * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
2839
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2840
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
2841
- * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2842
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
2843
- * OF THE POSSIBILITY OF SUCH DAMAGE.
2844
- * ====================================================================
2845
- *
2846
- * This product includes cryptographic software written by Eric Young
2847
- * (eay@cryptsoft.com). This product includes software written by Tim
2848
- * Hudson (tjh@cryptsoft.com).
2849
- *
2850
- */
2851
-
2852
- Original SSLeay License
2853
- -----------------------
2854
-
2855
- /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2856
- * All rights reserved.
2857
- *
2858
- * This package is an SSL implementation written
2859
- * by Eric Young (eay@cryptsoft.com).
2860
- * The implementation was written so as to conform with Netscapes SSL.
2861
- *
2862
- * This library is free for commercial and non-commercial use as long as
2863
- * the following conditions are aheared to. The following conditions
2864
- * apply to all code found in this distribution, be it the RC4, RSA,
2865
- * lhash, DES, etc., code; not just the SSL code. The SSL documentation
2866
- * included with this distribution is covered by the same copyright terms
2867
- * except that the holder is Tim Hudson (tjh@cryptsoft.com).
2868
- *
2869
- * Copyright remains Eric Young's, and as such any Copyright notices in
2870
- * the code are not to be removed.
2871
- * If this package is used in a product, Eric Young should be given attribution
2872
- * as the author of the parts of the library used.
2873
- * This can be in the form of a textual message at program startup or
2874
- * in documentation (online or textual) provided with the package.
2875
- *
2876
- * Redistribution and use in source and binary forms, with or without
2877
- * modification, are permitted provided that the following conditions
2878
- * are met:
2879
- * 1. Redistributions of source code must retain the copyright
2880
- * notice, this list of conditions and the following disclaimer.
2881
- * 2. Redistributions in binary form must reproduce the above copyright
2882
- * notice, this list of conditions and the following disclaimer in the
2883
- * documentation and/or other materials provided with the distribution.
2884
- * 3. All advertising materials mentioning features or use of this software
2885
- * must display the following acknowledgement:
2886
- * "This product includes cryptographic software written by
2887
- * Eric Young (eay@cryptsoft.com)"
2888
- * The word 'cryptographic' can be left out if the rouines from the library
2889
- * being used are not cryptographic related :-).
2890
- * 4. If you include any Windows specific code (or a derivative thereof) from
2891
- * the apps directory (application code) you must include an acknowledgement:
2892
- * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
2893
- *
2894
- * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
2895
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2896
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2897
- * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
2898
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2899
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2900
- * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2901
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2902
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2903
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2904
- * SUCH DAMAGE.
2905
- *
2906
- * The licence and distribution terms for any publically available version or
2907
- * derivative of this code cannot be changed. i.e. this code cannot simply be
2908
- * copied and put under another distribution licence
2909
- * [including the GNU Public Licence.]
2910
- */
2911
-
2912
-
2913
- ============================================================
2914
- Notices for file(s):
2915
- /lib/libexpat-host.so
2916
- /lib/libexpat.a
2917
- /lib64/libexpat-host.so
2918
- /lib64/libexpat.a
2919
- ------------------------------------------------------------
2920
- Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd
2921
- and Clark Cooper
2922
- Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Expat maintainers.
2923
-
2924
- Permission is hereby granted, free of charge, to any person obtaining
2925
- a copy of this software and associated documentation files (the
2926
- "Software"), to deal in the Software without restriction, including
2927
- without limitation the rights to use, copy, modify, merge, publish,
2928
- distribute, sublicense, and/or sell copies of the Software, and to
2929
- permit persons to whom the Software is furnished to do so, subject to
2930
- the following conditions:
2931
-
2932
- The above copyright notice and this permission notice shall be included
2933
- in all copies or substantial portions of the Software.
2934
-
2935
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2936
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2937
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2938
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2939
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2940
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2941
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2942
-
2943
- ============================================================
2944
- Notices for file(s):
2945
- /framework/emmalib.jar
2946
- ------------------------------------------------------------
2947
- Common Public License - v 1.0
2948
-
2949
- 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
2950
- ACCEPTANCE OF THIS AGREEMENT.
2951
-
2952
- 1. DEFINITIONS
2953
-
2954
- "Contribution" means:
2955
-
2956
- a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and
2957
- b) in the case of each subsequent Contributor:
2958
-
2959
- i) changes to the Program, and
2960
-
2961
- ii) additions to the Program;
2962
-
2963
- 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
2964
- 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
2965
- of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program.
2966
-
2967
- "Contributor" means any person or entity that distributes the Program.
2968
-
2969
- "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.
2970
-
2971
- "Program" means the Contributions distributed in accordance with this Agreement.
2972
-
2973
- "Recipient" means anyone who receives the Program under this Agreement, including all Contributors.
2974
-
2975
- 2. GRANT OF RIGHTS
2976
-
2977
- 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
2978
- 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.
2979
-
2980
- 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,
2981
- 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
2982
- 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
2983
- 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.
2984
-
2985
- 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
2986
- 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
2987
- 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
2988
- 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
2989
- Program, it is Recipient's responsibility to acquire that license before distributing the Program.
2990
-
2991
- 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
2992
- Agreement.
2993
-
2994
- 3. REQUIREMENTS
2995
-
2996
- A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:
2997
-
2998
- a) it complies with the terms and conditions of this Agreement; and
2999
-
3000
- b) its license agreement:
3001
-
3002
- i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement,
3003
- and implied warranties or conditions of merchantability and fitness for a particular purpose;
3004
-
3005
- ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost
3006
- profits;
3007
-
3008
- iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and
3009
-
3010
- 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
3011
- customarily used for software exchange.
3012
-
3013
- When the Program is made available in source code form:
3014
-
3015
- a) it must be made available under this Agreement; and
3016
-
3017
- b) a copy of this Agreement must be included with each copy of the Program.
3018
-
3019
- Contributors may not remove or alter any copyright notices contained within the Program.
3020
-
3021
- 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
3022
- Contribution.
3023
-
3024
- 4. COMMERCIAL DISTRIBUTION
3025
-
3026
- 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
3027
- 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
3028
- Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
3029
- every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a
3030
- 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
3031
- 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
3032
- 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
3033
- 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.
3034
-
3035
- 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
3036
- 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
3037
- 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
3038
- Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.
3039
-
3040
- 5. NO WARRANTY
3041
-
3042
- 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,
3043
- WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for
3044
- 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
3045
- 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.
3046
-
3047
- 6. DISCLAIMER OF LIABILITY
3048
-
3049
- 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
3050
- CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
3051
- 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
3052
- DAMAGES.
3053
-
3054
- 7. GENERAL
3055
-
3056
- 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
3057
- 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.
3058
-
3059
- 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
3060
- 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
3061
- 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
3062
- 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.
3063
-
3064
- 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
3065
- 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
3066
- 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
3067
- survive.
3068
-
3069
- 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
3070
- 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
3071
- 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
3072
- 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
3073
- 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
3074
- 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,
3075
- whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.
3076
-
3077
- 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
3078
- 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.
3079
-
3080
- ============================================================
3081
- Notices for file(s):
3082
- /lib/liblog.a
3083
- /lib/liblog.so
3084
- /lib64/liblog.a
3085
- /lib64/liblog.so
3086
- ------------------------------------------------------------
3087
-
3088
- Copyright (c) 2005-2014, The Android Open Source Project
3089
-
3090
- Licensed under the Apache License, Version 2.0 (the "License");
3091
- you may not use this file except in compliance with the License.
3092
-
3093
- Unless required by applicable law or agreed to in writing, software
3094
- distributed under the License is distributed on an "AS IS" BASIS,
3095
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3096
- See the License for the specific language governing permissions and
3097
- limitations under the License.
3098
-
3099
-
3100
- Apache License
3101
- Version 2.0, January 2004
3102
- http://www.apache.org/licenses/
3103
-
3104
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
3105
-
3106
- 1. Definitions.
3107
-
3108
- "License" shall mean the terms and conditions for use, reproduction,
3109
- and distribution as defined by Sections 1 through 9 of this document.
3110
-
3111
- "Licensor" shall mean the copyright owner or entity authorized by
3112
- the copyright owner that is granting the License.
3113
-
3114
- "Legal Entity" shall mean the union of the acting entity and all
3115
- other entities that control, are controlled by, or are under common
3116
- control with that entity. For the purposes of this definition,
3117
- "control" means (i) the power, direct or indirect, to cause the
3118
- direction or management of such entity, whether by contract or
3119
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
3120
- outstanding shares, or (iii) beneficial ownership of such entity.
3121
-
3122
- "You" (or "Your") shall mean an individual or Legal Entity
3123
- exercising permissions granted by this License.
3124
-
3125
- "Source" form shall mean the preferred form for making modifications,
3126
- including but not limited to software source code, documentation
3127
- source, and configuration files.
3128
-
3129
- "Object" form shall mean any form resulting from mechanical
3130
- transformation or translation of a Source form, including but
3131
- not limited to compiled object code, generated documentation,
3132
- and conversions to other media types.
3133
-
3134
- "Work" shall mean the work of authorship, whether in Source or
3135
- Object form, made available under the License, as indicated by a
3136
- copyright notice that is included in or attached to the work
3137
- (an example is provided in the Appendix below).
3138
-
3139
- "Derivative Works" shall mean any work, whether in Source or Object
3140
- form, that is based on (or derived from) the Work and for which the
3141
- editorial revisions, annotations, elaborations, or other modifications
3142
- represent, as a whole, an original work of authorship. For the purposes
3143
- of this License, Derivative Works shall not include works that remain
3144
- separable from, or merely link (or bind by name) to the interfaces of,
3145
- the Work and Derivative Works thereof.
3146
-
3147
- "Contribution" shall mean any work of authorship, including
3148
- the original version of the Work and any modifications or additions
3149
- to that Work or Derivative Works thereof, that is intentionally
3150
- submitted to Licensor for inclusion in the Work by the copyright owner
3151
- or by an individual or Legal Entity authorized to submit on behalf of
3152
- the copyright owner. For the purposes of this definition, "submitted"
3153
- means any form of electronic, verbal, or written communication sent
3154
- to the Licensor or its representatives, including but not limited to
3155
- communication on electronic mailing lists, source code control systems,
3156
- and issue tracking systems that are managed by, or on behalf of, the
3157
- Licensor for the purpose of discussing and improving the Work, but
3158
- excluding communication that is conspicuously marked or otherwise
3159
- designated in writing by the copyright owner as "Not a Contribution."
3160
-
3161
- "Contributor" shall mean Licensor and any individual or Legal Entity
3162
- on behalf of whom a Contribution has been received by Licensor and
3163
- subsequently incorporated within the Work.
3164
-
3165
- 2. Grant of Copyright License. Subject to the terms and conditions of
3166
- this License, each Contributor hereby grants to You a perpetual,
3167
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
3168
- copyright license to reproduce, prepare Derivative Works of,
3169
- publicly display, publicly perform, sublicense, and distribute the
3170
- Work and such Derivative Works in Source or Object form.
3171
-
3172
- 3. Grant of Patent License. Subject to the terms and conditions of
3173
- this License, each Contributor hereby grants to You a perpetual,
3174
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
3175
- (except as stated in this section) patent license to make, have made,
3176
- use, offer to sell, sell, import, and otherwise transfer the Work,
3177
- where such license applies only to those patent claims licensable
3178
- by such Contributor that are necessarily infringed by their
3179
- Contribution(s) alone or by combination of their Contribution(s)
3180
- with the Work to which such Contribution(s) was submitted. If You
3181
- institute patent litigation against any entity (including a
3182
- cross-claim or counterclaim in a lawsuit) alleging that the Work
3183
- or a Contribution incorporated within the Work constitutes direct
3184
- or contributory patent infringement, then any patent licenses
3185
- granted to You under this License for that Work shall terminate
3186
- as of the date such litigation is filed.
3187
-
3188
- 4. Redistribution. You may reproduce and distribute copies of the
3189
- Work or Derivative Works thereof in any medium, with or without
3190
- modifications, and in Source or Object form, provided that You
3191
- meet the following conditions:
3192
-
3193
- (a) You must give any other recipients of the Work or
3194
- Derivative Works a copy of this License; and
3195
-
3196
- (b) You must cause any modified files to carry prominent notices
3197
- stating that You changed the files; and
3198
-
3199
- (c) You must retain, in the Source form of any Derivative Works
3200
- that You distribute, all copyright, patent, trademark, and
3201
- attribution notices from the Source form of the Work,
3202
- excluding those notices that do not pertain to any part of
3203
- the Derivative Works; and
3204
-
3205
- (d) If the Work includes a "NOTICE" text file as part of its
3206
- distribution, then any Derivative Works that You distribute must
3207
- include a readable copy of the attribution notices contained
3208
- within such NOTICE file, excluding those notices that do not
3209
- pertain to any part of the Derivative Works, in at least one
3210
- of the following places: within a NOTICE text file distributed
3211
- as part of the Derivative Works; within the Source form or
3212
- documentation, if provided along with the Derivative Works; or,
3213
- within a display generated by the Derivative Works, if and
3214
- wherever such third-party notices normally appear. The contents
3215
- of the NOTICE file are for informational purposes only and
3216
- do not modify the License. You may add Your own attribution
3217
- notices within Derivative Works that You distribute, alongside
3218
- or as an addendum to the NOTICE text from the Work, provided
3219
- that such additional attribution notices cannot be construed
3220
- as modifying the License.
3221
-
3222
- You may add Your own copyright statement to Your modifications and
3223
- may provide additional or different license terms and conditions
3224
- for use, reproduction, or distribution of Your modifications, or
3225
- for any such Derivative Works as a whole, provided Your use,
3226
- reproduction, and distribution of the Work otherwise complies with
3227
- the conditions stated in this License.
3228
-
3229
- 5. Submission of Contributions. Unless You explicitly state otherwise,
3230
- any Contribution intentionally submitted for inclusion in the Work
3231
- by You to the Licensor shall be under the terms and conditions of
3232
- this License, without any additional terms or conditions.
3233
- Notwithstanding the above, nothing herein shall supersede or modify
3234
- the terms of any separate license agreement you may have executed
3235
- with Licensor regarding such Contributions.
3236
-
3237
- 6. Trademarks. This License does not grant permission to use the trade
3238
- names, trademarks, service marks, or product names of the Licensor,
3239
- except as required for reasonable and customary use in describing the
3240
- origin of the Work and reproducing the content of the NOTICE file.
3241
-
3242
- 7. Disclaimer of Warranty. Unless required by applicable law or
3243
- agreed to in writing, Licensor provides the Work (and each
3244
- Contributor provides its Contributions) on an "AS IS" BASIS,
3245
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
3246
- implied, including, without limitation, any warranties or conditions
3247
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
3248
- PARTICULAR PURPOSE. You are solely responsible for determining the
3249
- appropriateness of using or redistributing the Work and assume any
3250
- risks associated with Your exercise of permissions under this License.
3251
-
3252
- 8. Limitation of Liability. In no event and under no legal theory,
3253
- whether in tort (including negligence), contract, or otherwise,
3254
- unless required by applicable law (such as deliberate and grossly
3255
- negligent acts) or agreed to in writing, shall any Contributor be
3256
- liable to You for damages, including any direct, indirect, special,
3257
- incidental, or consequential damages of any character arising as a
3258
- result of this License or out of the use or inability to use the
3259
- Work (including but not limited to damages for loss of goodwill,
3260
- work stoppage, computer failure or malfunction, or any and all
3261
- other commercial damages or losses), even if such Contributor
3262
- has been advised of the possibility of such damages.
3263
-
3264
- 9. Accepting Warranty or Additional Liability. While redistributing
3265
- the Work or Derivative Works thereof, You may choose to offer,
3266
- and charge a fee for, acceptance of support, warranty, indemnity,
3267
- or other liability obligations and/or rights consistent with this
3268
- License. However, in accepting such obligations, You may act only
3269
- on Your own behalf and on Your sole responsibility, not on behalf
3270
- of any other Contributor, and only if You agree to indemnify,
3271
- defend, and hold each Contributor harmless for any liability
3272
- incurred by, or claims asserted against, such Contributor by reason
3273
- of your accepting any such warranty or additional liability.
3274
-
3275
- END OF TERMS AND CONDITIONS
3276
-
3277
-
3278
- ============================================================
3279
- Notices for file(s):
3280
- /bin/sefcontext_compile
3281
- /lib/libselinux.a
3282
- /lib/libselinux.so
3283
- /lib64/libselinux.a
3284
- /lib64/libselinux.so
3285
- ------------------------------------------------------------
3286
- This library (libselinux) is public domain software, i.e. not copyrighted.
3287
-
3288
- Warranty Exclusion
3289
- ------------------
3290
- You agree that this software is a
3291
- non-commercially developed program that may contain "bugs" (as that
3292
- term is used in the industry) and that it may not function as intended.
3293
- The software is licensed "as is". NSA makes no, and hereby expressly
3294
- disclaims all, warranties, express, implied, statutory, or otherwise
3295
- with respect to the software, including noninfringement and the implied
3296
- warranties of merchantability and fitness for a particular purpose.
3297
-
3298
- Limitation of Liability
3299
- -----------------------
3300
- In no event will NSA be liable for any damages, including loss of data,
3301
- lost profits, cost of cover, or other special, incidental,
3302
- consequential, direct or indirect damages arising from the software or
3303
- the use thereof, however caused and on any theory of liability. This
3304
- limitation will apply even if NSA has been advised of the possibility
3305
- of such damage. You acknowledge that this is a reasonable allocation of
3306
- risk.
3307
-
3308
- ============================================================
3309
- Notices for file(s):
3310
- /framework/org-netbeans-api-visual.jar
3311
- /framework/org-openide-util.jar
3312
- ------------------------------------------------------------
3313
- The GNU General Public License (GPL) Version 2, June 1991
3314
-
3315
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
3316
-
3317
- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
3318
-
3319
- Everyone is permitted to copy and distribute verbatim copies
3320
- of this license document, but changing it is not allowed.
3321
-
3322
- Preamble
3323
-
3324
- The licenses for most software are designed to take away
3325
- your freedom to share and change it. By contrast, the GNU
3326
- General Public License is intended to guarantee your freedom
3327
- to share and change free software--to make sure the software
3328
- is free for all its users. This General Public License
3329
- applies to most of the Free Software Foundation's software
3330
- and to any other program whose authors commit to using it.
3331
- (Some other Free Software Foundation software is covered by
3332
- the GNU Library General Public License instead.) You can
3333
- apply it to your programs, too. When we speak of free
3334
- software, we are referring to freedom, not price. Our
3335
- General Public Licenses are designed to make sure that you
3336
- have the freedom to distribute copies of free software (and
3337
- charge for this service if you wish), that you receive
3338
- source code or can get it if you want it, that you can
3339
- change the software or use pieces of it in new free
3340
- programs; and that you know you can do these things. To
3341
- protect your rights, we need to make restrictions that
3342
- forbid anyone to deny you these rights or to ask you to
3343
- surrender the rights. These restrictions translate to
3344
- certain responsibilities for you if you distribute copies of
3345
- the software, or if you modify it.
3346
-
3347
- For example, if you distribute copies of such a program,
3348
- whether gratis or for a fee, you must give the recipients
3349
- all the rights that you have. You must make sure that they,
3350
- too, receive or can get the source code. And you must show
3351
- them these terms so they know their rights.
3352
-
3353
- We protect your rights with two steps: (1) copyright the
3354
- software, and (2) offer you this license which gives you
3355
- legal permission to copy, distribute and/or modify the
3356
- software.
3357
-
3358
- Also, for each author's protection and ours, we want to make
3359
- certain that everyone understands that there is no warranty
3360
- for this free software. If the software is modified by
3361
- someone else and passed on, we want its recipients to know
3362
- that what they have is not the original, so that any
3363
- problems introduced by others will not reflect on the
3364
- original authors' reputations.
3365
-
3366
- Finally, any free program is threatened constantly by
3367
- software patents. We wish to avoid the danger that
3368
- redistributors of a free program will individually obtain
3369
- patent licenses, in effect making the program proprietary.
3370
- To prevent this, we have made it clear that any patent must
3371
- be licensed for everyone's free use or not licensed at all.
3372
-
3373
- The precise terms and conditions for copying, distribution
3374
- and modification follow.
3375
-
3376
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND
3377
- MODIFICATION
3378
-
3379
- 0. This License applies to any program or other work which
3380
- contains a notice placed by the copyright holder saying it
3381
- may be distributed under the terms of this General Public
3382
- License. The "Program", below, refers to any such program or
3383
- work, and a "work based on the Program" means either the
3384
- Program or any derivative work under copyright law: that is
3385
- to say, a work containing the Program or a portion of it,
3386
- either verbatim or with modifications and/or translated into
3387
- another language. (Hereinafter, translation is included
3388
- without limitation in the term "modification".) Each
3389
- licensee is addressed as "you".
3390
-
3391
- Activities other than copying, distribution and modification
3392
- are not covered by this License; they are outside its scope.
3393
- The act of running the Program is not restricted, and the
3394
- output from the Program is covered only if its contents
3395
- constitute a work based on the Program (independent of
3396
- having been made by running the Program). Whether that is
3397
- true depends on what the Program does.
3398
-
3399
- 1. You may copy and distribute verbatim copies of the
3400
- Program's source code as you receive it, in any medium,
3401
- provided that you conspicuously and appropriately publish on
3402
- each copy an appropriate copyright notice and disclaimer of
3403
- warranty; keep intact all the notices that refer to this
3404
- License and to the absence of any warranty; and give any
3405
- other recipients of the Program a copy of this License along
3406
- with the Program.
3407
-
3408
- You may charge a fee for the physical act of transferring a
3409
- copy, and you may at your option offer warranty protection
3410
- in exchange for a fee.
3411
-
3412
- 2. You may modify your copy or copies of the Program or any
3413
- portion of it, thus forming a work based on the Program, and
3414
- copy and distribute such modifications or work under the
3415
- terms of Section 1 above, provided that you also meet all of
3416
- these conditions:
3417
-
3418
- a) You must cause the modified files to carry prominent
3419
- notices stating that you changed the files and the date of
3420
- any change.
3421
-
3422
- b) You must cause any work that you distribute or publish,
3423
- that in whole or in part contains or is derived from the
3424
- Program or any part thereof, to be licensed as a whole at no
3425
- charge to all third parties under the terms of this License.
3426
-
3427
- c) If the modified program normally reads commands
3428
- interactively when run, you must cause it, when started
3429
- running for such interactive use in the most ordinary way,
3430
- to print or display an announcement including an appropriate
3431
- copyright notice and a notice that there is no warranty (or
3432
- else, saying that you provide a warranty) and that users may
3433
- redistribute the program under these conditions, and telling
3434
- the user how to view a copy of this License. (Exception: if
3435
- the Program itself is interactive but does not normally
3436
- print such an announcement, your work based on the Program
3437
- is not required to print an announcement.)
3438
-
3439
- These requirements apply to the modified work as a whole. If
3440
- identifiable sections of that work are not derived from the
3441
- Program, and can be reasonably considered independent and
3442
- separate works in themselves, then this License, and its
3443
- terms, do not apply to those sections when you distribute
3444
- them as separate works. But when you distribute the same
3445
- sections as part of a whole which is a work based on the
3446
- Program, the distribution of the whole must be on the terms
3447
- of this License, whose permissions for other licensees
3448
- extend to the entire whole, and thus to each and every part
3449
- regardless of who wrote it.
3450
-
3451
- Thus, it is not the intent of this section to claim rights
3452
- or contest your rights to work written entirely by you;
3453
- rather, the intent is to exercise the right to control the
3454
- distribution of derivative or collective works based on the
3455
- Program. In addition, mere aggregation of another work not
3456
- based on the Program with the Program (or with a work based
3457
- on the Program) on a volume of a storage or distribution
3458
- medium does not bring the other work under the scope of this
3459
- License.
3460
-
3461
- 3. You may copy and distribute the Program (or a work based
3462
- on it, under Section 2) in object code or executable form
3463
- under the terms of Sections 1 and 2 above provided that you
3464
- also do one of the following:
3465
-
3466
- a) Accompany it with the complete corresponding
3467
- machine-readable source code, which must be distributed
3468
- under the terms of Sections 1 and 2 above on a medium
3469
- customarily used for software interchange; or,
3470
-
3471
- b) Accompany it with a written offer, valid for at least
3472
- three years, to give any third party, for a charge no more
3473
- than your cost of physically performing source distribution,
3474
- a complete machine-readable copy of the corresponding source
3475
- code, to be distributed under the terms of Sections 1 and 2
3476
- above on a medium customarily used for software interchange;
3477
- or,
3478
-
3479
- c) Accompany it with the information you received as to the
3480
- offer to distribute corresponding source code. (This
3481
- alternative is allowed only for noncommercial distribution
3482
- and only if you received the program in object code or
3483
- executable form with such an offer, in accord with
3484
- Subsection b above.)
3485
-
3486
- The source code for a work means the preferred form of the
3487
- work for making modifications to it. For an executable work,
3488
- complete source code means all the source code for all
3489
- modules it contains, plus any associated interface
3490
- definition files, plus the scripts used to control
3491
- compilation and installation of the executable. However, as
3492
- a special exception, the source code distributed need not
3493
- include anything that is normally distributed (in either
3494
- source or binary form) with the major components (compiler,
3495
- kernel, and so on) of the operating system on which the
3496
- executable runs, unless that component itself accompanies
3497
- the executable. If distribution of executable or object code
3498
- is made by offering access to copy from a designated place,
3499
- then offering equivalent access to copy the source code from
3500
- the same place counts as distribution of the source code,
3501
- even though third parties are not compelled to copy the
3502
- source along with the object code.
3503
-
3504
- 4. You may not copy, modify, sublicense, or distribute the
3505
- Program except as expressly provided under this License. Any
3506
- attempt otherwise to copy, modify, sublicense or distribute
3507
- the Program is void, and will automatically terminate your
3508
- rights under this License. However, parties who have
3509
- received copies, or rights, from you under this License will
3510
- not have their licenses terminated so long as such parties
3511
- remain in full compliance.
3512
-
3513
- 5. You are not required to accept this License, since you
3514
- have not signed it. However, nothing else grants you
3515
- permission to modify or distribute the Program or its
3516
- derivative works. These actions are prohibited by law if you
3517
- do not accept this License. Therefore, by modifying or
3518
- distributing the Program (or any work based on the Program),
3519
- you indicate your acceptance of this License to do so, and
3520
- all its terms and conditions for copying, distributing or
3521
- modifying the Program or works based on it.
3522
-
3523
- 6. Each time you redistribute the Program (or any work based
3524
- on the Program), the recipient automatically receives a
3525
- license from the original licensor to copy, distribute or
3526
- modify the Program subject to these terms and conditions.
3527
- You may not impose any further restrictions on the
3528
- recipients' exercise of the rights granted herein. You are
3529
- not responsible for enforcing compliance by third parties to
3530
- this License.
3531
-
3532
- 7. If, as a consequence of a court judgment or allegation of
3533
- patent infringement or for any other reason (not limited to
3534
- patent issues), conditions are imposed on you (whether by
3535
- court order, agreement or otherwise) that contradict the
3536
- conditions of this License, they do not excuse you from the
3537
- conditions of this License. If you cannot distribute so as
3538
- to satisfy simultaneously your obligations under this
3539
- License and any other pertinent obligations, then as a
3540
- consequence you may not distribute the Program at all. For
3541
- example, if a patent license would not permit royalty-free
3542
- redistribution of the Program by all those who receive
3543
- copies directly or indirectly through you, then the only way
3544
- you could satisfy both it and this License would be to
3545
- refrain entirely from distribution of the Program.
3546
-
3547
- If any portion of this section is held invalid or
3548
- unenforceable under any particular circumstance, the balance
3549
- of the section is intended to apply and the section as a
3550
- whole is intended to apply in other circumstances. It is not
3551
- the purpose of this section to induce you to infringe any
3552
- patents or other property right claims or to contest
3553
- validity of any such claims; this section has the sole
3554
- purpose of protecting the integrity of the free software
3555
- distribution system, which is implemented by public license
3556
- practices. Many people have made generous contributions to
3557
- the wide range of software distributed through that system
3558
- in reliance on consistent application of that system; it is
3559
- up to the author/donor to decide if he or she is willing to
3560
- distribute software through any other system and a licensee
3561
- cannot impose that choice.
3562
-
3563
- This section is intended to make thoroughly clear what is
3564
- believed to be a consequence of the rest of this License.
3565
-
3566
- 8. If the distribution and/or use of the Program is
3567
- restricted in certain countries either by patents or by
3568
- copyrighted interfaces, the original copyright holder who
3569
- places the Program under this License may add an explicit
3570
- geographical distribution limitation excluding those
3571
- countries, so that distribution is permitted only in or
3572
- among countries not thus excluded. In such case, this
3573
- License incorporates the limitation as if written in the
3574
- body of this License.
3575
-
3576
- 9. The Free Software Foundation may publish revised and/or
3577
- new versions of the General Public License from time to
3578
- time. Such new versions will be similar in spirit to the
3579
- present version, but may differ in detail to address new
3580
- problems or concerns.
3581
-
3582
- Each version is given a distinguishing version number. If
3583
- the Program specifies a version number of this License which
3584
- applies to it and "any later version", you have the option
3585
- of following the terms and conditions either of that version
3586
- or of any later version published by the Free Software
3587
- Foundation. If the Program does not specify a version number
3588
- of this License, you may choose any version ever published
3589
- by the Free Software Foundation.
3590
-
3591
- 10. If you wish to incorporate parts of the Program into
3592
- other free programs whose distribution conditions are
3593
- different, write to the author to ask for permission. For
3594
- software which is copyrighted by the Free Software
3595
- Foundation, write to the Free Software Foundation; we
3596
- sometimes make exceptions for this. Our decision will be
3597
- guided by the two goals of preserving the free status of all
3598
- derivatives of our free software and of promoting the
3599
- sharing and reuse of software generally.
3600
-
3601
- NO WARRANTY
3602
-
3603
- 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS
3604
- NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
3605
- APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE
3606
- COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM
3607
- "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
3608
- IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
3609
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
3610
- PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE
3611
- OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE
3612
- DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
3613
- REPAIR OR CORRECTION.
3614
-
3615
- 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED
3616
- TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY
3617
- WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED
3618
- ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL,
3619
- SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF
3620
- THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT
3621
- LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR
3622
- LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE
3623
- PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH
3624
- HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
3625
- SUCH DAMAGES.
3626
-
3627
- END OF TERMS AND CONDITIONS
3628
-
3629
- How to Apply These Terms to Your New Programs
3630
-
3631
- If you develop a new program, and you want it to be of the
3632
- greatest possible use to the public, the best way to achieve
3633
- this is to make it free software which everyone can
3634
- redistribute and change under these terms.
3635
-
3636
- To do so, attach the following notices to the program. It is
3637
- safest to attach them to the start of each source file to
3638
- most effectively convey the exclusion of warranty; and each
3639
- file should have at least the "copyright" line and a pointer
3640
- to where the full notice is found.
3641
-
3642
- One line to give the program's name and a brief idea of what
3643
- it does.
3644
-
3645
- Copyright (C) <year> <name of author>
3646
- This program is free software; you can redistribute it
3647
- and/or modify it under the terms of the GNU General Public
3648
- License as published by the Free Software Foundation; either
3649
- version 2 of the License, or (at your option) any later
3650
- version. This program is distributed in the hope that it
3651
- will be useful, but WITHOUT ANY WARRANTY; without even the
3652
- implied warranty of MERCHANTABILITY or FITNESS FOR A
3653
- PARTICULAR PURPOSE. See the GNU General Public License for
3654
- more details. You should have received a copy of the GNU
3655
- General Public License along with this program; if not,
3656
- write to the Free Software Foundation, Inc., 59 Temple
3657
- Place, Suite 330, Boston, MA 02111-1307 USA
3658
-
3659
- Also add information on how to contact you by electronic and
3660
- paper mail. If the program is interactive, make it output a
3661
- short notice like this when it starts in an interactive
3662
- mode:
3663
-
3664
- Gnomovision version 69, Copyright (C) year name of author
3665
- Gnomovision comes with ABSOLUTELY NO WARRANTY; for details
3666
- type `show w'. This is free software, and you are welcome to
3667
- redistribute it under certain conditions; type `show c' for
3668
- details. The hypothetical commands `show w' and `show c'
3669
- should show the appropriate parts of the General Public
3670
- License. Of course, the commands you use may be called
3671
- something other than `show w' and `show c'; they could even
3672
- be mouse-clicks or menu items--whatever suits your program.
3673
-
3674
- You should also get your employer (if you work as a
3675
- programmer) or your school, if any, to sign a "copyright
3676
- disclaimer" for the program, if necessary. Here is a sample;
3677
- alter the names:
3678
-
3679
- Yoyodyne, Inc., hereby disclaims all copyright interest in
3680
- the program `Gnomovision' (which makes passes at compilers)
3681
- written by James Hacker.
3682
-
3683
- signature of Ty Coon, 1 April 1989
3684
- Ty Coon, President of Vice
3685
- This General Public License does not permit incorporating
3686
- your program into proprietary programs. If your program is a
3687
- subroutine library, you may consider it more useful to
3688
- permit linking proprietary applications with the library. If
3689
- this is what you want to do, use the GNU Library General
3690
- Public License instead of this License.
3691
-
3692
- "CLASSPATH" EXCEPTION TO THE GPL VERSION 2
3693
-
3694
- Certain source files distributed by Sun Microsystems, Inc.
3695
- are subject to the following clarification and special
3696
- exception to the GPL Version 2, but only where Sun has
3697
- expressly included in the particular source file's header
3698
- the words "Sun designates this particular file as subject
3699
- to the "Classpath" exception as provided by Sun in the
3700
- License file that accompanied this code."
3701
-
3702
- Linking this library statically or dynamically with other
3703
- modules is making a combined work based on this library.
3704
- Thus, the terms and conditions of the GNU General Public
3705
- License Version 2 cover the whole combination.
3706
-
3707
- As a special exception, the copyright holders of this
3708
- library give you permission to link this library with
3709
- independent modules to produce an executable, regardless of
3710
- the license terms of these independent modules, and to copy
3711
- and distribute the resulting executable under terms of your
3712
- choice, provided that you also meet, for each linked
3713
- independent module, the terms and conditions of the license
3714
- of that module. An independent module is a module which is
3715
- not derived from or based on this library. If you modify
3716
- this library, you may extend this exception to your version
3717
- of the library, but you are not obligated to do so. If you
3718
- do not wish to do so, delete this exception statement from
3719
- your version.
3720
- ============================================================
3721
- Notices for file(s):
3722
- /bin/adb
3723
- /lib64/libadb.a
3724
- ------------------------------------------------------------
3725
-
3726
- Copyright (c) 2006-2009, The Android Open Source Project
3727
- Copyright 2006, Brian Swetland <swetland@frotz.net>
3728
-
3729
- Licensed under the Apache License, Version 2.0 (the "License");
3730
- you may not use this file except in compliance with the License.
3731
-
3732
- Unless required by applicable law or agreed to in writing, software
3733
- distributed under the License is distributed on an "AS IS" BASIS,
3734
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3735
- See the License for the specific language governing permissions and
3736
- limitations under the License.
3737
-
3738
-
3739
- Apache License
3740
- Version 2.0, January 2004
3741
- http://www.apache.org/licenses/
3742
-
3743
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
3744
-
3745
- 1. Definitions.
3746
-
3747
- "License" shall mean the terms and conditions for use, reproduction,
3748
- and distribution as defined by Sections 1 through 9 of this document.
3749
-
3750
- "Licensor" shall mean the copyright owner or entity authorized by
3751
- the copyright owner that is granting the License.
3752
-
3753
- "Legal Entity" shall mean the union of the acting entity and all
3754
- other entities that control, are controlled by, or are under common
3755
- control with that entity. For the purposes of this definition,
3756
- "control" means (i) the power, direct or indirect, to cause the
3757
- direction or management of such entity, whether by contract or
3758
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
3759
- outstanding shares, or (iii) beneficial ownership of such entity.
3760
-
3761
- "You" (or "Your") shall mean an individual or Legal Entity
3762
- exercising permissions granted by this License.
3763
-
3764
- "Source" form shall mean the preferred form for making modifications,
3765
- including but not limited to software source code, documentation
3766
- source, and configuration files.
3767
-
3768
- "Object" form shall mean any form resulting from mechanical
3769
- transformation or translation of a Source form, including but
3770
- not limited to compiled object code, generated documentation,
3771
- and conversions to other media types.
3772
-
3773
- "Work" shall mean the work of authorship, whether in Source or
3774
- Object form, made available under the License, as indicated by a
3775
- copyright notice that is included in or attached to the work
3776
- (an example is provided in the Appendix below).
3777
-
3778
- "Derivative Works" shall mean any work, whether in Source or Object
3779
- form, that is based on (or derived from) the Work and for which the
3780
- editorial revisions, annotations, elaborations, or other modifications
3781
- represent, as a whole, an original work of authorship. For the purposes
3782
- of this License, Derivative Works shall not include works that remain
3783
- separable from, or merely link (or bind by name) to the interfaces of,
3784
- the Work and Derivative Works thereof.
3785
-
3786
- "Contribution" shall mean any work of authorship, including
3787
- the original version of the Work and any modifications or additions
3788
- to that Work or Derivative Works thereof, that is intentionally
3789
- submitted to Licensor for inclusion in the Work by the copyright owner
3790
- or by an individual or Legal Entity authorized to submit on behalf of
3791
- the copyright owner. For the purposes of this definition, "submitted"
3792
- means any form of electronic, verbal, or written communication sent
3793
- to the Licensor or its representatives, including but not limited to
3794
- communication on electronic mailing lists, source code control systems,
3795
- and issue tracking systems that are managed by, or on behalf of, the
3796
- Licensor for the purpose of discussing and improving the Work, but
3797
- excluding communication that is conspicuously marked or otherwise
3798
- designated in writing by the copyright owner as "Not a Contribution."
3799
-
3800
- "Contributor" shall mean Licensor and any individual or Legal Entity
3801
- on behalf of whom a Contribution has been received by Licensor and
3802
- subsequently incorporated within the Work.
3803
-
3804
- 2. Grant of Copyright License. Subject to the terms and conditions of
3805
- this License, each Contributor hereby grants to You a perpetual,
3806
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
3807
- copyright license to reproduce, prepare Derivative Works of,
3808
- publicly display, publicly perform, sublicense, and distribute the
3809
- Work and such Derivative Works in Source or Object form.
3810
-
3811
- 3. Grant of Patent License. Subject to the terms and conditions of
3812
- this License, each Contributor hereby grants to You a perpetual,
3813
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
3814
- (except as stated in this section) patent license to make, have made,
3815
- use, offer to sell, sell, import, and otherwise transfer the Work,
3816
- where such license applies only to those patent claims licensable
3817
- by such Contributor that are necessarily infringed by their
3818
- Contribution(s) alone or by combination of their Contribution(s)
3819
- with the Work to which such Contribution(s) was submitted. If You
3820
- institute patent litigation against any entity (including a
3821
- cross-claim or counterclaim in a lawsuit) alleging that the Work
3822
- or a Contribution incorporated within the Work constitutes direct
3823
- or contributory patent infringement, then any patent licenses
3824
- granted to You under this License for that Work shall terminate
3825
- as of the date such litigation is filed.
3826
-
3827
- 4. Redistribution. You may reproduce and distribute copies of the
3828
- Work or Derivative Works thereof in any medium, with or without
3829
- modifications, and in Source or Object form, provided that You
3830
- meet the following conditions:
3831
-
3832
- (a) You must give any other recipients of the Work or
3833
- Derivative Works a copy of this License; and
3834
-
3835
- (b) You must cause any modified files to carry prominent notices
3836
- stating that You changed the files; and
3837
-
3838
- (c) You must retain, in the Source form of any Derivative Works
3839
- that You distribute, all copyright, patent, trademark, and
3840
- attribution notices from the Source form of the Work,
3841
- excluding those notices that do not pertain to any part of
3842
- the Derivative Works; and
3843
-
3844
- (d) If the Work includes a "NOTICE" text file as part of its
3845
- distribution, then any Derivative Works that You distribute must
3846
- include a readable copy of the attribution notices contained
3847
- within such NOTICE file, excluding those notices that do not
3848
- pertain to any part of the Derivative Works, in at least one
3849
- of the following places: within a NOTICE text file distributed
3850
- as part of the Derivative Works; within the Source form or
3851
- documentation, if provided along with the Derivative Works; or,
3852
- within a display generated by the Derivative Works, if and
3853
- wherever such third-party notices normally appear. The contents
3854
- of the NOTICE file are for informational purposes only and
3855
- do not modify the License. You may add Your own attribution
3856
- notices within Derivative Works that You distribute, alongside
3857
- or as an addendum to the NOTICE text from the Work, provided
3858
- that such additional attribution notices cannot be construed
3859
- as modifying the License.
3860
-
3861
- You may add Your own copyright statement to Your modifications and
3862
- may provide additional or different license terms and conditions
3863
- for use, reproduction, or distribution of Your modifications, or
3864
- for any such Derivative Works as a whole, provided Your use,
3865
- reproduction, and distribution of the Work otherwise complies with
3866
- the conditions stated in this License.
3867
-
3868
- 5. Submission of Contributions. Unless You explicitly state otherwise,
3869
- any Contribution intentionally submitted for inclusion in the Work
3870
- by You to the Licensor shall be under the terms and conditions of
3871
- this License, without any additional terms or conditions.
3872
- Notwithstanding the above, nothing herein shall supersede or modify
3873
- the terms of any separate license agreement you may have executed
3874
- with Licensor regarding such Contributions.
3875
-
3876
- 6. Trademarks. This License does not grant permission to use the trade
3877
- names, trademarks, service marks, or product names of the Licensor,
3878
- except as required for reasonable and customary use in describing the
3879
- origin of the Work and reproducing the content of the NOTICE file.
3880
-
3881
- 7. Disclaimer of Warranty. Unless required by applicable law or
3882
- agreed to in writing, Licensor provides the Work (and each
3883
- Contributor provides its Contributions) on an "AS IS" BASIS,
3884
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
3885
- implied, including, without limitation, any warranties or conditions
3886
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
3887
- PARTICULAR PURPOSE. You are solely responsible for determining the
3888
- appropriateness of using or redistributing the Work and assume any
3889
- risks associated with Your exercise of permissions under this License.
3890
-
3891
- 8. Limitation of Liability. In no event and under no legal theory,
3892
- whether in tort (including negligence), contract, or otherwise,
3893
- unless required by applicable law (such as deliberate and grossly
3894
- negligent acts) or agreed to in writing, shall any Contributor be
3895
- liable to You for damages, including any direct, indirect, special,
3896
- incidental, or consequential damages of any character arising as a
3897
- result of this License or out of the use or inability to use the
3898
- Work (including but not limited to damages for loss of goodwill,
3899
- work stoppage, computer failure or malfunction, or any and all
3900
- other commercial damages or losses), even if such Contributor
3901
- has been advised of the possibility of such damages.
3902
-
3903
- 9. Accepting Warranty or Additional Liability. While redistributing
3904
- the Work or Derivative Works thereof, You may choose to offer,
3905
- and charge a fee for, acceptance of support, warranty, indemnity,
3906
- or other liability obligations and/or rights consistent with this
3907
- License. However, in accepting such obligations, You may act only
3908
- on Your own behalf and on Your sole responsibility, not on behalf
3909
- of any other Contributor, and only if You agree to indemnify,
3910
- defend, and hold each Contributor harmless for any liability
3911
- incurred by, or claims asserted against, such Contributor by reason
3912
- of your accepting any such warranty or additional liability.
3913
-
3914
- END OF TERMS AND CONDITIONS
3915
-
3916
-
3917
- ============================================================
3918
- Notices for file(s):
3919
- /bin/llvm-rs-cc
3920
- /lib64/libslang.a
3921
- ------------------------------------------------------------
3922
- =========================
3923
- NOTICE file for slang.git
3924
- =========================
3925
-
3926
- Copyright (c) 2005-2011, The Android Open Source Project
3927
-
3928
- Licensed under the Apache License, Version 2.0 (the "License");
3929
- you may not use this file except in compliance with the License.
3930
-
3931
- Unless required by applicable law or agreed to in writing, software
3932
- distributed under the License is distributed on an "AS IS" BASIS,
3933
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3934
- See the License for the specific language governing permissions and
3935
- limitations under the License.
3936
-
3937
-
3938
- Apache License
3939
- Version 2.0, January 2004
3940
- http://www.apache.org/licenses/
3941
-
3942
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
3943
-
3944
- 1. Definitions.
3945
-
3946
- "License" shall mean the terms and conditions for use, reproduction,
3947
- and distribution as defined by Sections 1 through 9 of this document.
3948
-
3949
- "Licensor" shall mean the copyright owner or entity authorized by
3950
- the copyright owner that is granting the License.
3951
-
3952
- "Legal Entity" shall mean the union of the acting entity and all
3953
- other entities that control, are controlled by, or are under common
3954
- control with that entity. For the purposes of this definition,
3955
- "control" means (i) the power, direct or indirect, to cause the
3956
- direction or management of such entity, whether by contract or
3957
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
3958
- outstanding shares, or (iii) beneficial ownership of such entity.
3959
-
3960
- "You" (or "Your") shall mean an individual or Legal Entity
3961
- exercising permissions granted by this License.
3962
-
3963
- "Source" form shall mean the preferred form for making modifications,
3964
- including but not limited to software source code, documentation
3965
- source, and configuration files.
3966
-
3967
- "Object" form shall mean any form resulting from mechanical
3968
- transformation or translation of a Source form, including but
3969
- not limited to compiled object code, generated documentation,
3970
- and conversions to other media types.
3971
-
3972
- "Work" shall mean the work of authorship, whether in Source or
3973
- Object form, made available under the License, as indicated by a
3974
- copyright notice that is included in or attached to the work
3975
- (an example is provided in the Appendix below).
3976
-
3977
- "Derivative Works" shall mean any work, whether in Source or Object
3978
- form, that is based on (or derived from) the Work and for which the
3979
- editorial revisions, annotations, elaborations, or other modifications
3980
- represent, as a whole, an original work of authorship. For the purposes
3981
- of this License, Derivative Works shall not include works that remain
3982
- separable from, or merely link (or bind by name) to the interfaces of,
3983
- the Work and Derivative Works thereof.
3984
-
3985
- "Contribution" shall mean any work of authorship, including
3986
- the original version of the Work and any modifications or additions
3987
- to that Work or Derivative Works thereof, that is intentionally
3988
- submitted to Licensor for inclusion in the Work by the copyright owner
3989
- or by an individual or Legal Entity authorized to submit on behalf of
3990
- the copyright owner. For the purposes of this definition, "submitted"
3991
- means any form of electronic, verbal, or written communication sent
3992
- to the Licensor or its representatives, including but not limited to
3993
- communication on electronic mailing lists, source code control systems,
3994
- and issue tracking systems that are managed by, or on behalf of, the
3995
- Licensor for the purpose of discussing and improving the Work, but
3996
- excluding communication that is conspicuously marked or otherwise
3997
- designated in writing by the copyright owner as "Not a Contribution."
3998
-
3999
- "Contributor" shall mean Licensor and any individual or Legal Entity
4000
- on behalf of whom a Contribution has been received by Licensor and
4001
- subsequently incorporated within the Work.
4002
-
4003
- 2. Grant of Copyright License. Subject to the terms and conditions of
4004
- this License, each Contributor hereby grants to You a perpetual,
4005
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
4006
- copyright license to reproduce, prepare Derivative Works of,
4007
- publicly display, publicly perform, sublicense, and distribute the
4008
- Work and such Derivative Works in Source or Object form.
4009
-
4010
- 3. Grant of Patent License. Subject to the terms and conditions of
4011
- this License, each Contributor hereby grants to You a perpetual,
4012
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
4013
- (except as stated in this section) patent license to make, have made,
4014
- use, offer to sell, sell, import, and otherwise transfer the Work,
4015
- where such license applies only to those patent claims licensable
4016
- by such Contributor that are necessarily infringed by their
4017
- Contribution(s) alone or by combination of their Contribution(s)
4018
- with the Work to which such Contribution(s) was submitted. If You
4019
- institute patent litigation against any entity (including a
4020
- cross-claim or counterclaim in a lawsuit) alleging that the Work
4021
- or a Contribution incorporated within the Work constitutes direct
4022
- or contributory patent infringement, then any patent licenses
4023
- granted to You under this License for that Work shall terminate
4024
- as of the date such litigation is filed.
4025
-
4026
- 4. Redistribution. You may reproduce and distribute copies of the
4027
- Work or Derivative Works thereof in any medium, with or without
4028
- modifications, and in Source or Object form, provided that You
4029
- meet the following conditions:
4030
-
4031
- (a) You must give any other recipients of the Work or
4032
- Derivative Works a copy of this License; and
4033
-
4034
- (b) You must cause any modified files to carry prominent notices
4035
- stating that You changed the files; and
4036
-
4037
- (c) You must retain, in the Source form of any Derivative Works
4038
- that You distribute, all copyright, patent, trademark, and
4039
- attribution notices from the Source form of the Work,
4040
- excluding those notices that do not pertain to any part of
4041
- the Derivative Works; and
4042
-
4043
- (d) If the Work includes a "NOTICE" text file as part of its
4044
- distribution, then any Derivative Works that You distribute must
4045
- include a readable copy of the attribution notices contained
4046
- within such NOTICE file, excluding those notices that do not
4047
- pertain to any part of the Derivative Works, in at least one
4048
- of the following places: within a NOTICE text file distributed
4049
- as part of the Derivative Works; within the Source form or
4050
- documentation, if provided along with the Derivative Works; or,
4051
- within a display generated by the Derivative Works, if and
4052
- wherever such third-party notices normally appear. The contents
4053
- of the NOTICE file are for informational purposes only and
4054
- do not modify the License. You may add Your own attribution
4055
- notices within Derivative Works that You distribute, alongside
4056
- or as an addendum to the NOTICE text from the Work, provided
4057
- that such additional attribution notices cannot be construed
4058
- as modifying the License.
4059
-
4060
- You may add Your own copyright statement to Your modifications and
4061
- may provide additional or different license terms and conditions
4062
- for use, reproduction, or distribution of Your modifications, or
4063
- for any such Derivative Works as a whole, provided Your use,
4064
- reproduction, and distribution of the Work otherwise complies with
4065
- the conditions stated in this License.
4066
-
4067
- 5. Submission of Contributions. Unless You explicitly state otherwise,
4068
- any Contribution intentionally submitted for inclusion in the Work
4069
- by You to the Licensor shall be under the terms and conditions of
4070
- this License, without any additional terms or conditions.
4071
- Notwithstanding the above, nothing herein shall supersede or modify
4072
- the terms of any separate license agreement you may have executed
4073
- with Licensor regarding such Contributions.
4074
-
4075
- 6. Trademarks. This License does not grant permission to use the trade
4076
- names, trademarks, service marks, or product names of the Licensor,
4077
- except as required for reasonable and customary use in describing the
4078
- origin of the Work and reproducing the content of the NOTICE file.
4079
-
4080
- 7. Disclaimer of Warranty. Unless required by applicable law or
4081
- agreed to in writing, Licensor provides the Work (and each
4082
- Contributor provides its Contributions) on an "AS IS" BASIS,
4083
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
4084
- implied, including, without limitation, any warranties or conditions
4085
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
4086
- PARTICULAR PURPOSE. You are solely responsible for determining the
4087
- appropriateness of using or redistributing the Work and assume any
4088
- risks associated with Your exercise of permissions under this License.
4089
-
4090
- 8. Limitation of Liability. In no event and under no legal theory,
4091
- whether in tort (including negligence), contract, or otherwise,
4092
- unless required by applicable law (such as deliberate and grossly
4093
- negligent acts) or agreed to in writing, shall any Contributor be
4094
- liable to You for damages, including any direct, indirect, special,
4095
- incidental, or consequential damages of any character arising as a
4096
- result of this License or out of the use or inability to use the
4097
- Work (including but not limited to damages for loss of goodwill,
4098
- work stoppage, computer failure or malfunction, or any and all
4099
- other commercial damages or losses), even if such Contributor
4100
- has been advised of the possibility of such damages.
4101
-
4102
- 9. Accepting Warranty or Additional Liability. While redistributing
4103
- the Work or Derivative Works thereof, You may choose to offer,
4104
- and charge a fee for, acceptance of support, warranty, indemnity,
4105
- or other liability obligations and/or rights consistent with this
4106
- License. However, in accepting such obligations, You may act only
4107
- on Your own behalf and on Your sole responsibility, not on behalf
4108
- of any other Contributor, and only if You agree to indemnify,
4109
- defend, and hold each Contributor harmless for any liability
4110
- incurred by, or claims asserted against, such Contributor by reason
4111
- of your accepting any such warranty or additional liability.
4112
-
4113
- END OF TERMS AND CONDITIONS
4114
-
4115
-
4116
-
4117
- ===========================================
4118
- NOTICE file for external/clang (clang.git).
4119
- Note: libclang*.a are statically linked.
4120
- ===========================================
4121
-
4122
- ==============================================================================
4123
- LLVM Release License
4124
- ==============================================================================
4125
- University of Illinois/NCSA
4126
- Open Source License
4127
-
4128
- Copyright (c) 2007-2011 University of Illinois at Urbana-Champaign.
4129
- All rights reserved.
4130
-
4131
- Developed by:
4132
-
4133
- LLVM Team
4134
-
4135
- University of Illinois at Urbana-Champaign
4136
-
4137
- http://llvm.org
4138
-
4139
- Permission is hereby granted, free of charge, to any person obtaining a copy of
4140
- this software and associated documentation files (the "Software"), to deal with
4141
- the Software without restriction, including without limitation the rights to
4142
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
4143
- of the Software, and to permit persons to whom the Software is furnished to do
4144
- so, subject to the following conditions:
4145
-
4146
- * Redistributions of source code must retain the above copyright notice,
4147
- this list of conditions and the following disclaimers.
4148
-
4149
- * Redistributions in binary form must reproduce the above copyright notice,
4150
- this list of conditions and the following disclaimers in the
4151
- documentation and/or other materials provided with the distribution.
4152
-
4153
- * Neither the names of the LLVM Team, University of Illinois at
4154
- Urbana-Champaign, nor the names of its contributors may be used to
4155
- endorse or promote products derived from this Software without specific
4156
- prior written permission.
4157
-
4158
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
4159
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
4160
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
4161
- CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
4162
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
4163
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
4164
- SOFTWARE.
4165
-
4166
- ==============================================================================
4167
- The LLVM software contains code written by third parties. Such software will
4168
- have its own individual LICENSE.TXT file in the directory in which it appears.
4169
- This file will describe the copyrights, license, and restrictions which apply
4170
- to that code.
4171
-
4172
- The disclaimer of warranty in the University of Illinois Open Source License
4173
- applies to all code in the LLVM Distribution, and nothing in any of the
4174
- other licenses gives permission to use the names of the LLVM Team or the
4175
- University of Illinois to endorse or promote products derived from this
4176
- Software.
4177
-
4178
- The following pieces of software have additional or alternate copyrights,
4179
- licenses, and/or restrictions:
4180
-
4181
- Program Directory
4182
- ------- ---------
4183
- <none yet>
4184
-
4185
-
4186
-
4187
- =========================================
4188
- NOTICE file for external/llvm (llvm.git).
4189
- Note: libLLVM*.a are statically linked.
4190
- =========================================
4191
-
4192
- ==============================================================================
4193
- LLVM Release License
4194
- ==============================================================================
4195
- University of Illinois/NCSA
4196
- Open Source License
4197
-
4198
- Copyright (c) 2003-2011 University of Illinois at Urbana-Champaign.
4199
- All rights reserved.
4200
-
4201
- Developed by:
4202
-
4203
- LLVM Team
4204
-
4205
- University of Illinois at Urbana-Champaign
4206
-
4207
- http://llvm.org
4208
-
4209
- Permission is hereby granted, free of charge, to any person obtaining a copy of
4210
- this software and associated documentation files (the "Software"), to deal with
4211
- the Software without restriction, including without limitation the rights to
4212
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
4213
- of the Software, and to permit persons to whom the Software is furnished to do
4214
- so, subject to the following conditions:
4215
-
4216
- * Redistributions of source code must retain the above copyright notice,
4217
- this list of conditions and the following disclaimers.
4218
-
4219
- * Redistributions in binary form must reproduce the above copyright notice,
4220
- this list of conditions and the following disclaimers in the
4221
- documentation and/or other materials provided with the distribution.
4222
-
4223
- * Neither the names of the LLVM Team, University of Illinois at
4224
- Urbana-Champaign, nor the names of its contributors may be used to
4225
- endorse or promote products derived from this Software without specific
4226
- prior written permission.
4227
-
4228
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
4229
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
4230
- FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
4231
- CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
4232
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
4233
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
4234
- SOFTWARE.
4235
-
4236
- ==============================================================================
4237
- Copyrights and Licenses for Third Party Software Distributed with LLVM:
4238
- ==============================================================================
4239
- The LLVM software contains code written by third parties. Such software will
4240
- have its own individual LICENSE.TXT file in the directory in which it appears.
4241
- This file will describe the copyrights, license, and restrictions which apply
4242
- to that code.
4243
-
4244
- The disclaimer of warranty in the University of Illinois Open Source License
4245
- applies to all code in the LLVM Distribution, and nothing in any of the
4246
- other licenses gives permission to use the names of the LLVM Team or the
4247
- University of Illinois to endorse or promote products derived from this
4248
- Software.
4249
-
4250
- The following pieces of software have additional or alternate copyrights,
4251
- licenses, and/or restrictions:
4252
-
4253
- Program Directory
4254
- ------- ---------
4255
- Autoconf llvm/autoconf
4256
- llvm/projects/ModuleMaker/autoconf
4257
- llvm/projects/sample/autoconf
4258
- CellSPU backend llvm/lib/Target/CellSPU/README.txt
4259
- Google Test llvm/utils/unittest/googletest
4260
- OpenBSD regex llvm/lib/Support/{reg*, COPYRIGHT.regex}
4261
-
4262
- ============================================================
4263
- Notices for file(s):
4264
- /bin/minigzip
4265
- /lib/libz-host.so
4266
- /lib/libz.a
4267
- /lib64/libz-host.so
4268
- /lib64/libz.a
4269
- ------------------------------------------------------------
4270
- (C) 1995-2013 Jean-loup Gailly and Mark Adler
4271
-
4272
- This software is provided 'as-is', without any express or implied
4273
- warranty. In no event will the authors be held liable for any damages
4274
- arising from the use of this software.
4275
-
4276
- Permission is granted to anyone to use this software for any purpose,
4277
- including commercial applications, and to alter it and redistribute it
4278
- freely, subject to the following restrictions:
4279
-
4280
- 1. The origin of this software must not be misrepresented; you must not
4281
- claim that you wrote the original software. If you use this software
4282
- in a product, an acknowledgment in the product documentation would be
4283
- appreciated but is not required.
4284
- 2. Altered source versions must be plainly marked as such, and must not be
4285
- misrepresented as being the original software.
4286
- 3. This notice may not be removed or altered from any source distribution.
4287
-
4288
- Jean-loup Gailly Mark Adler
4289
- jloup@gzip.org madler@alumni.caltech.edu
4290
-
4291
- ============================================================
4292
- Notices for file(s):
4293
- /bin/v8_mksnapshot.arm
4294
- ------------------------------------------------------------
4295
- Copyright (c) 1994-2006 Sun Microsystems Inc.
4296
- All Rights Reserved.
4297
-
4298
- Redistribution and use in source and binary forms, with or without
4299
- modification, are permitted provided that the following conditions are
4300
- met:
4301
-
4302
- - Redistributions of source code must retain the above copyright notice,
4303
- this list of conditions and the following disclaimer.
4304
-
4305
- - Redistribution in binary form must reproduce the above copyright
4306
- notice, this list of conditions and the following disclaimer in the
4307
- documentation and/or other materials provided with the distribution.
4308
-
4309
- - Neither the name of Sun Microsystems or the names of contributors may
4310
- be used to endorse or promote products derived from this software without
4311
- specific prior written permission.
4312
-
4313
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
4314
- IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
4315
- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
4316
- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
4317
- CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
4318
- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
4319
- PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
4320
- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
4321
- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
4322
- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
4323
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4324
-
4325
- The original source code covered by the above license above has been
4326
- modified significantly by Google Inc.
4327
- Copyright 2006-2008 the V8 project authors. All rights reserved.
4328
-
4329
- ============================================================
4330
- Notices for file(s):
4331
- /framework/antlr-runtime.jar
4332
- ------------------------------------------------------------
4333
- [The "BSD license"]
4334
- Copyright (c) 201 Terence Parr
4335
- All rights reserved.
4336
-
4337
- Redistribution and use in source and binary forms, with or without
4338
- modification, are permitted provided that the following conditions
4339
- are met:
4340
-
4341
- 1. Redistributions of source code must retain the above copyright
4342
- notice, this list of conditions and the following disclaimer.
4343
- 2. Redistributions in binary form must reproduce the above copyright
4344
- notice, this list of conditions and the following disclaimer in the
4345
- documentation and/or other materials provided with the distribution.
4346
- 3. The name of the author may not be used to endorse or promote products
4347
- derived from this software without specific prior written permission.
4348
-
4349
- THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
4350
- IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
4351
- OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
4352
- IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
4353
- INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
4354
- NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
4355
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
4356
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
4357
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
4358
- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4359
-
4360
- ============================================================
4361
- Notices for file(s):
4362
- /framework/junit.jar
4363
- ------------------------------------------------------------
4364
- Common Public License - v 1.0
4365
-
4366
-
4367
- 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.
4368
-
4369
-
4370
- 1. DEFINITIONS
4371
-
4372
- "Contribution" means:
4373
-
4374
- a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and
4375
- b) in the case of each subsequent Contributor:
4376
- i) changes to the Program, and
4377
- ii) additions to the Program;
4378
- 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.
4379
-
4380
- "Contributor" means any person or entity that distributes the Program.
4381
-
4382
-
4383
- "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.
4384
-
4385
-
4386
- "Program" means the Contributions distributed in accordance with this Agreement.
4387
-
4388
-
4389
- "Recipient" means anyone who receives the Program under this Agreement, including all Contributors.
4390
-
4391
-
4392
- 2. GRANT OF RIGHTS
4393
-
4394
- 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.
4395
- 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.
4396
- 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.
4397
- 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.
4398
- 3. REQUIREMENTS
4399
-
4400
- A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:
4401
-
4402
- a) it complies with the terms and conditions of this Agreement; and
4403
- b) its license agreement:
4404
- 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;
4405
- ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;
4406
- iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and
4407
- 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.
4408
- When the Program is made available in source code form:
4409
-
4410
- a) it must be made available under this Agreement; and
4411
- b) a copy of this Agreement must be included with each copy of the Program.
4412
-
4413
- Contributors may not remove or alter any copyright notices contained within the Program.
4414
-
4415
-
4416
- 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.
4417
-
4418
-
4419
- 4. COMMERCIAL DISTRIBUTION
4420
-
4421
- 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.
4422
-
4423
-
4424
- 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.
4425
-
4426
-
4427
- 5. NO WARRANTY
4428
-
4429
- 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.
4430
-
4431
-
4432
- 6. DISCLAIMER OF LIABILITY
4433
-
4434
- 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.
4435
-
4436
-
4437
- 7. GENERAL
4438
-
4439
- 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.
4440
-
4441
-
4442
- 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.
4443
-
4444
-
4445
- 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.
4446
-
4447
-
4448
- 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.
4449
-
4450
-
4451
- 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.