From 8ee39e07aa64d6abf0896c2455bc3741d6c124bb Mon Sep 17 00:00:00 2001 From: "K. Shankari" Date: Wed, 24 Jun 2020 09:22:34 -0700 Subject: [PATCH 1/2] Fix the licensing + Make it (c) UC Regents + Extend the copyright + make the formatting consistent with standard Github (checked against `em-dataload`) + rename to be consistent with standard GitHub --- LICENSE | 29 +++++++++++++++++++++++++++++ License.txt | 12 ------------ 2 files changed, 29 insertions(+), 12 deletions(-) create mode 100644 LICENSE delete mode 100644 License.txt diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..839d7f6d --- /dev/null +++ b/LICENSE @@ -0,0 +1,29 @@ +BSD 3-Clause License + +Copyright (c) 2014-2020, UC Regents +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 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 +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/License.txt b/License.txt deleted file mode 100644 index 8a448a70..00000000 --- a/License.txt +++ /dev/null @@ -1,12 +0,0 @@ -Copyright (c) 2014, K. Shankari, Mogeng Yin, Shanthi Shanmugam, Gautham Kesineni, Ashwini Iyer, Ryan Lei -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 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 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. From 72964fbb05b3daa4444dd3313560bb98c17e71ce Mon Sep 17 00:00:00 2001 From: "K. Shankari" Date: Wed, 24 Jun 2020 09:57:30 -0700 Subject: [PATCH 2/2] Add the dependencies --- OpenSourceLicenses.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 OpenSourceLicenses.md diff --git a/OpenSourceLicenses.md b/OpenSourceLicenses.md new file mode 100644 index 00000000..18b86e64 --- /dev/null +++ b/OpenSourceLicenses.md @@ -0,0 +1,18 @@ +This file lists the library dependencies for this plugin and their licenses. + +1. These libraries are downloaded automatically and linked to the final binary. +I am not sure how android or iOS link their binaries. However, the xcode link +command uses `-llibname` extensively, so I assume static linkage in general. + +1. So our primary check here is for libraries which do not have a license, or +which are GPL licensed. + +# Native libraries installed via maven/cocoapods + +| Module | License | +|--------|---------| +| com.google.code.gson:gson | Apache 2.0 | +| com.google.android.gms:play-services-auth | Proprietary (Google) | +| Bolts/Tasks pod | BSD 3-clause | +| CoreLocation framework | Proprietary (Apple) | +| Accounts framework | Proprietary (Apple) |